diff --git a/docs/additional-documentation/readme.html b/docs/additional-documentation/readme.html index eeb49a4bd..01303c9ba 100644 --- a/docs/additional-documentation/readme.html +++ b/docs/additional-documentation/readme.html @@ -53,19 +53,19 @@

ec.components

Packages

Main Packages

The dependencies stack up from core to data (data > ui > core). You could also omit data, using just the ui components.

Optional Packages

Documentation

The main documentation is located at entrecode.github.io/ec.components. You can find a getting started guide there.

diff --git a/docs/classes/ResourceForm.html b/docs/classes/ResourceForm.html index 32f7a1b2e..6d56dfc73 100644 --- a/docs/classes/ResourceForm.html +++ b/docs/classes/ResourceForm.html @@ -112,6 +112,14 @@
Properties
Public fields +
  • + Public + body +
  • +
  • + Public + config +
  • @@ -142,6 +150,68 @@
    Methods
  • isEditing
  • +
  • + action +
  • +
  • + classes +
  • +
  • + clear +
  • +
  • + deleteImmutableProperties +
  • +
  • + display +
  • +
  • + Protected + generateConfig +
  • +
  • + getBody +
  • +
  • + getConfig +
  • +
  • + getProperties +
  • +
  • + group +
  • +
  • + hasBody +
  • +
  • + id +
  • +
  • + isImmutableProperty +
  • +
  • + pickWriteOnly +
  • +
  • + resolve +
  • +
  • + save +
  • +
  • + serialize +
  • +
  • + sort +
  • +
  • + Private + transform +
  • +
  • + useConfig +
  • @@ -457,6 +527,100 @@

    + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + Public + body + + + +
    + body: T + +
    + Type : T + +
    +
    Inherited from Form +
    +
    +
    Defined in Form:6
    +
    +

    The value body of the item. This can be either a primitive value or an Object.

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + Public + config + + + +
    + config: ItemConfig<T> + +
    + Type : ItemConfig<T> + +
    +
    Inherited from Form +
    +
    +
    Defined in Form:8
    +
    +

    The config of the item.

    +
    +
    @@ -870,6 +1034,1414 @@

    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + action + + + +
    +action(property, e) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:217
    +
    +

    Action method that is meant to be called on a button click or similar. +Calls the config#action method with the item and the property name

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + +
    NameOptional
    property + No +
    e + No +
    +
    +
    +
    +
    + Returns : void + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + classes + + + +
    +classes(property?: string) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:130
    +
    +

    If no property given: Returns the output of the config.classes method or ''. +If property given: Returns the output of the config.fields[property].classes method or ''

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    property + string + + Yes +
    +
    +
    +
    +
    + Returns : string + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + clear + + + +
    +clear() +
    +
    Inherited from Form +
    +
    +
    Defined in Form:47
    +
    +

    deletes the item body

    +
    + +
    + Returns : void + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + deleteImmutableProperties + + + +
    +deleteImmutableProperties(value: Object) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:173
    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptionalDefault value
    value + Object + + No + + this.body +
    +
    +
    +
    +
    + Returns : void + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + display + + + +
    +display(property?: string) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:142
    +
    +

    Returns the output of the config.display transformation function with the given property value. +If no display function is set, it will just return the property value.

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    property + string + + Yes +
    +
    +
    +
    +
    + Returns : any + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + Protected + generateConfig + + + +
    + + generateConfig() +
    +
    Inherited from Form +
    +
    +
    Defined in Form:17
    +
    +

    Generates a config from the body by setting view to the properties type.

    +
    + +
    + Returns : ItemConfig<T> + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + getBody + + + +
    +getBody() +
    +
    Inherited from Form +
    +
    +
    Defined in Form:37
    +
    +

    Returns the item's body

    +
    + +
    + Returns : T + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + getConfig + + + +
    +getConfig() +
    +
    Inherited from Form +
    +
    +
    Defined in Form:57
    +
    +

    Returns the item's config

    +
    + +
    + Returns : any + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + getProperties + + + +
    +getProperties() +
    +
    Inherited from Form +
    +
    +
    Defined in Form:62
    +
    +

    Returns an Array of properties possessed by the body.

    +
    + +
    + Returns : Array<string> + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + group + + + +
    +group(property: string) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:124
    +
    +

    Returns the output of the config.group transformation function with the given property value. +If no group function is set, it will just return the property value.

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    property + string + + No +
    +
    +
    +
    +
    + Returns : any + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + hasBody + + + +
    +hasBody() +
    +
    Inherited from Form +
    +
    +
    Defined in Form:42
    +
    +

    Returns true if the body is defined and not null

    +
    + +
    + Returns : boolean + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + id + + + +
    +id() +
    +
    Inherited from Form +
    +
    +
    Defined in Form:73
    +
    +

    Returns the value of the the Item's identifier property.

    +
    + +
    + Returns : any + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + isImmutableProperty + + + +
    +isImmutableProperty(property: string) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:166
    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    property + string + + No +
    +
    +
    +
    +
    + Returns : boolean + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + pickWriteOnly + + + +
    +pickWriteOnly(value) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:155
    +
    +

    Returns value with all readOnly properties removed

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + +
    NameOptionalDefault value
    value + No + + this.body +
    +
    +
    +
    +
    + Returns : any + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + resolve + + + +
    +resolve(property?: string) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:82
    +
    +

    Returns either the whole body (if no property is given) or the value of the given property. +This method will traverse the body via the config.resolve function (if given).

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    property + string + + Yes +
    +
    +
    +
    +
    + Returns : any + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + save + + + +
    +save(value: T) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:204
    +
    +

    Saves the given value. Run serializers before assigning the new value.

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptionalDefault value
    value + T + + No + + this.body +
    +
    +
    +
    +
    + Returns : Promise<Item<T>> + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + serialize + + + +
    +serialize(value, put: boolean) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:182
    +
    +

    Transforms the given field's value for serialization when saving.

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptionalDefault value
    value + + No + +
    put + boolean + + No + + false +
    +
    +
    +
    +
    + Returns : any + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + sort + + + +
    +sort(property: string) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:150
    +
    +

    Transforms the given field's value for sorting

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    property + string + + No +
    +
    +
    +
    +
    + Returns : any + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + Private + transform + + + +
    + + transform(action: string, property: string, value: any, defaultValue: any) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:112
    +
    +

    The main method for transformation functions like resolve, display and group. +If you dont set the third parameter, the current item value will be used. +The third parameter can be used to transform a value that is not yet possesed (e.g. to +serialize)

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptionalDefault value
    action + string + + No + +
    property + string + + No + +
    value + any + + No + + this.resolve(property) +
    defaultValue + any + + No + + this.resolve(property) +
    +
    +
    +
    +
    + Returns : any + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + useConfig + + + +
    +useConfig(config: ItemConfig) +
    +
    Inherited from Form +
    +
    +
    Defined in Form:52
    +
    +

    Assigns the given config to the existing via Object.assign

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    config + ItemConfig<T> + + No +
    +
    +
    +
    +
    + Returns : void + +
    +
    + +
    +

    diff --git a/docs/classes/ResourceList.html b/docs/classes/ResourceList.html index 7e6a92466..ee0789b9e 100644 --- a/docs/classes/ResourceList.html +++ b/docs/classes/ResourceList.html @@ -154,6 +154,18 @@

    Properties
    Public pagination +
  • + Public + items +
  • +
  • + Protected + update +
  • +
  • + Public + update$ +
  • @@ -267,6 +279,39 @@
    Methods
    Public trackItem +
  • + add +
  • +
  • + addAll +
  • +
  • + has +
  • +
  • + hasAll +
  • +
  • + index +
  • +
  • + isEmpty +
  • +
  • + move +
  • +
  • + remove +
  • +
  • + removeAll +
  • +
  • + replaceWith +
  • +
  • + toggle +
  • @@ -1046,6 +1091,157 @@

    + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + Public + items + + + +
    + items: Array<T> + +
    + Type : Array<T> + +
    +
    Inherited from List +
    +
    +
    Defined in List:10
    +
    +

    The items must all have the same type T.

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + Protected + update + + + +
    + update: Subject<Collection<T>> + +
    + Type : Subject<Collection<T>> + +
    + Default value : new Subject() +
    +
    Inherited from List +
    +
    +
    Defined in List:12
    +
    +

    Subject that is nexted when the items update

    +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + Public + update$ + + + +
    + update$: Observable<Collection<T>> + +
    + Type : Observable<Collection<T>> + +
    + Default value : this.update.asObservable() +
    +
    Inherited from List +
    +
    +
    Defined in List:14
    +
    +

    Subject that is nexted when the items change

    +
    +
    @@ -3230,6 +3426,1028 @@

    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + add + + + +
    +add(item: T, unique?: boolean, event: boolean) +
    +
    Inherited from List +
    +
    +
    Defined in List:71
    +
    +

    Adds the given item to the Collection. If the unique flag is set, the item will only be added +if it is not contained.

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptionalDefault value
    item + T + + No + +
    unique + boolean + + Yes + +
    event + boolean + + No + + true +
    +
    +
    + Example : +
    +
    <div><pre class="line-numbers"><code class="language-typescript">   * numbers.add(4);
    +   *</code></pre></div>
    +
    +
    +
    + Returns : boolean + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + addAll + + + +
    +addAll(items: Array, unique: boolean, event: boolean) +
    +
    Inherited from List +
    +
    +
    Defined in List:89
    +
    +

    Adds the given items to the Collection. If the unique flag is set, only items that are not +contained will be added.

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptionalDefault value
    items + Array<T> + + No + + [] +
    unique + boolean + + No + + false +
    event + boolean + + No + + true +
    +
    +
    + Example : +
    +
    <div><pre class="line-numbers"><code class="language-typescript">   * numbers.addAll([5, 6, 7]);
    +   *</code></pre></div>
    +
    +
    +
    + Returns : void + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + has + + + +
    +has(item: T) +
    +
    Inherited from List +
    +
    +
    Defined in List:42
    +
    +

    Checks if the Collection contains the given item.

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    item + T + + No +
    +
    +
    + Example : +
    +
    <div><pre class="line-numbers"><code class="language-typescript">   * numbers.has(2); //true
    +   *</code></pre></div>
    +
    +
    +
    + Returns : boolean + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + hasAll + + + +
    +hasAll(items: Array) +
    +
    Inherited from List +
    +
    +
    Defined in List:53
    +
    +

    Checks if the Collection contains all given items.

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptionalDefault value
    items + Array<T> + + No + + [] +
    +
    +
    + Example : +
    +
    <div><pre class="line-numbers"><code class="language-typescript">   * numbers.has([1,2]); //true
    +   *</code></pre></div>
    +
    +
    +
    + Returns : boolean + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + index + + + +
    +index(item: T) +
    +
    Inherited from List +
    +
    +
    Defined in List:31
    +
    +

    Returns the index of the given item

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + +
    NameTypeOptional
    item + T + + No +
    +
    +
    +
    +
    + Returns : number + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + isEmpty + + + +
    +isEmpty() +
    +
    Inherited from List +
    +
    +
    Defined in List:160
    +
    +

    Returns true if the collection is empty

    +
    + +
    + Returns : boolean + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + move + + + +
    +move(item: T, index: number, event: boolean) +
    +
    Inherited from List +
    +
    +
    Defined in List:165
    +
    +

    Moves the given item to the given array index.

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptionalDefault value
    item + T + + No + +
    index + number + + No + +
    event + boolean + + No + + true +
    +
    +
    +
    +
    + Returns : void + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + remove + + + +
    +remove(item: T, event: boolean) +
    +
    Inherited from List +
    +
    +
    Defined in List:106
    +
    +

    Removes the given item from the Collection.

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptionalDefault value
    item + T + + No + +
    event + boolean + + No + + true +
    +
    +
    + Example : +
    +
    <div><pre class="line-numbers"><code class="language-typescript">   * numbers.remove(4);
    +   *</code></pre></div>
    +
    +
    +
    + Returns : boolean + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + removeAll + + + +
    +removeAll(items?: Array, event: boolean) +
    +
    Inherited from List +
    +
    +
    Defined in List:123
    +
    +

    Removes all items from the Collection.

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptionalDefault value
    items + Array<T> + + Yes + +
    event + boolean + + No + + true +
    +
    +
    + Example : +
    +
    <div><pre class="line-numbers"><code class="language-typescript">   * numbers.removeAll();
    +   *</code></pre></div>
    +
    +
    +
    + Returns : void + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + replaceWith + + + +
    +replaceWith(items: Array, event: boolean) +
    +
    Inherited from List +
    +
    +
    Defined in List:147
    +
    +

    Replaces all current items with the given items.

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptionalDefault value
    items + Array<T> + + No + +
    event + boolean + + No + + true +
    +
    +
    +
    +
    + Returns : void + +
    +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + toggle + + + +
    +toggle(item: T, event: boolean) +
    +
    Inherited from List +
    +
    +
    Defined in List:138
    +
    +

    Toggles the item in and out of collection

    +
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameTypeOptionalDefault value
    item + T + + No + +
    event + boolean + + No + + true +
    +
    +
    +
    +
    + Returns : void + +
    +
    + +
    +

    diff --git a/docs/components/ApiActionbarComponent.html b/docs/components/ApiActionbarComponent.html index 68fb1b5be..405eb4d55 100644 --- a/docs/components/ApiActionbarComponent.html +++ b/docs/components/ApiActionbarComponent.html @@ -168,6 +168,17 @@

    Properties
  • state
  • +
  • + actionStack +
  • +
  • + Public + cdr +
  • +
  • + Public + elementRef +
  • @@ -210,6 +221,27 @@
    Methods
  • resourceAction
  • +
  • + currentActions +
  • +
  • + currentID +
  • +
  • + getPath +
  • +
  • + loadActions +
  • +
  • + loadActionsBefore +
  • +
  • + ngOnInit +
  • +
  • + reset +
  • @@ -228,6 +260,12 @@
    Inputs
  • actions
  • +
  • + actions +
  • +
  • + config +
  • @@ -485,6 +523,69 @@

    Inputs

    + + + + + + + + + + + + + +
    + + actions + +

    + Type : Action[] + +

    +
    + +
    +
    Defined in ResourceActionbarComponent:33
    +
    + + + + + + + + + + + + + +
    + + config + +

    + Type : ActionbarConfig + +

    +

    + Default value : { + label: 'title', + identifier: 'id', + fields: { + title: {} + } + } +

    +
    + +
    +
    Defined in ResourceActionbarComponent:26
    +

    Outputs

    @@ -1249,182 +1350,532 @@

    -

    - -
    - -

    - Properties -

    - - - + + + + + + +
    - + - Public - cdr + currentActions - +
    - cdr: ChangeDetectorRef - +currentActions()
    - Type : ChangeDetectorRef -
    + +
    - +
    Defined in ResourceActionbarComponent:82
    + +
    + Returns : {} + +
    +
    - - - + + + + + + +
    - + - Public - elementRef + currentID - +
    - elementRef: ElementRef - +currentID()
    - Type : ElementRef -
    + +
    - +
    Defined in ResourceActionbarComponent:70
    + +
    + Returns : any + +
    +
    - - - + + + + + + +
    - + - Public - notificationService + getPath - +
    - notificationService: NotificationsService - +getPath()
    - Type : NotificationsService -
    + +
    - +
    Defined in ResourceActionbarComponent:101
    + +
    + Returns : any + +
    +
    - - - + + + + + + +
    - + - Public - resourceConfig + loadActions - +
    - resourceConfig: ResourceConfig - +loadActions(actions, addToStack)
    - Type : ResourceConfig -
    + +
    - +
    Defined in ResourceActionbarComponent:86
    + +
    + Parameters : + + + + + + + + + + + + + + + + + + + + + + + + + + +
    NameOptionalDefault value
    actions + No + +
    addToStack + No + + true +
    +
    +
    +
    +
    + Returns : void + +
    +
    + +
    +
    - - - - - + + + + + + + + + + + +
    - + - Public - sdk + loadActionsBefore - +
    - sdk: SdkService - +loadActionsBefore()
    - Type : SdkService -
    - + +
    + +
    +
    Defined in ResourceActionbarComponent:59
    +
    + +
    + Returns : void + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + ngOnInit + + + +
    +ngOnInit() +
    + +
    +
    Defined in ResourceActionbarComponent:66
    +
    + +
    + Returns : void + +
    +
    + + + + + + + + + + + + + + + + + + + + + + +
    + + + + reset + + + +
    +reset() +
    + +
    +
    Defined in ResourceActionbarComponent:77
    +
    + +
    + Returns : void + +
    +
    +
    + +
    + +

    + Properties +

    + + + + + + + + + + + + + + + + + +
    + + + + Public + cdr + + + +
    + cdr: ChangeDetectorRef + +
    + Type : ChangeDetectorRef + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + Public + elementRef + + + +
    + elementRef: ElementRef + +
    + Type : ElementRef + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + Public + notificationService + + + +
    + notificationService: NotificationsService + +
    + Type : NotificationsService + +
    + +
    + + + + + + + + + + + + + + + + + +
    + + + + Public + resourceConfig + + + +
    + resourceConfig: ResourceConfig + +
    + Type : ResourceConfig + +
    + +
    + + + + + + + + + + + + + @@ -1674,6 +2125,133 @@

    +

    +
    + + + + Public + sdk + + + +
    + sdk: SdkService + +
    + Type : SdkService + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + +
    + + + + actionStack + + + +
    + actionStack: literal type + +
    + Type : literal type + +
    + Default value : {} +
    + +
    +
    Defined in ResourceActionbarComponent:34
    +
    + + + + + + + + + + + + + + + + + + + + +
    + + + + Public + cdr + + + +
    + cdr: ChangeDetectorRef + +
    + Type : ChangeDetectorRef + +
    + +
    +
    Defined in ResourceActionbarComponent:38
    +
    + + + + + + + + + + + + + + + + + + +
    + + + + Public + elementRef + + + +
    + elementRef: ElementRef + +
    + Type : ElementRef + +
    + +
    +
    Defined in ResourceActionbarComponent:37
    +
    diff --git a/docs/coverage.html b/docs/coverage.html index 747909528..221cef4d4 100644 --- a/docs/coverage.html +++ b/docs/coverage.html @@ -1324,7 +1324,7 @@ 0 % - (0/27) + (0/39) @@ -1466,9 +1466,9 @@ ResourceForm - - 76 % - (10/13) + + 85 % + (30/35) @@ -1514,9 +1514,9 @@ ResourceList - - 91 % - (41/45) + + 93 % + (55/59) @@ -2738,10 +2738,10 @@ - packages/ui/src/lib/symbol/symbol.pipe.ts + packages/ui/src/lib/symbol/symbol.pipe.ts - pipe + injectable SymbolPipe diff --git a/docs/graph/dependencies.svg b/docs/graph/dependencies.svg index 020b72365..b8d88a691 100644 --- a/docs/graph/dependencies.svg +++ b/docs/graph/dependencies.svg @@ -22,15 +22,19 @@  Exports cluster_AceModule - + cluster_AceModule_declarations - + + + +cluster_AceModule_AceComponent_providers + cluster_AceModule_exports - + cluster_AuthModule @@ -339,2207 +343,2229 @@ AceComponent - -AceComponent + +AceComponent AceModule - -AceModule + +AceModule AceComponent->AceModule - - + + - + AceComponent - -AceComponent + +AceComponent - + AceModule->AceComponent - - + + + + + +{ +    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true +} + +{ +    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true +} + + + +{ +    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true +}->AceComponent + + - + LoginComponent LoginComponent - + AuthModule AuthModule - + LoginComponent->AuthModule - + PasswordResetComponent PasswordResetComponent - + PasswordResetComponent->AuthModule - + SignupComponent SignupComponent - + SignupComponent->AuthModule - + LoginComponent LoginComponent - + AuthModule->LoginComponent - + PasswordResetComponent PasswordResetComponent - + AuthModule->PasswordResetComponent - + SignupComponent SignupComponent - + AuthModule->SignupComponent - + DataModule DataModule - + AuthModule->DataModule - + UiModule UiModule - + UiModule->AuthModule - + UiModule->DataModule - + FilesModule FilesModule - + UiModule->FilesModule - + ResourceModule ResourceModule - + UiModule->ResourceModule - + PopModule PopModule - + UiModule->PopModule - + FormModule FormModule - + UiModule->FormModule - + LocationModule LocationModule - + UiModule->LocationModule - + ListModule ListModule - + UiModule->ListModule - + IconModule IconModule - + UiModule->IconModule - + LoaderModule LoaderModule - + UiModule->LoaderModule - + NotificationsModule NotificationsModule - + UiModule->NotificationsModule - + SelectModule SelectModule - + UiModule->SelectModule - + SymbolModule SymbolModule - + UiModule->SymbolModule - + UtilityModule UtilityModule - + UiModule->UtilityModule - + cookieFactory() cookieFactory() - + cookieFactory()->AuthModule - + AuthService AuthService - + AuthService->AuthModule - + CalendarComponent CalendarComponent - + CalendarModule CalendarModule - + CalendarComponent->CalendarModule - - + + - + DaterangeComponent DaterangeComponent - + DaterangeComponent->CalendarModule - - + + - + DatetimePipe DatetimePipe - + DatetimePipe->CalendarModule - - + + - + HeatmapComponent HeatmapComponent - + HeatmapComponent->CalendarModule - - + + - + MonthComponent MonthComponent - + MonthComponent->CalendarModule - + CalendarComponent - -CalendarComponent + +CalendarComponent - + CalendarModule->CalendarComponent - - + + - + DaterangeComponent - -DaterangeComponent + +DaterangeComponent - + CalendarModule->DaterangeComponent - - + + - + DatetimePipe - -DatetimePipe + +DatetimePipe - + CalendarModule->DatetimePipe - - + + - + HeatmapComponent - -HeatmapComponent + +HeatmapComponent - + CalendarModule->HeatmapComponent - - + + - + MonthComponent - -MonthComponent + +MonthComponent - + CalendarModule->MonthComponent - - + + - + FormModule FormModule - + CalendarModule->FormModule - - + + - + AdminEntryInputComponent AdminEntryInputComponent - + AdminEntryInputComponent->DataModule - + CrudComponent CrudComponent - + CrudComponent->DataModule - + DefaultEntryInputComponent DefaultEntryInputComponent - + DefaultEntryInputComponent->DataModule - + DefaultEntryOutputComponent DefaultEntryOutputComponent - + DefaultEntryOutputComponent->DataModule - + EntriesDirective EntriesDirective - + EntriesDirective->DataModule - + EntryDirective EntryDirective - + EntryDirective->DataModule - + EntryFormComponent EntryFormComponent - + EntryFormComponent->DataModule - + EntryListComponent EntryListComponent - + EntryListComponent->DataModule - + EntryListPopComponent EntryListPopComponent - + EntryListPopComponent->DataModule - + EntryListSelectComponent EntryListSelectComponent - + EntryListSelectComponent->DataModule - + EntryPopComponent EntryPopComponent - + EntryPopComponent->DataModule - + EntrySelectComponent EntrySelectComponent - + EntrySelectComponent->DataModule - + AuthModule AuthModule - + DataModule->AuthModule - + CrudComponent CrudComponent - + DataModule->CrudComponent - + EntriesDirective EntriesDirective - + DataModule->EntriesDirective - + EntryDirective EntryDirective - + DataModule->EntryDirective - + EntryFormComponent EntryFormComponent - + DataModule->EntryFormComponent - + EntryListComponent EntryListComponent - + DataModule->EntryListComponent - + EntryListPopComponent EntryListPopComponent - + DataModule->EntryListPopComponent - + EntryListSelectComponent EntryListSelectComponent - + DataModule->EntryListSelectComponent - + EntryPopComponent EntryPopComponent - + DataModule->EntryPopComponent - + EntrySelectComponent EntrySelectComponent - + DataModule->EntrySelectComponent - + FilesModule FilesModule - + DataModule->FilesModule - + ResourceModule ResourceModule - + DataModule->ResourceModule - + SdkModule SdkModule - + DataModule->SdkModule - + UiModule UiModule - + DataModule->UiModule - + FilesModule->DataModule - + FilesModule->SdkModule - + AssetDirective AssetDirective - + FilesModule->AssetDirective - + AssetListComponent AssetListComponent - + FilesModule->AssetListComponent - + AssetListPopComponent AssetListPopComponent - + FilesModule->AssetListPopComponent - + AssetSelectComponent AssetSelectComponent - + FilesModule->AssetSelectComponent - + AssetgroupSelectComponent AssetgroupSelectComponent - + FilesModule->AssetgroupSelectComponent - + DropzoneDirective DropzoneDirective - + FilesModule->DropzoneDirective - + ImageDirective ImageDirective - + FilesModule->ImageDirective - + ImageSelectPopComponent ImageSelectPopComponent - + FilesModule->ImageSelectPopComponent - + TagSelectComponent TagSelectComponent - + FilesModule->TagSelectComponent - + UploadComponent UploadComponent - + FilesModule->UploadComponent - + UploadSelectComponent UploadSelectComponent - + FilesModule->UploadSelectComponent - + ResourceModule->DataModule - + ResourceModule->FilesModule - + ResourceModule->SdkModule - + ResourceModule->UiModule - + ApiActionbarComponent ApiActionbarComponent - + ResourceModule->ApiActionbarComponent - + ResourceActionbarComponent ResourceActionbarComponent - + ResourceModule->ResourceActionbarComponent - + ResourceCrudComponent ResourceCrudComponent - + ResourceModule->ResourceCrudComponent - + ResourceDeletePopComponent ResourceDeletePopComponent - + ResourceModule->ResourceDeletePopComponent - + ResourceFormComponent ResourceFormComponent - + ResourceModule->ResourceFormComponent - + ResourceListComponent ResourceListComponent - + ResourceModule->ResourceListComponent - + ResourceListPopComponent ResourceListPopComponent - + ResourceModule->ResourceListPopComponent - + ResourcePopComponent ResourcePopComponent - + ResourceModule->ResourcePopComponent - + ResourceSelectComponent ResourceSelectComponent - + ResourceModule->ResourceSelectComponent - + SdkModule SdkModule - + SdkModule->DataModule - + SdkModule->FilesModule - + SdkModule->ResourceModule - + CrudService CrudService - + CrudService->DataModule - + HistoryService HistoryService - + HistoryService->DataModule - + ModelConfigService ModelConfigService - + ModelConfigService->DataModule - + TypeConfigService TypeConfigService - + TypeConfigService->DataModule - + AssetDirective AssetDirective - + AssetDirective->FilesModule - + AssetListComponent AssetListComponent - + AssetListComponent->FilesModule - + AssetListPopComponent AssetListPopComponent - + AssetListPopComponent->FilesModule - + AssetSelectComponent AssetSelectComponent - + AssetSelectComponent->FilesModule - + AssetgroupSelectComponent AssetgroupSelectComponent - + AssetgroupSelectComponent->FilesModule - + DropzoneDirective DropzoneDirective - + DropzoneDirective->FilesModule - + ImageDirective ImageDirective - + ImageDirective->FilesModule - + ImageSelectPopComponent ImageSelectPopComponent - + ImageSelectPopComponent->FilesModule - + TagSelectComponent TagSelectComponent - + TagSelectComponent->FilesModule - + UploadComponent UploadComponent - + UploadComponent->FilesModule - + UploadSelectComponent UploadSelectComponent - + UploadSelectComponent->FilesModule - + FileService FileService - + FileService->FilesModule - + DatetimeComponent DatetimeComponent - + DatetimeComponent->FormModule - + DefaultInputComponent DefaultInputComponent - + DefaultInputComponent->FormModule - + DefaultOutputComponent DefaultOutputComponent - + DefaultOutputComponent->FormModule - + FormComponent FormComponent - + FormComponent->FormModule - + MaxItemsPipe MaxItemsPipe - + MaxItemsPipe->FormModule - + ToggleComponent ToggleComponent - + ToggleComponent->FormModule - + VisibleFieldsPipe VisibleFieldsPipe - + VisibleFieldsPipe->FormModule - + FormModule->UiModule - + DatetimeComponent DatetimeComponent - + FormModule->DatetimeComponent - + FormComponent FormComponent - + FormModule->FormComponent - + IoModule IoModule - + FormModule->IoModule - + MaxItemsPipe MaxItemsPipe - + FormModule->MaxItemsPipe - + FormModule->PopModule - + ToggleComponent ToggleComponent - + FormModule->ToggleComponent - + VisibleFieldsPipe VisibleFieldsPipe - + FormModule->VisibleFieldsPipe - + ListModule ListModule - + FormModule->ListModule - + IconModule IconModule - + IconModule->UiModule - + IconModule->FormModule - + PopModule PopModule - + IconModule->PopModule - + IconComponent IconComponent - + IconModule->IconComponent - - + + - + IconModule->ListModule - - + + - + NotificationsModule NotificationsModule - + IconModule->NotificationsModule - + IoModule IoModule - + IoModule->FormModule - + DynamicRackComponent DynamicRackComponent - + IoModule->DynamicRackComponent - + DynamicSlotComponent DynamicSlotComponent - + IoModule->DynamicSlotComponent - + InputComponent InputComponent - + IoModule->InputComponent - + InputErrorsComponent InputErrorsComponent - + IoModule->InputErrorsComponent - + OutputComponent OutputComponent - + IoModule->OutputComponent - + SlotHostDirective SlotHostDirective - + IoModule->SlotHostDirective - + UtilityModule UtilityModule - + IoModule->UtilityModule - + LoaderModule LoaderModule - + LoaderModule->UiModule - + LoaderModule->FormModule - + LoaderComponent LoaderComponent - + LoaderModule->LoaderComponent - + SelectModule SelectModule - + LoaderModule->SelectModule - + PopModule->UiModule - + PopModule->FormModule - + PopModule->NotificationsModule - + ModalComponent ModalComponent - + PopModule->ModalComponent - + PopComponent PopComponent - + PopModule->PopComponent - + SymbolModule SymbolModule - + SymbolModule->UiModule - + SymbolModule->FormModule - + SymbolModule->ListModule - - + + - + SymbolPipe SymbolPipe - + SymbolModule->SymbolPipe - - + + - + FormService FormService - + FormService->FormModule - + IconComponent IconComponent - + IconComponent->IconModule - + IconService IconService - + IconService->IconModule - + DynamicRackComponent DynamicRackComponent - + DynamicRackComponent->IoModule - + DynamicSlotComponent DynamicSlotComponent - + DynamicSlotComponent->IoModule - + InputComponent InputComponent - + InputComponent->IoModule - + InputErrorsComponent InputErrorsComponent - + InputErrorsComponent->IoModule - + OutputComponent OutputComponent - + OutputComponent->IoModule - + SlotHostDirective SlotHostDirective - + SlotHostDirective->IoModule - + GroupPipe GroupPipe - + GroupPipe->ListModule - + ListComponent ListComponent - + ListComponent->ListModule - + ListHeaderComponent ListHeaderComponent - + ListHeaderComponent->ListModule - + ListItemsComponent ListItemsComponent - + ListItemsComponent->ListModule - + PaginationComponent PaginationComponent - + PaginationComponent->ListModule - + SearchbarComponent SearchbarComponent - + SearchbarComponent->ListModule - + ListModule->UiModule - + ListModule->FormModule - + GroupPipe GroupPipe - + ListModule->GroupPipe - + ListComponent ListComponent - + ListModule->ListComponent - + ListHeaderComponent ListHeaderComponent - + ListModule->ListHeaderComponent - + ListItemsComponent ListItemsComponent - + ListModule->ListItemsComponent - + PaginationComponent PaginationComponent - + ListModule->PaginationComponent - + SearchbarComponent SearchbarComponent - + ListModule->SearchbarComponent - + ListModule->SelectModule - + UtilityModule->UiModule - - + + - + UtilityModule->ListModule - + FocusDirective FocusDirective - + UtilityModule->FocusDirective - + LoginFormComponent LoginFormComponent - + UtilityModule->LoginFormComponent - + MenuComponent MenuComponent - + UtilityModule->MenuComponent - + SignupFormComponent SignupFormComponent - + UtilityModule->SignupFormComponent - + TabComponent TabComponent - + UtilityModule->TabComponent - + TabsComponent TabsComponent - + UtilityModule->TabsComponent - + ListConfigService ListConfigService - + ListConfigService->ListModule - + LoaderComponent LoaderComponent - + LoaderComponent->LoaderModule - + LoaderService LoaderService - + LoaderService->LoaderModule - + LocationMapComponent LocationMapComponent - + LocationMapComponent->LocationModule - + LocationPickerComponent LocationPickerComponent - + LocationPickerComponent->LocationModule - + LocationSearchComponent LocationSearchComponent - + LocationSearchComponent->LocationModule - + LocationMapComponent LocationMapComponent - + LocationModule->LocationMapComponent - + LocationPickerComponent LocationPickerComponent - + LocationModule->LocationPickerComponent - + LocationSearchComponent LocationSearchComponent - + LocationModule->LocationSearchComponent - + GeocodeService GeocodeService - + GeocodeService->LocationModule - + MediumEditorComponent MediumEditorComponent - + MediumEditorModule MediumEditorModule - + MediumEditorComponent->MediumEditorModule - + MediumEditorComponent MediumEditorComponent - + MediumEditorModule->MediumEditorComponent @@ -2547,7 +2573,7 @@ - + {    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true } @@ -2559,7 +2585,7 @@ - + {    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true }->MediumEditorComponent @@ -2567,307 +2593,307 @@ - + ErrorComponent ErrorComponent - + ErrorComponent->NotificationsModule - + NotificationsComponent NotificationsComponent - + NotificationsComponent->NotificationsModule - + NotificationsModule->UiModule - + ErrorComponent ErrorComponent - + NotificationsModule->ErrorComponent - + NotificationsComponent NotificationsComponent - + NotificationsModule->NotificationsComponent - + NotificationsService NotificationsService - + NotificationsService->NotificationsModule - + ModalComponent ModalComponent - + ModalComponent->PopModule - + PopComponent PopComponent - + PopComponent->PopModule - + PopService PopService - + PopService->PopModule - + ApiActionbarComponent ApiActionbarComponent - + ApiActionbarComponent->ResourceModule - + ResourceActionbarComponent ResourceActionbarComponent - + ResourceActionbarComponent->ResourceModule - + ResourceCrudComponent ResourceCrudComponent - + ResourceCrudComponent->ResourceModule - + ResourceDeletePopComponent ResourceDeletePopComponent - + ResourceDeletePopComponent->ResourceModule - + ResourceFormComponent ResourceFormComponent - + ResourceFormComponent->ResourceModule - + ResourceListComponent ResourceListComponent - + ResourceListComponent->ResourceModule - + ResourceListPopComponent ResourceListPopComponent - + ResourceListPopComponent->ResourceModule - + ResourcePopComponent ResourcePopComponent - + ResourcePopComponent->ResourceModule - + ResourceSelectComponent ResourceSelectComponent - + ResourceSelectComponent->ResourceModule - + ResourceConfig ResourceConfig - + ResourceConfig->ResourceModule - + ResourceService ResourceService - + ResourceService->ResourceModule - + SdkService SdkService - + SdkService->SdkModule - + ActionbarComponent ActionbarComponent - + ActionbarComponent->SelectModule - + SelectComponent SelectComponent - + SelectComponent->SelectModule - + SelectModule->UiModule - + ActionbarComponent ActionbarComponent - + SelectModule->ActionbarComponent - + SelectModule->ListModule - + SelectComponent SelectComponent - + SelectModule->SelectComponent @@ -2875,7 +2901,7 @@ - + {    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true } @@ -2887,7 +2913,7 @@ - + {    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true }->SelectComponent @@ -2895,127 +2921,127 @@ - + SymbolPipe SymbolPipe - + SymbolPipe->SymbolModule - + SymbolService SymbolService - + SymbolService->SymbolModule - + TinymceComponent TinymceComponent - + TinymceModule TinymceModule - + TinymceComponent->TinymceModule - + TinymceComponent TinymceComponent - + TinymceModule->TinymceComponent - + FocusDirective FocusDirective - + FocusDirective->UtilityModule - + LoginFormComponent LoginFormComponent - + LoginFormComponent->UtilityModule - + MenuComponent MenuComponent - + MenuComponent->UtilityModule - + SignupFormComponent SignupFormComponent - + SignupFormComponent->UtilityModule - + TabComponent TabComponent - + TabComponent->UtilityModule - + TabsComponent TabsComponent - + TabsComponent->UtilityModule diff --git a/docs/index.html b/docs/index.html index 71a4e2514..5336316c8 100644 --- a/docs/index.html +++ b/docs/index.html @@ -36,19 +36,19 @@

    ec.components

    Packages

    Main Packages

      -
    • @ec.components/core: contains core typescript classes (no angular/datamanager)
    • -
    • @ec.components/ui: contains core ui components (not datamanager specific)
    • -
    • @ec.components/data: contains ui components for datamanager.
    • -
    • @ec.components/style: contains styles for all components, built on x.ui.
    • +
    • @ec.components/core: contains core typescript classes (no angular/datamanager)
    • +
    • @ec.components/ui: contains core ui components (not datamanager specific)
    • +
    • @ec.components/data: contains ui components for datamanager.
    • +
    • @ec.components/style: contains styles for all components, built on x.ui.

    The dependencies stack up from core to data (data > ui > core). You could also omit data, using just the ui components.

    Optional Packages

    Documentation

    The main documentation is located at entrecode.github.io/ec.components. You can find a getting started guide there.

    diff --git a/docs/js/search/search_index.js b/docs/js/search/search_index.js index 626a68171..f44a31276 100644 --- a/docs/js/search/search_index.js +++ b/docs/js/search/search_index.js @@ -1,4 +1,4 @@ var COMPODOC_SEARCH_INDEX = { - "index": {"version":"2.3.5","fields":["title","body"],"fieldVectors":[["title/components/AceComponent.html",[0,0.202,1,1.294]],["body/components/AceComponent.html",[0,0.325,1,1.882,2,0.155,3,0.161,4,0.641,5,1.43,6,0.814,7,0.787,8,1.093,9,0.102,10,3.013,11,0.343,12,2.631,13,5.986,14,4.436,15,2.212,16,1.591,17,4.364,18,4.661,19,1.761,20,1.993,21,2.454,22,2.705,23,0.675,24,1.893,25,0.007,26,3.217,27,2.631,28,3.217,29,2.631,30,0.823,31,2.16,32,1.91,33,3.057,34,5.7,35,1.136,36,4.661,37,0.31,38,0.542,39,2.417,40,1.688,41,4.035,42,4.633,43,1.387,44,1.52,45,3.125,46,1.85,47,2.762,48,2.127,49,0.666,50,4.189,51,3.045,52,2.896,53,3.057,54,4.035,55,4.661,56,4.661,57,2.821,58,6.265,59,8.861,60,0.939,61,2.64,62,6.415,63,2.154,64,5.253,65,0.293,66,3.211,67,3.303,68,6.415,69,0.758,70,1.675,71,1.088,72,3.013,73,3.013,74,3.013,75,1.507,76,0.852,77,2.195,78,3.199,79,1.788,80,1.08,81,1.08,82,1.894,83,3.013,84,2.932,85,3.013,86,2.932,87,3.013,88,3.199,89,1.618,90,3.366,91,0.934,92,0.905,93,0.619,94,2.932,95,3.013,96,4.661,97,3.013,98,4.035,99,3.566,100,4.661,101,4.661,102,3.013,103,4.661,104,2.932,105,3.013,106,3.199,107,2.399,108,1.761,109,2.896,110,1.163,111,3.566,112,3.013,113,1.591,114,3.013,115,1.75,116,3.013,117,1.999,118,0.806,119,2.547,120,3.013,121,2.734,122,3.013,123,2.777,124,2.721,125,3.013,126,1.507,127,2.721,128,3.211,129,2.305,130,2.305,131,1.24,132,2.821,133,2.305,134,2.305,135,1.759,136,1.36,137,0.266,138,1.213,139,0.939,140,2.684,141,3.013,142,3.013,143,2.684,144,1.895,145,2.467,146,1.139,147,0.61,148,0.097,149,0.102,150,4.661,151,4.661,152,3.013,153,3.013,154,5.253,155,3.013,156,3.566,157,2.684,158,5.077,159,3.013,160,5.7,161,3.013,162,3.057,163,3.013,164,1.376,165,4.152,166,3.013,167,1.597,168,3.013,169,3.013,170,3.013,171,3.816,172,3.013,173,1.895,174,3.013,175,2.305,176,3.013,177,0.56,178,1.238,179,0.959,180,1.268,181,1.704,182,0.814,183,0.814,184,0.747,185,1.54,186,0.747,187,0.787,188,0.686,189,0.773,190,0.76,191,2.067,192,0.773,193,1.276,194,1.734,195,0.787,196,1.295,197,2.136,198,0.787,199,0.787,200,0.814,201,0.773,202,1.26,203,0.787,204,0.814,205,0.773,206,0.814,207,0.76,208,0.76,209,1.446,210,1.54,211,0.76,212,0.773,213,0.773,214,0.747,215,0.814,216,0.787,217,1.875,218,0.787,219,0.773,220,0.787,221,0.787,222,0.787,223,0.773,224,0.814,225,0.773,226,0.787,227,0.814,228,0.773,229,0.814,230,0.773,231,0.747,232,0.912,233,0.814,234,0.773,235,0.814,236,0.76,237,0.773,238,0.814,239,0.773,240,0.814,241,0.71,242,0.814,243,0.773,244,1.343,245,0.814,246,0.76,247,0.814,248,0.773,249,0.814,250,0.747,251,0.814,252,0.773,253,0.747,254,0.773,255,0.722,256,0.814,257,0.773,258,0.814,259,0.814,260,0.773,261,0.814,262,0.773,263,0.814,264,0.747,265,0.814,266,0.76,267,0.773,268,0.814,269,0.773,270,0.787,271,0.814,272,0.76,273,0.773,274,1.74,275,0.773,276,0.787,277,0.675,278,0.787,279,0.787,280,0.773,281,0.787,282,0.787,283,0.787,284,0.814,285,0.76,286,0.773,287,0.814,288,0.773,289,0.787,290,0.773,291,0.814,292,0.773,293,0.814,294,0.787,295,0.722,296,0.773,297,0.814,298,0.773,299,0.814,300,0.773,301,0.814,302,0.773,303,0.734,304,0.747,305,0.814,306,0.76,307,0.814,308,0.76,309,0.814,310,0.76,311,0.814,312,0.76,313,0.814,314,0.76,315,0.8,316,0.814,317,0.76,318,0.8,319,0.814,320,0.003,321,0.003]],["title/modules/AceModule.html",[322,1.092,323,3.641]],["body/modules/AceModule.html",[1,2.556,2,0.364,3,0.376,9,0.238,24,2.472,25,0.007,63,2.372,65,0.315,137,0.624,146,3.375,147,1.429,148,0.303,149,0.238,177,1.313,320,0.006,321,0.006,322,1.813,323,6.974,324,2.907,325,6.292,326,6.292,327,6.292,328,3.525,329,2.564,330,2.372,331,7.064,332,4.727,333,2.465,334,7.064,335,7.064,336,7.064]],["title/interfaces/Action.html",[337,1.436,338,2.944]],["body/interfaces/Action.html",[0,0.29,2,0.289,3,0.298,9,0.189,16,1.388,19,2.741,21,3.122,25,0.007,30,0.989,31,1.212,32,1.077,35,1.365,37,0.576,38,0.843,40,1.547,44,1.395,46,1.412,48,2.332,52,2.528,65,0.284,69,0.794,70,1.857,76,1.023,81,1.089,93,0.899,109,3.631,137,0.495,147,1.133,148,0.274,149,0.189,184,1.798,196,0.989,232,1.664,285,1.829,320,0.005,321,0.005,329,2.032,337,2.291,338,5.542,339,4.585,340,3.58,341,4.398,342,4.649,343,3.715,344,6.508,345,1.741,346,3.964,347,4.988,348,3.844,349,1.595,350,5.938,351,5.938,352,4.988,353,1.653,354,2.357,355,3.16,356,4.988,357,1.095,358,3.964,359,4.585,360,4.988,361,4.988,362,1.567,363,4.988,364,4.988,365,4.988,366,4.988,367,4.988,368,4.585,369,4.988,370,4.988,371,4.988,372,4.988,373,6.46,374,7.164,375,4.988,376,4.988,377,4.988,378,4.389,379,4.988,380,3.269,381,4.988,382,4.988,383,4.988,384,4.988,385,4.988,386,4.988,387,6.46,388,4.284,389,4.988,390,3.269,391,4.988,392,3.672,393,4.988,394,4.988,395,4.585,396,4.988]],["title/interfaces/ActionbarConfig.html",[337,1.436,351,4.128]],["body/interfaces/ActionbarConfig.html",[0,0.301,2,0.305,3,0.315,9,0.2,16,1.467,19,3.12,21,3.234,25,0.007,30,1.045,31,1.281,32,1.138,35,1.442,40,1.588,44,1.445,46,1.492,48,2.393,52,2.671,65,0.291,69,0.511,70,1.699,76,1.081,81,1.111,109,3.726,137,0.523,147,1.197,148,0.28,149,0.2,184,1.863,196,1.045,232,1.157,285,1.895,320,0.005,321,0.005,329,2.147,337,2.351,338,5.348,339,4.844,340,2.49,341,4.021,342,3.233,343,3.397,344,5.747,345,1.281,346,4.106,347,5.27,348,4.376,349,1.685,350,6.151,351,6.758,352,5.27,353,1.746,354,2.49,355,3.339,356,5.27,357,1.157,358,4.106,359,4.844,360,5.27,361,5.27,362,1.656,363,5.27,364,5.27,365,5.27,366,5.27,367,5.27,368,4.844,369,5.27,370,5.27,371,5.27,372,5.27,373,6.691,374,7.352,375,5.27,376,5.27,377,5.27,378,4.547,379,5.27,380,3.454,381,5.27,382,5.27,383,5.27,384,5.27,385,5.27,386,5.27,387,6.691,388,4.526,389,5.27,390,3.454,391,5.27,392,3.88,393,5.27,394,5.27,395,4.844,396,5.27]],["title/components/AdminEntryInputComponent.html",[0,0.202,186,1.25]],["body/components/AdminEntryInputComponent.html",[0,0.34,1,1.068,2,0.215,3,0.222,4,1.469,6,1.124,7,1.086,9,0.14,11,0.474,19,2.239,20,2.191,23,0.932,25,0.007,31,2.184,32,1.934,35,1.444,37,0.428,38,0.689,40,1.635,44,1.725,45,3.663,46,2.262,47,3.238,48,2.395,60,0.758,65,0.265,69,0.764,71,1.007,91,0.606,92,0.932,93,0.402,113,1.469,115,1.049,117,1.846,118,0.744,126,1.916,127,3.459,128,3.764,129,3.183,130,3.183,131,1.712,132,3.586,133,3.183,134,3.183,135,2.429,137,0.368,139,1.297,148,0.134,149,0.14,177,0.774,178,1.574,179,1.219,181,1.997,182,1.124,183,1.124,184,1.032,185,1.865,186,1.864,187,1.086,188,1.936,189,1.068,190,1.049,191,2.297,192,1.068,193,1.545,194,2.032,195,1.086,196,1.459,197,2.348,198,1.086,199,1.086,200,1.124,201,1.068,202,1.601,203,1.086,204,1.124,205,1.068,206,1.124,207,1.049,208,1.049,209,1.747,210,1.865,211,1.049,212,1.068,213,1.068,214,1.032,215,1.124,216,1.086,217,2.148,218,1.086,219,1.068,220,1.086,221,1.086,222,1.086,223,1.068,224,1.124,225,1.068,226,1.086,227,1.124,228,1.068,229,1.124,230,1.068,231,1.032,232,1.159,233,1.124,234,1.068,235,1.124,236,1.049,237,1.068,238,1.124,239,1.068,240,1.124,241,0.98,242,1.124,243,1.068,244,1.626,245,1.124,246,1.049,247,1.124,248,1.068,249,1.124,250,1.032,251,1.124,252,1.068,253,1.032,254,1.068,255,0.997,256,1.124,257,1.068,258,1.124,259,1.124,260,1.068,261,1.124,262,1.068,263,1.124,264,1.032,265,1.124,266,1.049,267,1.068,268,1.124,269,1.068,270,1.086,271,1.124,272,1.049,273,1.068,274,1.913,275,1.068,276,1.086,277,0.932,278,1.086,279,1.086,280,1.068,281,1.086,282,1.086,283,1.086,284,1.124,285,1.049,286,1.068,287,1.124,288,1.068,289,1.086,290,1.068,291,1.124,292,1.068,293,1.124,294,1.086,295,0.997,296,1.068,297,1.124,298,1.068,299,1.124,300,1.068,301,1.124,302,1.068,303,1.014,304,1.032,305,1.124,306,1.049,307,1.124,308,1.049,309,1.124,310,1.049,311,1.124,312,1.049,313,1.124,314,1.049,315,1.105,316,1.124,317,1.049,318,1.105,319,1.124,320,0.004,321,0.004,357,0.814,380,2.429,397,5.753,398,5.753,399,3.183,400,3.141,401,3.344,402,5.278,403,6.763,404,3.727,405,4.067,406,4.851,407,4.73,408,5.925,409,4.279,410,4.533,411,3.271,412,2.274,413,3.399,414,5.278,415,4.161,416,1.878,417,3.407,418,1.925,419,3.005,420,4.161,421,2.856,422,3.407,423,4.851,424,3.586]],["title/directives/AssetDirective.html",[179,1.038,304,1.25]],["body/directives/AssetDirective.html",[2,0.252,3,0.261,4,1.795,8,1.776,9,0.224,11,0.558,16,1.645,22,3.571,23,1.096,25,0.007,30,1.171,31,1.436,37,0.504,38,0.771,40,1.739,44,1.71,49,0.948,51,3.828,60,1.137,65,0.285,69,0.814,70,1.739,71,1.117,75,1.583,76,1.212,79,1.617,81,1.112,82,1.173,91,0.966,92,0.712,93,0.641,108,2.507,118,1.013,121,3.425,126,2.145,137,0.433,147,0.991,148,0.158,149,0.165,179,1.66,180,2.06,188,2.059,193,2.207,295,1.173,304,1.645,320,0.004,321,0.004,341,4.555,343,2.014,345,1.436,357,0.958,362,1.37,411,3.658,412,2.675,413,3.577,416,2.21,418,2.265,421,3.36,424,4.882,425,1.742,426,4.895,427,3.974,428,6.633,429,6.633,430,8.888,431,5.825,432,5.433,433,5.303,434,2.468,435,6.633,436,1.673,437,5.431,438,4.934,439,4.895,440,4.895,441,4.79,442,4.895,443,4.895,444,2.507,445,4.895,446,3.626,447,1.498,448,2.657,449,4.895,450,5.909,451,4.895,452,2.614,453,5.909,454,2.108,455,4.895,456,4.35,457,4.895,458,4.895,459,4.008,460,3.21,461,4.895,462,4.895,463,4.895,464,4.895,465,4.895,466,4.895,467,3.535,468,3.535,469,3.21,470,3.745,471,6.633,472,7.185,473,3.745,474,2.858,475,4.895,476,3.36,477,3.079,478,4.36,479,5.431,480,4.895,481,4.008,482,4.895,483,4.895]],["title/components/AssetListComponent.html",[0,0.202,192,1.294]],["body/components/AssetListComponent.html",[0,0.306,1,0.969,2,0.195,3,0.201,4,0.804,6,1.021,7,0.986,9,0.127,16,1.37,19,2.089,20,0.953,21,2.814,23,0.846,25,0.007,30,0.976,31,2.178,32,1.928,35,1.347,37,0.389,38,0.889,40,1.383,43,1.058,44,1.537,48,1.095,49,1.028,51,2.623,52,3.246,60,0.707,65,0.195,69,0.785,70,1.278,71,1.107,75,1.222,77,1.293,79,1.347,80,1.514,81,1.023,82,1.834,89,1.394,91,0.951,92,0.954,93,0.739,108,1.428,110,1.458,113,1.37,115,0.953,118,0.694,121,2.178,128,4.649,137,0.334,148,0.122,149,0.127,177,0.702,178,1.468,179,1.137,181,1.91,182,1.021,183,1.021,184,0.937,185,1.766,186,0.937,187,0.986,188,1.638,189,0.969,190,0.953,191,2.231,192,1.845,193,1.849,194,1.943,195,0.986,196,1.658,197,2.287,198,0.986,199,0.986,200,1.021,201,0.969,202,1.494,203,0.986,204,1.021,205,0.969,206,1.021,207,0.953,208,0.953,209,1.561,210,1.766,211,0.953,212,0.969,213,0.969,214,0.937,215,1.021,216,0.986,217,2.068,218,0.986,219,0.969,220,0.986,221,0.986,222,0.986,223,0.969,224,1.021,225,0.969,226,0.986,227,1.021,228,0.969,229,1.021,230,0.969,231,0.937,232,1.278,233,1.021,234,0.969,235,1.021,236,0.953,237,0.969,238,1.021,239,0.969,240,1.021,241,1.302,242,1.021,243,0.969,244,1.54,245,1.021,246,0.953,247,1.021,248,0.969,249,1.021,250,0.937,251,1.021,252,0.969,253,0.937,254,0.969,255,0.905,256,1.021,257,0.969,258,1.021,259,1.021,260,0.969,261,1.021,262,0.969,263,1.021,264,0.937,265,1.021,266,0.953,267,0.969,268,1.021,269,0.969,270,0.986,271,1.021,272,0.953,273,0.969,274,1.958,275,0.969,276,0.986,277,0.846,278,0.986,279,2.472,280,0.969,281,0.986,282,0.986,283,0.986,284,1.021,285,0.953,286,0.969,287,1.021,288,0.969,289,0.986,290,0.969,291,1.021,292,0.969,293,1.021,294,0.986,295,0.905,296,0.969,297,1.021,298,0.969,299,1.021,300,0.969,301,1.021,302,0.969,303,0.921,304,0.937,305,1.021,306,0.953,307,1.021,308,0.953,309,1.021,310,0.953,311,1.021,312,0.953,313,1.021,314,0.953,315,1.003,316,1.021,317,0.953,318,1.003,319,1.021,320,0.004,321,0.004,345,1.197,346,3.02,348,3.464,353,1.115,358,3.571,362,1.057,427,2.895,454,1.627,460,2.478,484,5.526,485,4.923,486,3.778,487,4.923,488,4.182,489,3.571,490,3.624,491,6.534,492,3.364,493,5.526,494,3.096,495,6.544,496,2.88,497,5.526,498,2.132,499,4.228,500,4.923,501,3.365,502,1.371,503,3.365,504,1.748,505,3.778,506,3.778,507,3.778,508,2.003,509,3.778,510,3.093,511,2.132,512,2.89,513,1.793,514,3.778,515,2.003,516,3.365,517,3.778,518,1.706,519,1.748,520,3.778,521,3.778,522,3.778,523,4.485,524,3.365,525,3.778,526,2.478,527,3.778,528,3.778,529,3.778,530,3.778,531,1.748,532,3.093,533,3.778,534,3.778,535,3.778,536,2.206,537,2.132,538,3.778,539,3.778,540,2.89,541,3.624,542,3.778,543,3.778,544,4.228,545,3.778,546,2.478,547,2.206,548,5.526,549,3.991]],["title/components/AssetgroupSelectComponent.html",[0,0.202,189,1.294]],["body/components/AssetgroupSelectComponent.html",[0,0.32,1,1.081,2,0.217,3,0.224,4,0.897,6,1.138,7,1.1,9,0.142,16,1.482,20,1.062,21,2.991,23,0.943,25,0.007,31,2.186,32,1.936,35,1.457,37,0.433,38,0.695,40,1.705,43,0.682,44,1.336,49,0.855,52,3.413,65,0.211,69,0.737,70,1.479,71,1.051,76,0.77,81,0.539,82,1.009,91,0.613,92,0.935,93,0.407,113,1.482,115,1.062,118,0.872,137,0.372,148,0.136,149,0.142,177,0.783,178,1.587,179,1.23,181,2.008,182,1.138,183,1.138,184,1.044,185,1.877,186,1.044,187,1.1,188,0.959,189,1.94,190,2.336,191,2.305,192,1.081,193,1.788,194,2.043,195,1.1,196,1.465,197,2.355,198,1.1,199,1.1,200,1.138,201,1.081,202,1.615,203,1.1,204,1.138,205,1.081,206,1.138,207,1.062,208,1.062,209,1.613,210,1.877,211,1.062,212,1.081,213,1.081,214,1.044,215,1.138,216,1.1,217,2.158,218,1.1,219,1.081,220,1.1,221,1.1,222,1.1,223,1.081,224,1.138,225,1.081,226,1.1,227,1.138,228,1.081,229,1.138,230,1.081,231,1.044,232,1.622,233,1.138,234,1.081,235,1.138,236,1.062,237,1.081,238,1.138,239,1.081,240,1.138,241,0.992,242,1.138,243,1.081,244,1.637,245,1.138,246,1.062,247,1.138,248,1.081,249,1.138,250,1.044,251,1.138,252,1.081,253,1.044,254,1.081,255,1.009,256,1.138,257,1.081,258,1.138,259,1.138,260,1.081,261,1.138,262,1.081,263,1.138,264,1.044,265,1.138,266,1.062,267,1.081,268,1.138,269,1.081,270,1.1,271,1.138,272,1.062,273,1.081,274,1.919,275,1.081,276,1.1,277,0.943,278,1.1,279,1.1,280,1.081,281,1.1,282,1.1,283,1.1,284,1.138,285,1.062,286,1.081,287,1.138,288,1.081,289,1.1,290,1.081,291,1.138,292,1.081,293,1.138,294,1.1,295,1.009,296,1.081,297,1.138,298,1.081,299,1.138,300,1.081,301,1.138,302,1.081,303,1.027,304,1.044,305,1.138,306,1.062,307,1.138,308,1.062,309,1.138,310,1.062,311,1.138,312,1.062,313,1.138,314,1.062,315,1.119,316,1.138,317,1.062,318,1.119,319,1.138,320,0.004,321,0.004,345,1.637,357,1.169,434,2.313,447,1.289,448,2.491,550,8.99,551,8.008,552,3.752,553,5.324,554,5.721,555,4.556,556,6.947,557,3.996,558,4.37,559,5.688,560,4.212,561,5.324,562,4.212,563,4.212,564,4.212,565,4.212,566,3.752,567,3.752,568,3.752,569,3.042,570,1.949,571,1.414,572,2.549,573,2.762,574,4.212,575,4.212,576,4.894]],["title/guards/AuthGuard.html",[577,4.128,578,4.128]],["body/guards/AuthGuard.html",[2,0.318,3,0.328,9,0.208,11,0.702,16,1.527,25,0.007,30,1.087,37,0.634,38,0.716,39,2.538,49,1.102,60,1.076,61,2.534,65,0.32,69,0.665,71,0.913,76,1.125,78,5.288,81,1.076,91,0.896,92,0.66,93,0.595,131,2.534,137,0.544,139,1.919,148,0.198,149,0.208,253,1.527,320,0.005,321,0.005,343,2.534,357,1.205,411,3.626,412,3.365,413,3.808,416,2.78,434,2.357,436,1.943,489,4.21,508,4.67,519,2.849,577,6.884,578,6.308,579,8.407,580,6.157,581,3.656,582,5.97,583,4.348,584,3.292,585,5.296,586,4.846,587,3.656,588,6.55,589,9.253,590,3.89,591,4.292,592,6.157,593,6.157,594,4.595,595,3.595,596,4.815,597,3.17,598,5.485,599,4.226,600,1.451,601,2.191,602,2.426,603,6.157,604,5.041,605,6.157,606,6.157,607,6.157,608,7.703,609,6.157,610,6.157,611,5.485,612,6.157,613,6.157,614,6.157]],["title/modules/AuthModule.html",[322,1.092,615,3.641]],["body/modules/AuthModule.html",[0,0.302,2,0.308,3,0.318,9,0.201,11,0.68,24,2.445,25,0.007,63,2.002,65,0.342,81,0.763,137,0.527,138,2.401,139,1.858,146,3.131,148,0.289,149,0.201,177,1.109,250,2.405,269,2.489,270,1.557,286,2.489,320,0.005,321,0.005,322,1.886,324,2.455,328,3.178,329,2.164,330,2.002,333,2.634,427,2.401,498,2.913,531,2.76,578,6.182,615,7.156,616,5.312,617,5.312,618,5.312,619,5.312,620,5.312,621,5.359,622,7.515,623,5.555,624,5.312,625,5.212,626,3.494,627,3.583,628,2.692,629,5.777,630,5.983,631,5.183,632,6.726,633,4.563,634,5.312,635,5.964,636,4.563,637,5.312,638,5.312,639,5.964,640,5.964,641,5.964,642,5.964,643,5.964]],["title/injectables/AuthService.html",[436,1.272,623,3.052]],["body/injectables/AuthService.html",[2,0.314,3,0.179,9,0.113,11,0.382,24,2.469,25,0.007,30,1.076,32,0.973,37,0.345,42,3.653,43,1.098,44,1.572,49,1.293,50,2.681,60,0.979,65,0.239,69,0.661,70,1.874,71,1.052,75,1.084,77,1.731,79,1.653,80,1.894,81,1.266,84,3.182,91,1.261,92,0.929,93,0.886,108,1.267,118,0.997,121,2.673,126,1.635,137,0.296,147,1.232,148,0.108,149,0.113,188,2.216,253,1.805,270,2.134,274,1.341,277,1.133,289,1.9,320,0.005,321,0.003,329,1.836,353,2.002,357,0.656,405,4.995,409,5.525,411,2.506,413,3.149,416,1.514,436,1.536,438,3.317,452,1.993,454,3.52,476,5.451,488,4.182,498,3.064,502,2.461,504,3.138,515,4.333,531,1.552,582,3.182,594,2.765,601,1.193,602,1.322,623,3.061,625,2.109,644,3.353,645,3.87,646,3.317,647,5.944,648,4.142,649,3.831,650,4.659,651,5.425,652,4.142,653,5.525,654,4.142,655,3.653,656,5.553,657,2.953,658,4.505,659,4.505,660,4.505,661,5.058,662,4.505,663,5.058,664,5.058,665,4.505,666,6.782,667,6.782,668,5.058,669,5.058,670,2.987,671,3.353,672,4.505,673,5.058,674,3.353,675,6.076,676,6.023,677,4.505,678,3.353,679,5.058,680,3.353,681,1.873,682,6.041,683,5.058,684,7.451,685,2.952,686,3.353,687,5.058,688,3.353,689,4.266,690,2.746,691,3.353,692,6.815,693,5.058,694,3.353,695,3.353,696,5.058,697,3.353,698,5.058,699,3.353,700,2.855,701,2.987,702,3.353,703,2.109,704,2.199,705,1.634,706,2.109,707,6.782,708,6.782,709,5.058,710,5.058,711,5.058,712,6.041,713,5.058,714,3.353,715,5.058,716,3.353,717,6.09,718,5.188,719,3.353,720,3.353,721,4.505,722,3.353,723,2.746,724,2.987,725,3.353,726,2.109,727,3.353,728,3.353,729,3.353,730,3.353,731,3.353,732,3.353,733,3.353,734,5.058,735,2.987,736,5.058,737,3.353,738,3.061,739,3.353,740,3.061,741,3.317,742,3.353,743,5.058,744,5.058,745,3.353,746,3.353,747,3.353,748,4.142,749,5.058,750,3.353,751,5.058,752,3.653,753,5.058,754,5.058,755,3.472,756,5.058,757,5.058,758,5.058,759,5.058,760,3.353,761,5.058,762,3.353,763,3.353,764,3.353,765,3.353,766,3.353,767,3.353,768,3.353,769,3.353,770,3.353,771,2.566,772,2.987,773,2.03,774,3.353]],["title/modules/CalendarModule.html",[322,1.092,775,3.306]],["body/modules/CalendarModule.html",[0,0.293,2,0.292,3,0.302,9,0.191,11,0.646,24,2.784,25,0.007,39,2.408,49,0.81,63,1.903,65,0.33,69,0.699,71,0.672,81,0.935,91,0.825,92,0.608,93,0.547,137,0.501,146,3.057,147,1.147,148,0.285,149,0.191,177,1.054,199,2.515,203,2.515,226,2.515,262,2.472,320,0.005,321,0.005,322,1.85,324,2.333,328,3.076,329,2.057,330,1.903,333,2.55,498,2.82,627,3.469,628,2.559,629,6.189,649,5.697,775,6.482,776,5.048,777,5.048,778,5.048,779,7.37,780,5.668,781,4.424,782,5.278,783,5.048,784,7.309,785,4.267,786,5.668,787,4.641,788,5.668,789,5.668,790,5.668,791,5.668,792,5.668,793,5.668,794,5.984,795,5.668,796,5.984,797,5.668,798,5.984,799,5.048,800,5.048,801,5.668,802,3.309,803,2.918,804,5.048,805,5.668,806,5.668,807,5.668]],["title/classes/Collection.html",[149,0.17,808,3.171]],["body/classes/Collection.html",[2,0.172,3,0.178,8,3.251,9,0.113,11,0.381,25,0.007,30,1.666,37,0.891,38,0.586,39,2.69,43,1.379,44,1.47,48,2.864,49,0.721,65,0.118,69,0.786,71,1.071,76,1.328,79,1.65,80,2.148,81,1.212,82,1.742,89,1.273,91,1.26,92,0.928,93,0.857,118,1.07,126,1.081,147,1.471,148,0.108,149,0.245,164,1.489,196,1.073,232,0.654,320,0.003,321,0.003,330,1.122,345,2.095,357,0.654,362,2.422,425,1.189,444,2.998,447,2.906,454,2.173,490,3.986,494,3.667,511,3.821,519,3.133,537,3.821,571,2.565,594,3.7,596,4.655,597,1.721,598,2.977,657,3.549,681,3.506,700,1.887,808,5.955,809,3.343,810,6.078,811,5.046,812,5.046,813,5.046,814,6.77,815,6.031,816,3.825,817,5.046,818,5.046,819,3.549,820,5.046,821,5.046,822,3.86,823,6.078,824,3.549,825,3.129,826,3.343,827,3.309,828,8.26,829,3.343,830,5.046,831,5.046,832,6.019,833,3.343,834,3.7,835,5.046,836,5.046,837,3.343,838,5.046,839,3.86,840,3.174,841,5.046,842,3.343,843,5.046,844,5.046,845,3.343,846,5.046,847,5.046,848,3.343,849,3.343,850,2.675,851,5.046,852,3.343,853,5.046,854,3.343,855,5.046,856,5.046,857,3.343,858,5.046,859,3.343,860,3.343,861,3.343,862,3.343,863,3.343,864,3.343,865,3.343,866,3.343,867,3.343,868,3.298,869,3.343,870,3.343,871,3.343,872,2.103,873,5.202,874,3.463,875,6.078,876,5.046,877,5.046,878,3.343,879,1.772,880,3.343,881,3.343,882,6.77,883,7.267,884,6.078,885,7.933,886,3.343,887,3.343,888,3.343,889,3.343,890,2.977,891,3.343,892,3.343,893,3.343,894,3.343]],["title/classes/Config.html",[149,0.17,353,1.488]],["body/classes/Config.html",[2,0.316,3,0.326,9,0.207,11,0.697,25,0.007,37,0.63,38,1.136,43,0.991,44,1.613,46,1.936,49,1.321,60,0.783,61,3.618,69,0.759,70,1.834,71,0.91,80,2.14,81,1.159,91,0.891,92,0.656,93,0.81,108,2.901,118,0.769,148,0.197,149,0.283,320,0.005,321,0.005,353,2.949,380,3.573,454,2.635,570,2.832,587,3.642,602,3.304,685,3.565,785,4.481,895,6.12,896,4.827,897,6.12,898,6.12,899,6.12,900,6.836,901,7.675,902,4.283,903,7.675,904,6.836,905,7.675,906,6.284,907,4.195,908,4.014,909,3.151,910,6.12,911,6.12,912,6.12,913,7.675,914,8.384,915,6.12]],["title/components/CrudComponent.html",[0,0.202,201,1.294]],["body/components/CrudComponent.html",[0,0.274,1,0.749,2,0.151,3,0.155,4,1.455,6,0.789,7,0.762,8,1.059,9,0.098,11,0.333,16,1.128,20,0.736,21,2.405,23,0.654,25,0.007,30,1.279,31,2.157,32,1.906,35,1.108,37,0.3,38,0.649,40,1.454,43,0.736,44,1.694,46,1.826,48,2.267,49,1.174,52,2.847,60,0.582,63,1.527,65,0.304,69,0.744,70,1.337,71,1.062,76,0.831,80,1.053,81,1.146,82,1.09,89,1.147,91,0.995,92,0.935,93,0.793,108,3.162,110,2.638,113,1.564,115,0.736,117,1.965,118,0.792,136,1.318,137,0.258,139,1.965,147,0.591,148,0.094,149,0.098,164,1.649,177,0.543,178,1.484,179,0.936,180,1.228,181,1.675,182,0.789,183,0.789,184,0.724,185,1.51,186,0.724,187,0.762,188,0.665,189,0.749,190,0.736,191,2.043,192,0.749,193,1.251,194,1.704,195,0.762,196,1.63,197,2.113,198,0.762,199,0.762,200,0.789,201,1.858,202,1.229,203,0.762,204,0.789,205,0.749,206,0.789,207,0.736,208,0.736,209,1.68,210,1.51,211,0.736,212,0.749,213,0.749,214,0.724,215,0.789,216,0.762,217,1.847,218,1.784,219,0.749,220,0.762,221,1.784,222,0.762,223,0.749,224,0.789,225,0.749,226,0.762,227,0.789,228,0.749,229,0.789,230,0.749,231,0.724,232,1.723,233,0.789,234,0.749,235,0.789,236,0.736,237,0.749,238,0.789,239,0.749,240,0.789,241,1.611,242,0.789,243,0.749,244,1.316,245,0.789,246,0.736,247,0.789,248,0.749,249,0.789,250,0.724,251,0.789,252,0.749,253,0.724,254,0.749,255,0.699,256,0.789,257,0.749,258,0.789,259,0.789,260,0.749,261,0.789,262,0.749,263,0.789,264,0.724,265,0.789,266,0.736,267,0.749,268,0.789,269,0.749,270,0.762,271,0.789,272,0.736,273,0.749,274,1.722,275,0.749,276,0.762,277,0.654,278,0.762,279,0.762,280,0.749,281,0.762,282,0.762,283,0.762,284,0.789,285,0.736,286,0.749,287,0.789,288,0.749,289,0.762,290,0.749,291,0.789,292,0.749,293,0.789,294,0.762,295,0.699,296,0.749,297,0.789,298,0.749,299,0.789,300,0.749,301,0.789,302,0.749,303,0.711,304,0.724,305,0.789,306,0.736,307,0.789,308,0.736,309,0.789,310,0.736,311,0.789,312,0.736,313,0.789,314,0.736,315,0.775,316,0.789,317,0.736,318,0.775,319,0.789,320,0.003,321,0.003,330,1.527,343,1.201,345,0.985,346,3.447,349,0.831,353,1.649,357,0.571,358,3.053,362,1.273,411,1.871,412,1.595,413,2.596,416,1.318,427,2.249,433,4.3,434,2.092,447,1.391,448,2.491,452,1.792,474,1.704,489,4.132,496,3.191,531,2.104,536,1.704,540,3.479,544,5.539,547,1.704,549,2.108,584,1.059,590,3.801,591,3.073,595,1.704,601,1.038,602,3.166,623,3.817,625,3.514,681,2.335,700,1.647,705,1.422,726,1.836,896,2.341,916,2.919,917,3.479,918,2.411,919,3.723,920,3.479,921,4.547,922,3.053,923,3.514,924,3.053,925,4.05,926,6.307,927,5.574,928,4.05,929,4.547,930,4.547,931,4.547,932,3.514,933,4.576,934,3.663,935,3.682,936,3.153,937,2.027,938,2.434,939,4.547,940,3.991,941,1.587,942,5.618,943,2.655,944,2.919,945,2.919,946,2.919,947,2.681,948,3.957,949,2.919,950,2.919,951,4.05,952,2.919,953,2.655,954,4.547,955,2.919,956,2.982,957,4.547,958,2.919,959,3.157,960,2.655,961,2.919,962,4.547,963,2.919,964,4.547,965,2.919,966,2.104,967,2.993,968,4.547,969,2.919,970,3.284,971,2.919,972,2.919,973,2.919,974,1.547,975,2.6,976,2.6,977,2.39,978,1.914,979,2.003,980,2.919,981,2.919,982,2.919,983,2.108,984,2.919,985,4.976,986,2.6,987,2.233,988,2.6,989,2.919,990,2.6,991,2.919,992,2.919,993,2.919,994,2.919,995,2.919,996,2.919,997,2.919,998,2.919,999,2.919,1000,2.6,1001,2.6,1002,2.919,1003,2.919,1004,2.752,1005,2.158,1006,4.034,1007,2.919,1008,1.704,1009,3.121,1010,2.919,1011,1.836,1012,2.003,1013,2.003,1014,2.919,1015,4.05]],["title/interfaces/CrudConfig.html",[337,1.436,940,2.944]],["body/interfaces/CrudConfig.html",[0,0.323,2,0.2,3,0.207,9,0.224,11,0.442,19,2.129,25,0.007,30,1.7,32,1.083,37,0.399,38,0.655,43,0.912,49,1.219,58,4.067,60,1.091,61,2.318,65,0.234,69,0.835,70,1.824,71,0.668,75,2.757,79,1.774,93,0.963,118,1.013,139,1.208,148,0.125,164,1.662,190,1.421,193,1.63,196,1.506,209,1.763,232,1.8,241,1.715,264,1.805,277,1.946,303,1.966,320,0.004,321,0.004,337,1.604,345,2.145,348,3.516,349,1.105,354,3.394,427,3.247,433,5.073,441,4.067,444,3.048,460,3.694,494,2.425,496,3.555,508,3.859,513,2.673,518,2.543,526,3.694,557,4.037,581,2.673,587,2.673,590,3.732,675,6.17,681,2.863,682,5.017,738,4.406,740,4.015,741,4.35,785,3.289,816,2.819,850,2.986,909,2.9,917,4.309,924,3.079,940,4.25,941,2.54,966,4.257,1005,2.673,1016,3.878,1017,2.543,1018,5.633,1019,7.279,1020,7.279,1021,7.279,1022,7.279,1023,5.824,1024,7.279,1025,7.279,1026,6.484,1027,7.279,1028,7.279,1029,5.852,1030,7.279,1031,7.279,1032,7.279,1033,7.279,1034,6.484,1035,7.279,1036,7.279,1037,4.309,1038,4.882,1039,4.612,1040,5.633,1041,4.997,1042,2.673,1043,5.633,1044,4.612,1045,3.409,1046,4.309,1047,3.179,1048,5.633,1049,4.309,1050,3.289,1051,4.612,1052,2.9,1053,6.484,1054,4.997,1055,4.774,1056,7.279,1057,3.866,1058,3.289,1059,5.017,1060,3.079,1061,3.409,1062,6.484,1063,3.289,1064,4.612,1065,5.633,1066,3.289,1067,5.633,1068,3.878]],["title/injectables/CrudService.html",[436,1.272,1069,3.052]],["body/injectables/CrudService.html",[0,0.23,2,0.205,3,0.212,9,0.134,11,0.453,25,0.007,30,1.301,37,0.409,38,0.946,43,1.57,44,1.294,46,1.447,49,0.962,60,0.999,65,0.276,66,2.871,67,2.953,69,0.785,70,1.794,71,1.037,75,2.907,76,1.487,80,2.19,81,1.238,84,2.502,89,2.331,91,1.25,92,0.921,93,0.829,108,3.244,117,1.239,118,0.499,119,2.174,121,2.903,131,2.361,137,0.351,147,1.161,148,0.128,149,0.134,164,1.174,209,1.844,274,1.622,277,1.958,320,0.004,321,0.005,338,3.349,341,1.938,345,0.861,357,0.778,404,3.608,411,3.031,412,2.174,413,3.031,416,1.795,433,3.608,436,1.97,446,4.447,454,1.712,492,3.792,494,3.912,498,2.842,536,3.349,537,4.407,570,1.84,586,3.608,597,2.047,601,1.415,626,2.654,685,3.611,726,4.233,740,2.407,741,2.608,816,3.368,850,2.108,879,3.567,902,3.588,924,3.135,947,2.727,1042,2.722,1050,4.559,1054,2.73,1055,2.608,1069,3.472,1070,3.977,1071,3.762,1072,4.142,1073,3.472,1074,2.795,1075,3.937,1076,5.305,1077,5.11,1078,5.11,1079,5.11,1080,3.977,1081,4.697,1082,3.977,1083,3.238,1084,4.697,1085,3.977,1086,3.472,1087,5.736,1088,3.977,1089,5.736,1090,5.896,1091,3.977,1092,4.697,1093,3.977,1094,4.142,1095,4.413,1096,5.736,1097,3.977,1098,3.472,1099,5.11,1100,5.736,1101,6.729,1102,3.977,1103,3.977,1104,2.608,1105,2.73,1106,5.736,1107,3.977,1108,3.977,1109,3.977,1110,3.256,1111,3.977,1112,2.872,1113,3.256,1114,3.977,1115,3.928,1116,3.977,1117,3.977,1118,3.977,1119,3.256,1120,3.977,1121,3.543,1122,3.977,1123,3.977,1124,3.977,1125,6.729,1126,5.509,1127,3.256,1128,3.256,1129,3.256,1130,3.977,1131,5.736,1132,4.697,1133,2.322,1134,3.977,1135,5.148,1136,6.729,1137,3.256,1138,3.256,1139,3.256,1140,3.256,1141,5.509,1142,2.322,1143,3.256,1144,3.977,1145,3.543,1146,3.977]],["title/modules/DataModule.html",[322,1.092,1147,3.461]],["body/modules/DataModule.html",[2,0.217,3,0.224,9,0.142,24,2.447,25,0.007,49,0.602,63,1.413,65,0.345,71,0.499,81,0.764,91,0.613,92,0.451,93,0.406,108,2.258,137,0.372,138,1.695,139,1.311,146,2.624,147,0.852,148,0.257,149,0.142,177,0.782,186,2.161,196,1.335,201,2.356,207,2.198,208,2.198,209,1.736,216,2.397,218,2.397,219,2.393,220,2.434,221,2.397,222,2.434,308,2.316,310,2.316,320,0.004,321,0.004,322,1.293,324,1.732,328,2.514,329,1.527,330,1.413,332,3.371,333,2.084,357,0.823,398,3.22,547,2.457,595,2.457,615,6.631,621,5.361,627,2.835,628,1.9,629,5.312,631,4.1,633,3.22,647,5.691,649,3.757,655,4.314,705,2.91,782,4.314,907,2.3,935,4.841,975,3.749,977,4.891,978,3.917,979,2.889,1069,5.018,1147,6.898,1148,3.749,1149,3.749,1150,3.749,1151,3.749,1152,3.749,1153,6.631,1154,6.303,1155,6.022,1156,6.343,1157,5.018,1158,4.209,1159,3.749,1160,5.973,1161,4.209,1162,5.321,1163,5.321,1164,3.039,1165,3.039,1166,4.209,1167,4.209,1168,3.749,1169,4.209,1170,3.615,1171,3.917,1172,3.22,1173,3.749,1174,3.039,1175,5.973,1176,4.57,1177,4.209,1178,4.209,1179,3.039,1180,3.749,1181,4.209,1182,3.446,1183,4.209,1184,4.209]],["title/components/DatetimeComponent.html",[0,0.202,205,1.294]],["body/components/DatetimeComponent.html",[0,0.332,1,0.978,2,0.197,3,0.203,4,0.811,6,1.03,7,0.995,8,1.383,9,0.129,11,0.434,16,1.988,17,5.443,20,0.961,23,0.854,24,2.131,25,0.007,26,3.707,27,3.139,28,3.707,29,3.139,30,1.275,31,2.179,32,1.929,35,1.356,37,0.392,38,0.646,40,1.691,41,4.542,43,1.169,44,1.263,45,2.71,49,0.795,53,4.735,54,5.043,57,3.367,60,0.712,65,0.255,69,0.693,70,1.285,71,1.042,76,1.017,80,1.289,81,0.841,82,1.574,86,3.499,89,1.821,91,0.81,92,0.928,93,0.537,94,3.499,104,3.499,108,2.102,110,1.471,113,1.379,115,0.961,117,1.733,118,0.964,119,3.04,127,4.954,136,1.721,137,0.337,138,1.535,148,0.123,149,0.129,173,2.398,177,0.709,178,1.477,179,1.145,180,1.604,181,1.918,182,1.03,183,1.03,184,0.945,185,1.775,186,0.945,187,0.995,188,0.868,189,0.978,190,0.961,191,2.237,192,0.978,193,1.471,194,1.951,195,0.995,196,1.416,197,2.293,198,0.995,199,2.004,200,1.03,201,0.978,202,1.503,203,0.995,204,1.03,205,2.057,206,1.03,207,0.961,208,0.961,209,1.565,210,1.775,211,0.961,212,0.978,213,0.978,214,0.945,215,1.03,216,0.995,217,2.075,218,0.995,219,0.978,220,0.995,221,0.995,222,0.995,223,0.978,224,1.03,225,0.978,226,0.995,227,1.03,228,0.978,229,1.03,230,0.978,231,0.945,232,1.413,233,1.03,234,0.978,235,1.03,236,0.961,237,0.978,238,1.03,239,0.978,240,1.03,241,0.898,242,1.03,243,0.978,244,1.547,245,1.03,246,0.961,247,1.03,248,0.978,249,1.03,250,0.945,251,1.03,252,0.978,253,0.945,254,0.978,255,0.913,256,1.03,257,0.978,258,1.03,259,1.03,260,0.978,261,1.03,262,0.978,263,1.03,264,0.945,265,1.03,266,0.961,267,0.978,268,1.03,269,0.978,270,0.995,271,1.03,272,0.961,273,0.978,274,1.868,275,0.978,276,0.995,277,0.854,278,0.995,279,0.995,280,0.978,281,0.995,282,0.995,283,0.995,284,1.03,285,0.961,286,0.978,287,1.03,288,0.978,289,0.995,290,0.978,291,1.03,292,0.978,293,1.03,294,0.995,295,0.913,296,0.978,297,1.03,298,0.978,299,1.03,300,0.978,301,1.03,302,0.978,303,0.929,304,0.945,305,1.03,306,0.961,307,1.03,308,0.961,309,1.03,310,0.961,311,1.03,312,0.961,313,1.03,314,0.961,315,1.012,316,1.03,317,0.961,318,1.012,319,1.03,320,0.004,321,0.004,345,1.204,400,2.949,557,3.843,681,2.06,781,4.852,802,5.261,803,2.864,1008,3.248,1185,3.812,1186,5.214,1187,4.955,1188,5.562,1189,7.22,1190,6.568,1191,2.845,1192,3.367,1193,4.955,1194,3.812,1195,3.812,1196,3.812,1197,5.562,1198,3.812,1199,3.812,1200,3.812,1201,3.812,1202,5.562,1203,3.812,1204,3.812,1205,4.017,1206,3.812,1207,4.554,1208,5.562,1209,3.499,1210,2.753,1211,2.151,1212,3.812]],["title/pipes/DatetimePipe.html",[779,3.857,1213,2.596]],["body/pipes/DatetimePipe.html",[2,0.324,3,0.334,9,0.212,11,0.715,16,1.557,23,1.406,25,0.007,30,1.109,38,0.906,43,1.543,48,2.572,49,0.898,60,0.998,65,0.299,69,0.674,70,1.925,71,0.744,77,2.668,80,1.806,81,1.135,91,0.914,92,0.91,93,0.606,118,0.788,131,3.209,137,0.555,147,1.27,148,0.202,149,0.212,320,0.005,321,0.005,436,1.583,454,2.703,492,4.014,602,3.073,681,2.887,779,5.965,802,4.952,827,5.113,937,2.278,938,3.009,1186,5.631,1209,4.905,1210,4.533,1213,4.366,1214,6.278,1215,5.631,1216,5.352,1217,4.552,1218,6.278,1219,6.979,1220,8.125,1221,6.278,1222,7.797,1223,5.631,1224,3.949,1225,6.278,1226,6.278,1227,5.592,1228,6.278,1229,6.278,1230,6.278,1231,6.278,1232,6.278,1233,6.278]],["title/interfaces/Day.html",[337,1.436,1207,4.128]],["body/interfaces/Day.html",[0,0.207,2,0.178,3,0.184,9,0.117,11,0.393,16,0.856,21,2.226,22,2.454,25,0.007,30,1.366,31,0.748,32,0.664,35,0.842,37,0.884,38,0.601,39,1.703,40,1.652,44,1.324,52,1.559,61,2.128,65,0.26,69,0.796,70,1.763,76,1.347,79,1.677,80,1.792,81,1.172,82,1.649,89,2.023,93,0.665,124,2.016,126,2.777,137,0.305,147,1.491,148,0.166,149,0.271,164,1.526,167,3.285,232,1.613,262,0.886,277,1.158,320,0.003,321,0.003,337,1.96,345,1.933,357,0.675,362,1.447,378,4.165,434,1.896,436,0.871,444,2.785,448,2.428,490,4.065,494,2.226,511,2.918,532,2.827,581,1.639,596,4.028,597,1.778,681,1.915,685,1.995,781,3.751,787,6.904,799,3.076,800,5.521,802,5.212,804,7.952,840,2.172,868,3.019,909,2.662,918,1.83,937,1.253,938,1.995,941,1.804,947,1.279,960,2.016,967,3.266,1037,2.642,1142,2.016,1164,5.791,1187,4.605,1191,2.037,1192,2.09,1193,7.766,1207,7.995,1209,5.187,1210,2.493,1224,2.172,1234,3.453,1235,7.37,1236,3.907,1237,7.37,1238,5.791,1239,8.432,1240,3.955,1241,3.734,1242,8.83,1243,6.135,1244,2.827,1245,2.37,1246,3.453,1247,3.076,1248,3.453,1249,5.635,1250,3.907,1251,5.17,1252,2.493,1253,3.453,1254,5.17,1255,3.453,1256,7.735,1257,1.39,1258,3.453,1259,3.453,1260,3.453,1261,2.827,1262,3.453,1263,2.016,1264,3.453,1265,3.453,1266,3.453,1267,3.453,1268,3.453,1269,3.453,1270,6.882,1271,3.453,1272,3.453,1273,3.453,1274,3.453,1275,3.453,1276,3.453,1277,3.453,1278,3.453,1279,3.453,1280,3.453,1281,7.735,1282,5.17,1283,6.198,1284,5.17,1285,6.198,1286,5.17,1287,3.453,1288,3.453,1289,3.453,1290,3.453,1291,3.453,1292,7.37,1293,3.453,1294,3.453,1295,3.453,1296,3.453,1297,3.453,1298,6.882,1299,3.453,1300,5.17,1301,5.17,1302,5.075,1303,3.453,1304,3.453,1305,3.453,1306,3.453,1307,3.453,1308,5.17,1309,3.453,1310,3.453,1311,5.17,1312,3.453,1313,3.453,1314,3.453,1315,3.453,1316,3.453,1317,3.453,1318,3.453,1319,5.17,1320,3.453,1321,3.453,1322,3.453,1323,3.453,1324,3.453,1325,3.453,1326,3.453,1327,3.453,1328,3.453,1329,3.453,1330,6.198,1331,3.453,1332,6.198,1333,3.453,1334,3.453,1335,3.453,1336,3.453,1337,5.17,1338,3.453,1339,3.453,1340,3.453,1341,3.453,1342,3.453,1343,3.453,1344,2.264,1345,3.453,1346,3.453,1347,3.453,1348,5.17,1349,3.453,1350,3.453,1351,3.453,1352,3.453,1353,3.453,1354,3.453,1355,3.453,1356,3.453,1357,3.453,1358,3.453,1359,3.453,1360,3.453,1361,3.453,1362,3.453,1363,3.453,1364,3.453,1365,2.642,1366,3.453,1367,3.453,1368,3.453,1369,3.453]],["title/components/DefaultEntryInputComponent.html",[0,0.202,207,1.272]],["body/components/DefaultEntryInputComponent.html",[0,0.344,1,1.103,2,0.222,3,0.229,4,1.712,6,1.161,7,1.122,9,0.145,11,0.49,19,2.291,20,2.21,23,0.962,25,0.007,31,2.187,32,1.936,35,1.478,37,0.442,38,0.704,40,1.713,44,1.736,45,3.716,46,2.21,47,3.285,48,2.42,60,0.776,65,0.248,69,0.757,71,0.989,91,0.626,92,0.94,93,0.415,113,1.503,115,1.084,117,1.889,118,1.048,127,3.539,128,3.818,129,3.287,130,3.287,131,1.768,132,3.669,133,3.287,134,3.287,135,2.509,137,0.38,139,1.339,148,0.138,149,0.145,177,0.799,178,1.61,179,1.248,181,2.026,182,1.161,183,1.161,184,1.065,185,1.898,186,1.065,187,1.122,188,0.979,189,1.103,190,1.084,191,2.318,192,1.103,193,1.573,194,2.062,195,1.122,196,1.474,197,2.368,198,1.122,199,1.122,200,1.161,201,1.103,202,1.638,203,1.122,204,1.161,205,1.103,206,1.161,207,1.924,208,1.084,209,1.743,210,1.898,211,1.084,212,1.103,213,1.103,214,1.065,215,1.161,216,1.122,217,2.174,218,1.122,219,1.103,220,1.122,221,1.122,222,1.122,223,1.103,224,1.161,225,1.103,226,1.122,227,1.161,228,1.103,229,1.161,230,1.103,231,1.065,232,1.186,233,1.161,234,1.103,235,1.161,236,1.084,237,1.103,238,1.161,239,1.103,240,1.161,241,1.012,242,1.161,243,1.103,244,1.655,245,1.161,246,1.084,247,1.161,248,1.103,249,1.161,250,1.065,251,1.161,252,1.103,253,1.065,254,1.103,255,1.03,256,1.161,257,1.103,258,1.161,259,1.161,260,1.103,261,1.161,262,1.103,263,1.161,264,1.065,265,1.161,266,1.084,267,1.103,268,1.161,269,1.103,270,1.122,271,1.161,272,1.084,273,1.103,274,1.929,275,1.103,276,1.122,277,0.962,278,1.122,279,1.122,280,1.103,281,1.122,282,1.122,283,1.122,284,1.161,285,1.084,286,1.103,287,1.161,288,1.103,289,1.122,290,1.103,291,1.161,292,1.103,293,1.161,294,1.122,295,1.03,296,1.103,297,1.161,298,1.103,299,1.161,300,1.103,301,1.161,302,1.103,303,1.047,304,1.065,305,1.161,306,1.084,307,1.161,308,1.084,309,1.161,310,1.084,311,1.161,312,1.084,313,1.161,314,1.084,315,1.141,316,1.161,317,1.084,318,1.141,319,1.161,320,0.004,321,0.004,357,0.841,397,5.373,399,3.287,400,3.213,407,3.813,410,4.637,411,3.311,412,2.348,413,3.435,416,1.94,418,1.988,419,3.103,422,3.518,423,4.963,424,3.669,1171,4.606,1240,4.637,1370,4.297,1371,4.297]],["title/components/DefaultEntryOutputComponent.html",[0,0.202,208,1.272]],["body/components/DefaultEntryOutputComponent.html",[0,0.36,1,1.154,2,0.232,3,0.24,4,1.532,6,1.215,7,1.174,9,0.152,11,0.512,20,1.134,23,1.007,25,0.007,31,2.191,32,1.941,35,1.525,37,0.463,38,0.727,40,0.865,46,2.299,48,2.642,65,0.221,69,0.672,71,0.742,92,0.932,113,1.552,115,1.134,118,1.113,137,0.397,148,0.145,149,0.152,177,0.836,178,1.662,179,1.288,181,2.067,182,1.215,183,1.215,184,1.115,185,1.945,186,1.115,187,1.174,188,1.024,189,1.154,190,1.134,191,2.348,192,1.154,193,1.612,194,2.103,195,1.174,196,1.496,197,2.395,198,1.174,199,1.174,200,1.215,201,1.154,202,1.691,203,1.174,204,1.215,205,1.154,206,1.215,207,1.134,208,1.963,209,1.781,210,1.945,211,1.134,212,1.154,213,1.154,214,1.115,215,1.215,216,1.174,217,2.211,218,1.174,219,1.154,220,1.174,221,1.174,222,1.174,223,1.154,224,1.215,225,1.154,226,1.174,227,1.215,228,1.154,229,1.215,230,1.154,231,1.115,232,1.224,233,1.215,234,1.154,235,1.215,236,1.134,237,1.154,238,1.215,239,1.154,240,1.215,241,1.059,242,1.215,243,1.154,244,1.696,245,1.215,246,1.134,247,1.215,248,1.154,249,1.215,250,1.115,251,1.215,252,1.154,253,1.115,254,1.154,255,1.077,256,1.215,257,1.154,258,1.215,259,1.215,260,1.154,261,1.215,262,1.154,263,1.215,264,1.115,265,1.215,266,1.134,267,1.154,268,1.215,269,1.154,270,1.174,271,1.215,272,1.134,273,1.154,274,1.951,275,1.154,276,1.174,277,1.007,278,1.174,279,1.174,280,1.154,281,1.174,282,1.174,283,1.174,284,1.215,285,1.134,286,1.154,287,1.215,288,1.154,289,1.174,290,1.154,291,1.215,292,1.154,293,1.215,294,1.174,295,1.077,296,1.154,297,1.215,298,1.154,299,1.215,300,1.154,301,1.215,302,1.154,303,1.096,304,1.115,305,1.215,306,1.134,307,1.215,308,1.134,309,1.215,310,1.134,311,1.215,312,1.134,313,1.215,314,1.134,315,1.194,316,1.215,317,1.134,318,1.194,319,1.215,320,0.004,321,0.004,349,1.281,397,5.506,400,3.317,407,3.936,422,3.681,423,5.123,424,3.787,434,2.788,706,3.936,1171,4.72,1191,2.466,1240,4.787,1372,4.005,1373,5.574,1374,4.005,1375,4.005,1376,5.574]],["title/components/DefaultInputComponent.html",[0,0.202,20,1.272]],["body/components/DefaultInputComponent.html",[0,0.345,1,1.123,2,0.226,3,0.233,4,1.51,6,1.183,7,1.143,9,0.148,11,0.499,20,1.94,23,0.98,25,0.007,31,2.188,32,1.938,35,1.497,37,0.451,38,0.714,40,1.558,44,1.778,45,4.091,46,2.332,47,3.616,48,2.628,60,0.984,65,0.25,69,0.725,71,0.912,92,0.925,113,1.523,115,1.104,117,2.397,118,0.966,127,4.49,131,2.527,132,4.655,135,3.586,137,0.387,138,1.762,148,0.141,149,0.148,177,0.814,178,1.631,179,1.264,181,2.043,182,1.183,183,1.183,184,1.085,185,1.917,186,1.085,187,1.143,188,0.997,189,1.123,190,1.104,191,2.331,192,1.123,193,1.589,194,2.079,195,1.143,196,1.483,197,2.379,198,1.143,199,1.143,200,1.183,201,1.123,202,1.66,203,1.143,204,1.183,205,1.123,206,1.183,207,1.104,208,1.104,209,1.631,210,1.917,211,1.104,212,1.123,213,1.123,214,1.085,215,1.183,216,1.143,217,2.189,218,1.143,219,1.123,220,1.143,221,1.143,222,1.143,223,1.123,224,1.183,225,1.123,226,1.143,227,1.183,228,1.123,229,1.183,230,1.123,231,1.085,232,1.201,233,1.183,234,1.123,235,1.183,236,1.104,237,1.123,238,1.183,239,1.123,240,1.183,241,1.031,242,1.183,243,1.123,244,1.672,245,1.183,246,1.104,247,1.183,248,1.123,249,1.183,250,1.085,251,1.183,252,1.123,253,1.085,254,1.123,255,1.049,256,1.183,257,1.123,258,1.183,259,1.183,260,1.123,261,1.183,262,1.123,263,1.183,264,1.085,265,1.183,266,1.104,267,1.123,268,1.183,269,1.123,270,1.143,271,1.183,272,1.104,273,1.123,274,1.938,275,1.123,276,1.143,277,0.98,278,1.143,279,1.143,280,1.123,281,1.143,282,1.143,283,1.143,284,1.183,285,1.104,286,1.123,287,1.183,288,1.123,289,1.143,290,1.123,291,1.183,292,1.123,293,1.183,294,1.143,295,1.049,296,1.123,297,1.183,298,1.123,299,1.183,300,1.123,301,1.183,302,1.123,303,1.067,304,1.085,305,1.183,306,1.104,307,1.183,308,1.104,309,1.183,310,1.104,311,1.183,312,1.104,313,1.183,314,1.104,315,1.163,316,1.183,317,1.104,318,1.163,319,1.183,320,0.004,321,0.004,349,1.247,399,3.349,400,3.255,410,4.698,414,3.899,1377,7.215,1378,6.632,1379,5.47,1380,4.377,1381,4.377,1382,4.377,1383,6.141,1384,6.141]],["title/components/DefaultOutputComponent.html",[0,0.202,211,1.272]],["body/components/DefaultOutputComponent.html",[0,0.327,1,1.145,2,0.23,3,0.238,4,1.526,6,1.206,7,1.165,9,0.151,11,0.508,20,1.125,23,0.999,25,0.007,31,2.19,32,1.94,35,1.517,37,0.459,38,0.723,40,1.378,43,1.008,46,2.34,48,2.69,65,0.22,69,0.538,71,0.738,92,0.93,113,1.543,115,1.125,118,1.061,135,3.633,137,0.394,148,0.144,149,0.151,177,0.829,178,1.653,179,1.281,181,2.06,182,1.206,183,1.206,184,1.106,185,1.937,186,1.106,187,1.165,188,1.016,189,1.145,190,1.125,191,2.343,192,1.145,193,1.605,194,2.096,195,1.165,196,1.492,197,2.39,198,1.165,199,1.165,200,1.206,201,1.145,202,1.682,203,1.165,204,1.206,205,1.145,206,1.206,207,1.125,208,1.125,209,1.639,210,1.937,211,1.956,212,1.145,213,1.145,214,1.106,215,1.206,216,1.165,217,2.204,218,1.165,219,1.145,220,1.165,221,1.165,222,1.165,223,1.145,224,1.206,225,1.145,226,1.165,227,1.206,228,1.145,229,1.206,230,1.145,231,1.106,232,1.217,233,1.206,234,1.145,235,1.206,236,1.125,237,1.145,238,1.206,239,1.145,240,1.206,241,1.051,242,1.206,243,1.145,244,1.689,245,1.206,246,1.125,247,1.206,248,1.145,249,1.206,250,1.106,251,1.206,252,1.145,253,1.106,254,1.145,255,1.069,256,1.206,257,1.145,258,1.206,259,1.206,260,1.145,261,1.206,262,1.145,263,1.206,264,1.106,265,1.206,266,1.125,267,1.145,268,1.206,269,1.145,270,1.165,271,1.206,272,1.125,273,1.145,274,1.947,275,1.145,276,1.165,277,0.999,278,1.165,279,1.165,280,1.145,281,1.165,282,1.165,283,1.165,284,1.206,285,1.125,286,1.145,287,1.206,288,1.145,289,1.165,290,1.145,291,1.206,292,1.145,293,1.206,294,1.165,295,1.069,296,1.145,297,1.206,298,1.145,299,1.206,300,1.145,301,1.206,302,1.145,303,1.087,304,1.106,305,1.206,306,1.125,307,1.206,308,1.125,309,1.206,310,1.125,311,1.206,312,1.125,313,1.206,314,1.125,315,1.185,316,1.206,317,1.125,318,1.185,319,1.206,320,0.004,321,0.004,349,1.271,354,2.619,400,3.299,434,2.373,706,3.915,1191,2.452,1372,3.974,1373,5.543,1374,3.974,1375,3.974,1376,8.543,1377,6.384,1385,5.868,1386,6.223,1387,4.461,1388,4.461,1389,7.755,1390,4.272]],["title/directives/DropzoneDirective.html",[179,1.038,306,1.272]],["body/directives/DropzoneDirective.html",[2,0.288,3,0.298,9,0.31,11,0.637,23,1.253,25,0.007,30,1.556,31,1.569,37,0.576,40,1.635,43,0.906,44,1.076,65,0.197,69,0.694,71,1.089,76,1.022,81,1.088,91,0.814,92,0.6,93,0.54,109,3.839,113,2.108,118,0.702,137,0.494,148,0.18,149,0.271,179,1.813,306,1.828,320,0.005,321,0.005,345,1.74,357,1.094,362,2.606,434,2.602,447,2.811,448,2.801,512,5.544,570,3.353,572,4.386,581,4.624,601,1.99,947,3.149,1165,6.854,1302,6.582,1391,5.594,1392,7.247,1393,8.809,1394,6.582,1395,5.805,1396,8.039,1397,5.518,1398,8.503,1399,9.025,1400,4.58,1401,5.594,1402,5.934,1403,5.544,1404,7.247,1405,5.594,1406,5.594,1407,5.594,1408,7.247,1409,3.731,1410,5.272,1411,5.594,1412,5.594,1413,5.269,1414,5.594,1415,5.594,1416,5.594,1417,5.594,1418,4.982,1419,5.594,1420,5.594,1421,8.039,1422,6.582,1423,7.846,1424,5.594,1425,5.594,1426,5.594,1427,5.594,1428,5.594,1429,5.594,1430,5.594]],["title/components/DynamicRackComponent.html",[0,0.202,212,1.294]],["body/components/DynamicRackComponent.html",[0,0.33,1,1.173,2,0.236,3,0.244,4,0.973,6,1.236,7,1.194,9,0.154,11,0.521,20,1.153,23,1.024,24,1.868,25,0.007,31,2.191,32,1.943,35,1.543,40,0.879,46,1.597,60,1.09,65,0.223,69,0.395,71,0.542,75,2.047,77,2.166,91,0.666,92,0.954,93,0.442,113,1.57,115,1.153,117,1.973,118,0.795,137,0.404,148,0.147,149,0.154,177,0.85,178,1.681,179,1.613,181,2.082,182,1.236,183,1.236,184,1.134,185,1.962,186,1.134,187,1.194,188,1.041,189,1.173,190,1.153,191,2.359,192,1.173,193,1.626,194,2.118,195,1.194,196,1.571,197,2.404,198,1.194,199,1.194,200,1.236,201,1.173,202,1.711,203,1.194,204,1.236,205,1.173,206,1.236,207,1.153,208,1.153,209,1.651,210,1.962,211,1.153,212,2.011,213,1.173,214,1.943,215,1.236,216,1.194,217,2.224,218,1.194,219,1.173,220,1.194,221,1.194,222,1.194,223,1.173,224,1.236,225,1.173,226,1.194,227,1.236,228,1.173,229,1.236,230,1.173,231,1.134,232,1.238,233,1.236,234,1.173,235,1.236,236,1.153,237,1.173,238,1.236,239,1.173,240,1.236,241,1.077,242,1.236,243,1.173,244,1.711,245,1.236,246,1.153,247,1.236,248,1.173,249,1.236,250,1.134,251,1.236,252,1.173,253,1.134,254,1.173,255,1.096,256,1.236,257,1.173,258,1.236,259,1.236,260,1.173,261,1.236,262,1.173,263,1.236,264,1.134,265,1.236,266,1.153,267,1.173,268,1.236,269,1.173,270,1.194,271,1.236,272,1.153,273,1.173,274,1.959,275,1.173,276,1.194,277,1.024,278,1.194,279,1.194,280,1.173,281,1.194,282,1.194,283,1.194,284,1.236,285,1.153,286,1.173,287,1.236,288,1.173,289,1.194,290,1.173,291,1.236,292,1.173,293,1.236,294,1.194,295,1.096,296,1.173,297,1.236,298,1.173,299,1.236,300,1.173,301,1.236,302,1.173,303,1.115,304,1.134,305,1.236,306,1.153,307,1.236,308,1.153,309,1.236,310,1.153,311,1.236,312,1.153,313,1.236,314,1.153,315,1.214,316,1.236,317,1.153,318,1.214,319,1.236,320,0.004,321,0.004,357,1.421,601,1.627,941,1.595,967,3.005,1191,2.495,1250,3.356,1431,5.639,1432,5.639,1433,4.572,1434,5.184,1435,6.331,1436,4.073,1437,6.513,1438,4.572,1439,5.184,1440,5.184,1441,5.639,1442,4.572,1443,4.572,1444,4.572]],["title/components/DynamicSlotComponent.html",[0,0.202,213,1.294]],["body/components/DynamicSlotComponent.html",[0,0.358,1,1.058,2,0.213,3,0.22,4,0.878,6,1.115,7,1.077,9,0.139,11,0.47,20,1.04,23,0.924,24,1.738,25,0.007,31,2.185,32,1.937,35,1.435,37,0.424,38,0.684,40,0.793,43,0.668,44,1.132,46,2.077,48,1.707,49,0.842,60,1.109,65,0.208,69,0.749,71,0.888,75,1.904,77,2.015,79,1.435,80,1.364,81,0.753,91,0.857,92,0.946,93,0.569,110,1.591,113,1.46,115,1.04,117,1.835,118,0.995,126,1.904,136,1.862,137,0.364,147,1.39,148,0.133,149,0.139,177,0.767,178,1.564,179,1.541,181,1.989,182,1.115,183,1.115,184,1.023,185,1.856,186,1.023,187,1.077,188,0.939,189,1.058,190,1.04,191,2.291,192,1.058,193,1.538,194,2.024,195,1.077,196,1.531,197,2.343,198,1.077,199,1.077,200,1.115,201,1.058,202,1.591,203,1.077,204,1.115,205,1.058,206,1.115,207,1.04,208,1.04,209,1.603,210,1.856,211,1.04,212,1.058,213,1.922,214,1.964,215,1.115,216,1.077,217,2.14,218,1.077,219,1.058,220,1.077,221,1.077,222,1.077,223,1.058,224,1.115,225,1.058,226,1.077,227,1.115,228,1.058,229,1.115,230,1.058,231,1.023,232,1.152,233,1.115,234,1.058,235,1.115,236,1.04,237,1.058,238,1.115,239,1.058,240,1.115,241,0.972,242,1.115,243,1.058,244,1.618,245,1.115,246,1.04,247,1.115,248,1.058,249,1.115,250,1.023,251,1.115,252,1.058,253,1.023,254,1.058,255,0.988,256,1.115,257,1.058,258,1.115,259,1.115,260,1.058,261,1.115,262,1.058,263,1.115,264,1.023,265,1.115,266,1.04,267,1.058,268,1.115,269,1.058,270,1.077,271,1.115,272,1.04,273,1.058,274,1.909,275,1.058,276,1.077,277,0.924,278,1.077,279,1.077,280,1.058,281,1.077,282,1.077,283,1.077,284,1.115,285,1.04,286,1.058,287,1.115,288,1.058,289,1.077,290,1.058,291,1.115,292,1.058,293,1.115,294,1.077,295,0.988,296,1.058,297,1.115,298,1.058,299,1.115,300,1.058,301,1.115,302,1.058,303,1.005,304,1.023,305,1.115,306,1.04,307,1.115,308,1.04,309,1.115,310,1.04,311,1.115,312,1.04,313,1.115,314,1.04,315,1.095,316,1.115,317,1.998,318,1.095,319,1.115,320,0.004,321,0.004,340,3.152,357,1.343,418,1.908,427,2.371,685,2.65,941,2.054,967,3.554,1060,3.218,1191,2.32,1250,3.121,1431,7.055,1434,4.821,1436,3.673,1437,6.929,1439,5.622,1440,4.821,1441,5.245,1445,6.059,1446,4.124,1447,5.253,1448,4.821,1449,6.743,1450,4.821,1451,5.888,1452,4.821,1453,4.124,1454,6.485,1455,4.124,1456,4.821,1457,4.821,1458,3.673,1459,4.124,1460,4.124,1461,4.124,1462,4.124,1463,4.124,1464,4.124]],["title/directives/EntriesDirective.html",[179,1.038,308,1.272]],["body/directives/EntriesDirective.html",[0,0.169,2,0.218,3,0.225,4,0.899,8,1.532,9,0.142,11,0.481,16,1.485,22,3.302,23,0.946,25,0.007,30,1.411,31,1.296,32,0.812,37,0.435,38,0.696,40,1.677,43,1.127,44,1.706,48,2.572,49,0.856,50,2.238,51,3.592,60,0.89,65,0.308,66,2.997,69,0.777,70,1.171,71,1.134,80,1.753,81,1.214,82,1.814,91,0.872,92,0.642,93,0.772,108,3.353,118,1.003,121,3.271,126,2.447,137,0.373,139,1.866,147,0.854,148,0.136,149,0.142,164,1.246,179,1.432,180,1.777,196,1.229,209,1.701,241,1.639,308,1.51,320,0.004,321,0.004,343,1.738,345,1.639,353,1.767,357,1.171,362,1.947,411,3.115,412,2.308,413,3.115,416,1.906,425,1.502,427,3.851,432,5.024,436,1.51,441,4.324,452,2.983,456,3.926,470,3.23,473,3.23,474,4.419,479,6.198,496,3.522,519,4.035,540,7.343,570,1.954,584,1.532,591,4.044,600,1.411,602,3.364,874,4.775,922,3.802,936,4.685,937,3.012,938,3.203,983,3.049,1001,3.761,1004,2.556,1090,4.964,1104,2.769,1465,4.222,1466,5.333,1467,6.198,1468,6.742,1469,6.742,1470,6.742,1471,5.987,1472,6.197,1473,5.987,1474,4.222,1475,4.11,1476,5.987,1477,4.222,1478,4.222,1479,4.222,1480,7.569,1481,4.222,1482,4.222,1483,4.902,1484,4.222,1485,4.222,1486,4.222,1487,4.222,1488,4.222,1489,4.222,1490,5.987,1491,4.222,1492,4.222,1493,4.222,1494,4.222,1495,4.222,1496,3.761,1497,4.222,1498,3.761,1499,4.222,1500,6.957,1501,5.987,1502,3.457,1503,4.222,1504,4.222,1505,4.222,1506,3.457,1507,3.761,1508,6.957,1509,3.049,1510,4.222,1511,6.197,1512,7.569,1513,6.957,1514,4.222,1515,4.222,1516,4.222,1517,4.222,1518,4.222,1519,4.222,1520,4.222,1521,4.222]],["title/directives/EntryDirective.html",[179,1.038,310,1.272]],["body/directives/EntryDirective.html",[2,0.256,3,0.264,4,1.802,8,1.799,9,0.167,11,0.565,16,1.659,22,3.594,23,1.11,25,0.007,30,1.181,31,1.448,32,0.953,37,0.51,38,0.777,40,1.744,44,1.678,49,0.957,51,3.848,60,1.141,65,0.299,69,0.809,70,1.586,71,1.126,76,0.906,81,1.116,82,1.188,91,0.722,92,0.532,93,0.479,108,3.37,118,0.84,121,3.438,126,2.163,137,0.438,139,2.085,148,0.16,149,0.167,179,1.669,180,2.086,209,1.855,241,1.784,310,1.687,320,0.004,321,0.004,341,4.25,343,2.04,345,1.448,357,0.97,362,1.387,411,3.337,412,2.709,413,3.337,416,2.238,424,4.907,425,1.763,427,3.977,432,5.468,433,5.325,434,2.481,436,1.687,441,4.831,444,2.528,446,3.656,447,1.517,448,2.671,452,2.636,453,5.959,456,4.387,459,4.058,460,3.25,470,3.792,473,3.792,474,3.906,479,5.477,496,3.731,584,1.799,591,4.25,601,1.763,922,4.139,936,4.923,937,3.166,938,3.366,983,3.579,1000,4.415,1004,3,1090,3.25,1104,3.25,1145,4.415,1466,5.959,1467,6.2,1509,3.579,1511,4.415,1522,4.956,1523,6.2,1524,6.69,1525,4.956,1526,4.956,1527,4.956,1528,4.956,1529,4.956,1530,4.956,1531,4.956,1532,4.956,1533,4.956,1534,4.956,1535,4.956,1536,4.956,1537,6.69,1538,4.956,1539,4.956,1540,4.956,1541,4.956]],["title/components/EntryListPopComponent.html",[0,0.202,219,1.294]],["body/components/EntryListPopComponent.html",[0,0.28,1,0.786,2,0.158,3,0.163,4,0.652,6,1.276,7,0.8,9,0.103,11,0.349,16,1.171,19,1.784,20,0.773,22,2.734,23,0.686,25,0.007,30,1.359,31,2.161,32,1.912,35,1.151,37,0.315,38,0.549,39,1.897,40,1.48,43,0.933,44,1.77,48,1.369,49,0.675,51,3.071,60,0.737,65,0.261,66,2.363,67,2.43,69,0.795,70,1.266,71,1.121,76,0.56,79,1.8,80,0.71,81,1.017,82,1.675,91,1.075,92,0.934,93,0.713,107,2.43,108,2.642,109,4.106,110,1.182,113,1.831,115,0.773,118,0.878,128,4.304,136,1.383,137,0.271,139,0.955,147,0.62,148,0.099,149,0.26,167,2.503,177,0.569,178,1.254,179,0.972,181,1.719,182,0.828,183,0.828,184,0.76,185,1.557,186,0.76,187,0.8,188,0.698,189,0.786,190,0.773,191,2.08,192,0.786,193,1.29,194,1.749,195,0.8,196,1.724,197,2.147,198,0.8,199,0.8,200,0.828,201,0.786,202,1.276,203,0.8,204,0.828,205,0.786,206,0.828,207,0.773,208,0.773,209,1.647,210,1.557,211,0.773,212,0.786,213,0.786,214,0.76,215,0.828,216,0.8,217,1.889,218,0.8,219,1.661,220,0.8,221,0.8,222,0.8,223,0.786,224,0.828,225,0.786,226,0.8,227,0.828,228,0.786,229,0.828,230,0.786,231,0.76,232,1.682,233,0.828,234,0.786,235,0.828,236,0.773,237,0.786,238,0.828,239,0.786,240,0.828,241,0.722,242,0.828,243,0.786,244,1.357,245,0.828,246,0.773,247,0.828,248,0.786,249,0.828,250,0.76,251,0.828,252,0.786,253,0.76,254,0.786,255,0.734,256,0.828,257,0.786,258,0.828,259,0.828,260,0.786,261,0.828,262,0.786,263,0.828,264,0.76,265,0.828,266,0.773,267,0.786,268,0.828,269,0.786,270,0.8,271,0.828,272,2.261,273,0.786,274,1.749,275,0.786,276,0.8,277,0.686,278,0.8,279,0.8,280,0.786,281,0.8,282,0.8,283,1.825,284,0.828,285,0.773,286,0.786,287,0.828,288,0.786,289,0.8,290,0.786,291,0.828,292,0.786,293,0.828,294,0.8,295,0.734,296,0.786,297,0.828,298,0.786,299,0.828,300,0.786,301,0.828,302,0.786,303,0.747,304,0.76,305,0.828,306,0.773,307,0.828,308,0.773,309,0.828,310,0.773,311,0.828,312,0.773,313,0.828,314,0.773,315,0.814,316,0.828,317,0.773,318,0.814,319,0.828,320,0.003,321,0.003,345,1.022,346,4.036,349,0.873,353,1.7,354,1.987,357,0.924,358,4.206,362,1.612,378,1.854,390,2.756,397,6.859,434,1.98,447,2.139,448,2.303,454,2.033,537,2.664,540,2.344,570,2.184,571,1.934,572,2.857,581,3.951,705,1.492,816,1.533,819,4.312,907,1.674,932,4.397,934,4.584,935,4.312,940,3.363,947,1.748,948,1.674,953,1.788,966,4.029,974,1.624,977,7.341,979,2.103,983,2.212,1005,3.652,1012,2.103,1013,2.103,1083,1.729,1090,2.009,1104,2.009,1236,1.492,1257,2.815,1395,4.159,1397,3.24,1409,2.965,1410,2.009,1413,1.788,1542,2.508,1543,3.612,1544,5.765,1545,5.204,1546,4.244,1547,4.159,1548,4.721,1549,3.409,1550,3.409,1551,4.159,1552,3.063,1553,4.205,1554,2.508,1555,2.729,1556,2.729,1557,2.103,1558,2.344,1559,1.854,1560,2.344,1561,2.344,1562,2.508,1563,2.344,1564,3.865,1565,3.953,1566,2.729,1567,2.212,1568,2.344,1569,2.009,1570,6.472,1571,3.063,1572,2.729,1573,3.612,1574,3.063,1575,2.344,1576,3.409,1577,2.212,1578,2.344,1579,1.927,1580,2.212,1581,2.212,1582,2.344,1583,2.212,1584,2.344,1585,2.508,1586,2.729,1587,3.063,1588,2.729,1589,4.205,1590,2.729,1591,2.344,1592,2.009,1593,2.344,1594,2.344,1595,2.103,1596,2.508,1597,2.344,1598,3.063,1599,3.063,1600,2.508,1601,2.508,1602,2.344,1603,2.729,1604,3.063,1605,3.063]],["title/components/ErrorComponent.html",[0,0.202,223,1.294]],["body/components/ErrorComponent.html",[0,0.321,1,1.095,2,0.22,3,0.227,4,0.909,6,1.153,7,1.114,9,0.144,11,0.486,16,1.496,20,1.077,21,3.013,22,3.321,23,0.956,25,0.007,31,2.187,32,1.937,35,1.471,37,0.439,40,1.543,49,0.863,51,3.61,52,3.434,65,0.213,69,0.521,71,0.951,81,0.973,82,1.677,89,1.522,91,0.621,92,0.967,93,0.412,108,2.28,113,1.496,115,1.077,118,0.758,124,3.522,137,0.377,147,0.864,148,0.137,149,0.144,177,0.793,178,1.602,179,1.242,181,2.02,182,1.153,183,1.153,184,1.058,185,1.891,186,1.058,187,1.114,188,0.972,189,1.095,190,1.077,191,2.314,192,1.095,193,1.567,194,2.055,195,1.114,196,1.544,197,2.363,198,1.114,199,1.114,200,1.153,201,1.796,202,1.63,203,1.114,204,1.153,205,1.095,206,1.153,207,1.077,208,1.077,209,1.682,210,1.891,211,1.077,212,1.095,213,1.095,214,1.058,215,1.153,216,1.114,217,2.168,218,1.114,219,1.095,220,1.114,221,1.114,222,1.114,223,1.952,224,1.153,225,1.095,226,1.114,227,1.153,228,1.095,229,1.153,230,1.095,231,1.058,232,1.18,233,1.153,234,1.095,235,1.153,236,1.077,237,1.095,238,1.153,239,1.095,240,1.153,241,1.006,242,1.153,243,1.095,244,1.649,245,1.153,246,1.077,247,1.153,248,1.095,249,1.153,250,1.058,251,1.153,252,1.095,253,1.058,254,1.095,255,1.023,256,1.153,257,1.095,258,1.153,259,1.153,260,1.095,261,1.153,262,1.095,263,1.153,264,1.058,265,1.153,266,1.077,267,1.095,268,1.153,269,1.095,270,1.114,271,1.153,272,1.077,273,1.095,274,1.926,275,1.095,276,1.114,277,0.956,278,1.114,279,1.114,280,1.095,281,1.114,282,1.114,283,1.114,284,1.153,285,1.077,286,1.095,287,1.153,288,1.095,289,1.114,290,1.095,291,1.153,292,1.095,293,1.153,294,1.114,295,1.023,296,1.095,297,1.153,298,1.095,299,1.153,300,1.095,301,1.153,302,1.095,303,1.04,304,1.058,305,1.153,306,1.077,307,1.153,308,1.077,309,1.153,310,1.077,311,1.153,312,1.077,313,1.153,314,1.077,315,1.134,316,1.153,317,1.077,318,1.134,319,1.153,320,0.004,321,0.004,330,2.025,357,0.835,411,1.757,494,3.882,531,2.792,584,3.272,585,4.685,601,1.519,917,4.616,918,3.198,919,4.94,920,4.616,937,2.19,938,2.935,1191,2.758,1224,2.685,1606,4.268,1607,6.033,1608,2.93,1609,6.033,1610,4.268,1611,4.268,1612,4.268,1613,4.268,1614,5.374,1615,4.268,1616,4.268,1617,4.268,1618,4.268,1619,4.268,1620,4.268,1621,4.268,1622,4.268,1623,6.033,1624,4.268]],["title/classes/Field.html",[46,1.272,149,0.17]],["body/classes/Field.html",[0,0.301,2,0.187,3,0.193,8,1.947,9,0.122,16,1.33,25,0.007,30,1.127,37,0.552,38,1.073,39,1.195,40,1.672,43,1.532,46,2.403,47,2.748,48,1.851,49,1.126,60,1.008,61,3.097,65,0.128,69,0.832,70,1.92,71,1.144,76,0.663,80,1.243,81,1.094,91,0.528,92,0.898,93,0.944,117,2.809,118,1.051,123,3.436,147,1.086,148,0.117,149,0.301,196,1.509,232,1.049,295,1.286,320,0.004,321,0.004,340,2.258,341,3.838,345,2.021,353,2.602,354,3.658,357,0.71,362,2.205,401,4.446,425,1.291,434,2.303,444,2.412,452,1.43,492,4.475,502,2.316,513,1.722,518,1.638,526,3.518,531,3.263,557,4.188,573,3.518,646,3.518,685,2.463,822,4.104,850,2.844,896,2.762,902,2.614,941,2.919,959,3.53,960,3.132,966,2.482,990,3.232,1052,1.868,1058,3.132,1061,3.247,1063,4.394,1133,3.132,1191,3.104,1216,3.682,1217,3.727,1240,2.776,1243,2.776,1250,4.436,1257,1.461,1263,3.132,1579,3.375,1625,3.628,1626,5.345,1627,4.84,1628,5.092,1629,4.268,1630,6.027,1631,6.281,1632,6.027,1633,4.306,1634,7.052,1635,7.052,1636,5.365,1637,3.628,1638,3.628,1639,3.628,1640,3.628,1641,3.874,1642,3.874,1643,3.628,1644,3.628,1645,4.393,1646,4.393,1647,3.628,1648,4.779,1649,5.365,1650,4.104,1651,3.628,1652,3.628,1653,3.628,1654,3.628,1655,5.365,1656,4.104,1657,3.518,1658,3.628,1659,3.628,1660,3.628,1661,7.878,1662,3.628,1663,3.518,1664,3.628,1665,3.628,1666,3.628,1667,3.628,1668,3.628,1669,3.628,1670,4.779,1671,3.682,1672,3.628,1673,5.365,1674,2.282,1675,3.232,1676,3.232,1677,3.628,1678,3.247,1679,2.048,1680,3.232,1681,3.628,1682,3.232,1683,3.628,1684,2.38,1685,3.628,1686,3.628,1687,3.628,1688,4.779,1689,5.365,1690,2.282,1691,3.628,1692,5.365,1693,3.628,1694,3.628,1695,2.491,1696,3.628,1697,3.628,1698,2.776,1699,3.232,1700,3.628,1701,3.628,1702,2.776,1703,3.232,1704,2.282,1705,3.232,1706,3.232,1707,4.393,1708,3.628,1709,3.628,1710,3.232,1711,3.628,1712,3.232,1713,3.628,1714,2.971,1715,3.628]],["title/interfaces/FieldConfig.html",[337,1.436,1716,3.306]],["body/interfaces/FieldConfig.html",[2,0.375,3,0.388,9,0.245,11,0.829,25,0.007,37,0.749,46,2.396,65,0.257,70,1.667,71,0.862,117,2.656,148,0.234,196,1.505,320,0.006,321,0.006,337,2.427,353,2.147,896,4.799,902,4.152,1017,4.77,1074,4.152,1626,6.23,1706,6.479,1716,5.589,1717,8.522,1718,7.274]],["title/interfaces/FileOptions.html",[337,1.436,1029,3.461]],["body/interfaces/FileOptions.html",[0,0.133,2,0.171,3,0.177,9,0.267,11,0.378,25,0.007,30,1.397,37,0.341,38,0.583,44,1.72,46,0.836,48,2.464,49,0.474,60,0.927,65,0.305,69,0.756,70,1.689,71,0.393,75,1.621,76,1.634,77,1.134,80,1.401,81,1.235,84,2.085,89,1.7,92,0.538,93,0.91,108,1.253,117,1.884,118,0.416,121,3.117,123,3.284,131,1.364,137,0.293,147,1.648,148,0.195,149,0.112,164,1.785,188,0.755,193,2.173,196,1.191,209,1.143,231,0.822,232,1.319,274,1.331,277,0.742,303,2.231,320,0.003,321,0.005,337,2.062,338,1.935,340,2.837,341,2.443,342,2.74,345,1.895,349,0.944,353,1.99,362,2.026,404,3.804,407,2.085,411,2.489,413,2.063,416,1.496,431,5.229,436,1.525,446,1.812,447,1.014,448,2.221,452,1.306,467,5.229,468,2.394,476,2.275,481,2.714,488,3.305,494,2.604,498,2.333,502,1.203,518,2.73,523,3.441,536,1.935,546,2.174,554,2.085,555,5.663,576,2.714,586,2.085,594,1.812,600,0.781,601,1.179,602,2.383,626,1.534,681,2.239,704,2.174,705,2.443,740,3.66,748,2.714,755,2.275,850,1.757,868,2.443,902,1.615,907,3.957,909,2.581,924,1.812,941,2.352,947,1.857,1029,4.97,1039,2.714,1042,1.573,1052,1.706,1058,1.935,1061,2.006,1069,2.006,1071,2.174,1072,2.394,1073,2.006,1074,1.615,1075,2.275,1076,3.53,1083,2.83,1105,2.275,1110,2.714,1115,4.447,1135,4.626,1157,3.034,1179,2.394,1475,2.275,1559,2.006,1633,2.74,1719,2.952,1720,7.046,1721,6.785,1722,7.046,1723,6.45,1724,6.45,1725,6.45,1726,4.105,1727,3.288,1728,3.836,1729,3.034,1730,4.466,1731,4.466,1732,2.952,1733,4.626,1734,2.536,1735,2.952,1736,2.952,1737,2.952,1738,2.952,1739,2.536,1740,2.952,1741,2.952,1742,5.386,1743,2.952,1744,5.386,1745,2.952,1746,2.952,1747,2.952,1748,2.952,1749,2.952,1750,2.952,1751,1.757,1752,2.952,1753,4.868,1754,2.275,1755,2.952,1756,4.466,1757,2.952,1758,4.466,1759,4.466,1760,2.952,1761,2.952,1762,2.952,1763,2.952,1764,4.466,1765,3.804,1766,2.952,1767,2.536,1768,2.714,1769,2.394,1770,2.952,1771,6.785,1772,2.952,1773,2.952,1774,2.952,1775,2.952,1776,2.952,1777,5.386,1778,2.714,1779,2.952,1780,2.952,1781,4.466,1782,2.952,1783,4.466,1784,4.466,1785,4.466,1786,4.466,1787,4.466,1788,4.466,1789,4.466,1790,4.466,1791,2.394,1792,2.714,1793,3.836,1794,2.952,1795,2.952,1796,2.952,1797,4.466,1798,2.952,1799,2.952,1800,2.952,1801,2.952,1802,2.952,1803,2.394,1804,2.952,1805,5.386,1806,2.952,1807,2.952,1808,4.466,1809,2.952,1810,2.952,1811,2.952,1812,2.536,1813,2.952,1814,1.935,1815,2.536,1816,2.952,1817,2.952,1818,2.952,1819,2.952,1820,2.952,1821,2.952,1822,2.952,1823,2.952,1824,2.952,1825,2.952,1826,2.952,1827,2.952,1828,2.275,1829,2.952,1830,2.952,1831,2.952,1832,2.714,1833,2.952,1834,2.952,1835,2.952]],["title/modules/FilesModule.html",[322,1.092,1153,3.641]],["body/modules/FilesModule.html",[2,0.253,3,0.261,9,0.165,24,2.223,25,0.007,63,1.646,65,0.345,137,0.433,138,1.975,139,1.528,146,2.846,148,0.26,149,0.165,177,0.912,189,2.448,190,1.237,192,2.418,193,1.687,195,2.46,196,1.173,198,2.49,230,2.418,231,1.216,232,1.299,294,2.49,295,1.175,300,2.448,302,2.418,303,1.195,304,2.337,306,2.377,314,2.377,320,0.004,321,0.004,322,1.438,324,2.018,328,2.795,329,1.78,330,1.646,332,3.749,333,2.317,485,4.368,547,2.863,551,4.368,554,5.47,569,3.541,621,5.077,627,3.152,628,2.214,631,4.559,978,4.356,1153,7.256,1154,5.969,1155,6.181,1176,6.176,1180,4.368,1182,4.016,1836,4.368,1837,4.368,1838,4.904,1839,4.368,1840,4.368,1841,4.904,1842,3.752,1843,3.541,1844,3.216,1845,4.904,1846,4.904,1847,4.368,1848,4.904,1849,4.904,1850,4.368,1851,4.368,1852,4.368,1853,4.904]],["title/interfaces/Focus.html",[337,1.436,1854,3.641]],["body/interfaces/Focus.html",[2,0.382,3,0.395,9,0.25,25,0.007,37,0.763,38,1.001,49,1.232,65,0.262,69,0.64,71,0.878,81,0.948,137,0.655,148,0.239,320,0.006,321,0.006,337,2.454,448,3.089,1854,6.221,1855,7.41,1856,8.353,1857,7.678,1858,7.41]],["title/directives/FocusDirective.html",[179,1.038,312,1.272]],["body/directives/FocusDirective.html",[2,0.355,3,0.366,9,0.232,16,2.044,21,3.801,23,1.54,25,0.007,31,1.911,37,0.708,40,1.76,49,1.178,52,4.131,65,0.243,69,0.712,71,1.046,81,0.88,82,1.647,91,1.001,92,0.737,93,0.664,109,4.131,113,2.044,137,0.608,148,0.221,149,0.232,179,1.817,312,2.079,320,0.005,321,0.005,345,1.488,357,1.345,447,2.103,448,2.908,519,3.181,601,2.446,1400,5.629,1859,6.875,1860,7.662,1861,8.242,1862,6.875,1863,5.629,1864,6.875,1865,6.875,1866,6.875,1867,6.875,1868,6.875]],["title/interfaces/FormConfig.html",[337,1.436,1869,3.857]],["body/interfaces/FormConfig.html",[2,0.363,3,0.375,9,0.238,11,0.803,19,3.16,25,0.007,30,1.477,37,0.725,38,0.972,65,0.249,69,0.722,70,1.745,93,0.891,148,0.227,320,0.006,321,0.006,337,2.382,345,1.931,354,3.519,918,4.433,974,3.734,1017,4.62,1041,6.332,1869,7.058,1870,7.044,1871,6.398,1872,5.701,1873,9.225,1874,8.218,1875,7.058,1876,5.768]],["title/modules/FormModule.html",[322,1.092,1877,3.461]],["body/modules/FormModule.html",[2,0.266,3,0.274,9,0.174,20,2.307,24,2.603,25,0.007,63,1.729,65,0.345,118,0.862,137,0.455,138,2.074,146,2.918,147,1.042,148,0.276,149,0.174,177,0.957,205,2.437,211,2.307,225,2.437,298,2.437,320,0.005,321,0.005,322,1.486,324,2.12,328,2.889,329,1.869,330,1.729,332,3.874,333,1.797,627,3.258,628,2.325,630,5.575,649,4.856,775,5.785,794,4.217,796,4.217,798,4.217,959,2.578,1170,3.117,1172,3.94,1174,3.719,1211,2.907,1378,4.217,1385,4.217,1877,6.885,1878,4.588,1879,4.588,1880,4.588,1881,4.588,1882,4.588,1883,7.266,1884,7.266,1885,6.519,1886,6.229,1887,5.339,1888,5.785,1889,5.785,1890,6.37,1891,5.15,1892,4.217,1893,4.588,1894,5.15,1895,4.588,1896,5.15,1897,5.15,1898,4.217,1899,3.719,1900,5.15,1901,5.15,1902,4.217,1903,5.15,1904,5.15,1905,5.15,1906,5.15,1907,5.15]],["title/injectables/FormService.html",[436,1.272,1890,3.641]],["body/injectables/FormService.html",[2,0.233,3,0.24,9,0.152,11,0.514,15,3.422,25,0.007,30,1.108,37,0.464,38,0.729,43,1.168,44,1.788,45,4.131,46,2.477,47,3.745,49,0.897,60,0.923,61,2.582,65,0.289,69,0.751,70,0.883,71,1.051,75,2.331,76,1.497,77,2.147,80,1.964,81,1.244,82,1.081,91,1.266,92,0.933,93,0.84,117,3.086,118,0.567,124,3.662,127,2.634,132,4.717,137,0.399,138,1.817,147,1.716,148,0.145,149,0.243,225,2,320,0.004,321,0.004,337,1.787,345,0.977,349,1.285,353,1.851,354,3.732,357,1.227,362,2.292,436,1.819,494,1.943,502,1.637,504,2.902,531,2.902,570,2.088,571,2.106,584,2.617,626,2.902,879,3.325,937,2.972,938,3.271,941,1.574,1008,4.782,1224,2.838,1608,3.097,1633,5.036,1671,4.306,1729,3.797,1890,4.53,1908,4.512,1909,6.273,1910,3.325,1911,6.273,1912,6.273,1913,6.273,1914,6.273,1915,6.273,1916,6.273,1917,4.512,1918,6.273,1919,4.512,1920,3.662,1921,6.273,1922,4.512,1923,6.273,1924,6.273,1925,4.512,1926,6.273,1927,4.512,1928,6.273,1929,7.211,1930,6.273,1931,4.512,1932,5.136,1933,6.273,1934,4.512,1935,7.793,1936,7.211,1937,4.512,1938,5.587,1939,4.019,1940,4.512,1941,6.273,1942,4.512,1943,4.512,1944,4.512,1945,4.512,1946,4.512,1947,6.273,1948,4.512,1949,6.273,1950,4.512,1951,4.512,1952,4.512,1953,4.512,1954,4.512,1955,4.512,1956,4.019,1957,4.512,1958,4.512,1959,4.512,1960,4.512,1961,4.512,1962,4.512,1963,4.512,1964,4.512,1965,6.273]],["title/injectables/GeocodeService.html",[436,1.272,1966,3.461]],["body/injectables/GeocodeService.html",[2,0.268,3,0.277,9,0.176,11,0.593,12,3.9,25,0.007,37,0.535,40,1.59,44,1.785,49,0.988,65,0.304,69,0.743,71,1.02,76,1.511,80,2.049,81,1.217,91,1.253,92,0.923,93,0.831,113,2.05,121,3.258,137,0.46,146,2.612,147,1.57,148,0.167,149,0.176,181,1.382,188,1.574,244,2.186,320,0.006,321,0.005,357,1.018,436,1.957,444,2.612,512,5.287,526,4.532,537,4.857,597,3.557,601,1.851,602,2.05,785,4.034,879,2.758,909,4.256,1086,3.149,1217,4.034,1245,3.571,1402,5.658,1546,4.532,1920,4.034,1966,4.743,1967,5.202,1968,5.675,1969,7.759,1970,6.91,1971,6.91,1972,6.91,1973,6.91,1974,5.202,1975,8.267,1976,8.041,1977,5.202,1978,6.91,1979,6.91,1980,5.202,1981,7.046,1982,6.91,1983,5.202,1984,5.658,1985,7.665,1986,5.658,1987,6.91,1988,5.202,1989,6.91,1990,6.91,1991,5.202,1992,4.26,1993,5.202,1994,5.202,1995,5.202,1996,5.202,1997,5.202,1998,5.202,1999,4.743,2000,5.202,2001,5.202,2002,6.91,2003,4.26,2004,6.155,2005,5.202,2006,6.155,2007,5.202,2008,5.202,2009,5.202,2010,5.202,2011,5.202,2012,5.202,2013,4.26,2014,4.634,2015,5.202,2016,6.155,2017,5.202,2018,5.202,2019,5.202,2020,5.202,2021,5.202,2022,5.202,2023,5.202,2024,5.202,2025,5.202,2026,5.202]],["title/pipes/GroupPipe.html",[1213,2.596,1215,3.641]],["body/pipes/GroupPipe.html",[2,0.348,3,0.36,9,0.228,11,0.77,16,1.675,23,1.513,25,0.007,38,1.1,43,1.564,47,3.512,48,2.775,49,0.966,60,1.044,65,0.288,69,0.584,70,1.714,71,0.801,77,2.791,80,1.889,81,1.164,91,0.984,92,0.94,93,0.652,131,3.357,137,0.597,148,0.218,149,0.228,320,0.005,321,0.005,349,1.925,492,4.199,681,3.449,827,5.349,1213,4.51,1215,6.57,1216,5.599,1217,3.945,1223,5.89,2027,6.757,2028,8.156,2029,6.757,2030,6.757,2031,6.757]],["title/injectables/HistoryService.html",[436,1.272,1156,3.857]],["body/injectables/HistoryService.html",[2,0.226,3,0.378,9,0.148,11,0.5,25,0.007,37,0.451,38,0.715,43,1.313,44,1.779,49,1.015,65,0.316,69,0.815,70,1.723,71,1.075,76,0.801,77,2.634,80,1.999,81,1.127,82,1.051,89,1.941,91,1.121,92,0.826,93,0.743,108,2.324,118,1.018,121,3.194,126,1.988,137,0.388,139,1.366,147,1.437,148,0.141,149,0.148,167,3.259,209,1.163,274,1.97,277,1.59,320,0.004,321,0.004,340,3.239,343,1.805,355,3.47,357,1.203,362,1.721,403,7.064,417,3.59,427,3.099,436,1.791,447,1.881,477,2.758,478,3.906,494,3.904,498,3.642,581,2.918,583,2.475,584,2.231,591,4.093,595,2.56,655,5.558,740,2.654,741,2.876,771,4.704,773,4.298,785,4.494,819,4.494,902,4.506,927,6.066,933,5.598,936,4.574,1004,2.654,1076,5.4,1090,5.658,1104,2.876,1105,3.01,1135,4.704,1156,5.888,1344,4.032,1509,4.44,2032,4.385,2033,5.034,2034,8.805,2035,6.149,2036,6.149,2037,3.906,2038,6.149,2039,6.149,2040,4.385,2041,4.704,2042,6.149,2043,8.402,2044,6.149,2045,8.628,2046,4.385,2047,3.75,2048,6.302,2049,6.149,2050,4.385,2051,4.22,2052,5.034,2053,4.385,2054,4.385,2055,4.385,2056,6.856,2057,4.385,2058,4.385,2059,4.385,2060,3.906,2061,4.385,2062,4.385,2063,8.628,2064,4.385,2065,4.385,2066,4.385,2067,6.149,2068,7.101,2069,4.385,2070,4.385,2071,6.149,2072,4.385,2073,4.385,2074,4.385,2075,6.149,2076,6.149,2077,4.385,2078,4.385]],["title/components/IconComponent.html",[0,0.202,228,1.294]],["body/components/IconComponent.html",[0,0.334,1,1.003,2,0.202,3,0.208,4,0.832,6,1.056,7,1.02,8,1.418,9,0.132,11,0.445,16,1.404,20,0.986,21,2.868,22,3.162,23,0.875,25,0.007,31,2.181,32,1.933,35,1.381,37,0.402,38,0.658,39,1.866,40,1.492,49,0.81,51,3.467,52,3.298,60,0.935,65,0.274,69,0.575,70,1.108,71,0.958,78,3.888,79,1.381,80,0.905,81,0.853,82,1.596,91,0.569,92,1.016,93,0.377,113,1.404,115,0.986,118,0.837,123,4.162,126,2.507,137,0.345,144,4.595,148,0.214,149,0.225,177,0.726,178,1.504,179,1.166,180,1.644,181,1.94,182,1.056,183,1.056,184,0.969,185,1.8,186,0.969,187,1.02,188,0.89,189,1.003,190,0.986,191,2.254,192,1.003,193,1.492,194,1.974,195,1.02,196,1.428,197,2.309,198,1.02,199,1.02,200,1.056,201,1.003,202,1.531,203,1.02,204,1.056,205,1.003,206,1.056,207,0.986,208,0.986,209,1.577,210,1.8,211,0.986,212,1.003,213,1.003,214,0.969,215,1.056,216,1.02,217,2.096,218,1.02,219,1.003,220,1.02,221,1.02,222,1.02,223,1.003,224,1.056,225,1.003,226,1.02,227,1.056,228,1.875,229,1.056,230,1.003,231,0.969,232,1.108,233,1.056,234,1.003,235,1.056,236,0.986,237,1.003,238,1.056,239,1.003,240,1.056,241,0.921,242,1.056,243,1.003,244,1.57,245,1.056,246,0.986,247,1.056,248,1.003,249,1.056,250,0.969,251,1.056,252,1.003,253,0.969,254,1.003,255,0.936,256,1.056,257,1.003,258,1.056,259,1.056,260,1.003,261,1.056,262,1.003,263,1.056,264,0.969,265,1.056,266,0.986,267,1.003,268,1.056,269,1.003,270,1.02,271,1.056,272,0.986,273,1.003,274,1.881,275,1.003,276,1.02,277,0.875,278,1.02,279,1.02,280,1.003,281,1.02,282,1.02,283,1.02,284,1.056,285,0.986,286,1.003,287,1.056,288,1.003,289,1.02,290,1.003,291,1.056,292,1.003,293,1.056,294,1.02,295,0.936,296,1.003,297,1.056,298,1.003,299,1.056,300,1.003,301,1.056,302,1.003,303,0.952,304,0.969,305,1.056,306,0.986,307,1.056,308,0.986,309,1.056,310,0.986,311,1.056,312,0.986,313,1.056,314,0.986,315,1.038,316,1.056,317,0.986,318,1.038,319,1.056,320,0.004,321,0.005,357,0.764,418,2.621,425,1.39,508,3.002,572,2.365,583,3.76,599,2.682,601,1.39,654,3.199,937,2.651,1038,2.365,1191,2.625,1344,2.563,1630,7.519,1656,2.989,2079,3.907,2080,7.13,2081,4.421,2082,5.045,2083,3.563,2084,3.563,2085,5.664,2086,3.907,2087,6.653,2088,5.664,2089,3.907,2090,3.907,2091,3.907,2092,3.907,2093,5.045,2094,3.002,2095,3.907,2096,2.989,2097,5.664,2098,5.664,2099,5.664,2100,3.907,2101,5.934,2102,3.907,2103,2.458,2104,3.481,2105,3.481,2106,5.664,2107,3.907,2108,3.907,2109,3.907,2110,2.281,2111,3.907,2112,5.664,2113,5.664]],["title/modules/IconModule.html",[322,1.092,1887,3.052]],["body/modules/IconModule.html",[2,0.359,3,0.371,9,0.235,24,2.62,25,0.007,63,2.339,65,0.332,137,0.616,146,3.355,148,0.296,149,0.235,177,1.295,228,2.539,320,0.006,321,0.006,322,1.799,324,2.868,328,3.497,329,2.529,330,2.339,333,2.899,627,3.943,628,3.146,1887,5.913,2087,6.882,2104,6.207,2114,6.207,2115,6.207,2116,6.207,2117,6.207,2118,6.968,2119,6.968]],["title/injectables/IconService.html",[436,1.272,2087,3.641]],["body/injectables/IconService.html",[2,0.346,3,0.358,8,2.436,9,0.227,11,0.765,19,2.537,25,0.007,32,1.788,37,0.691,38,0.944,43,1.087,44,1.68,60,1.04,65,0.321,69,0.58,71,0.796,79,2.303,88,6.232,118,1.097,123,3.958,126,2.627,137,0.593,148,0.216,149,0.227,180,2.825,320,0.005,321,0.005,401,4.585,436,2.204,626,4.201,937,3.295,938,3.135,1224,4.223,1630,7.56,1729,4.917,2080,7.433,2082,7.237,2087,5.867,2105,5.979,2120,6.713,2121,8.736,2122,6.713]],["title/directives/ImageDirective.html",[179,1.038,314,1.272]],["body/directives/ImageDirective.html",[2,0.25,3,0.259,4,1.404,9,0.164,11,0.553,16,1.635,19,1.834,22,3.555,23,1.087,25,0.007,30,1.165,31,1.428,37,0.499,38,0.766,40,1.736,43,0.786,44,1.546,49,0.943,51,3.815,60,1.076,65,0.297,69,0.799,70,1.841,71,1.096,76,0.887,81,1.184,82,1.58,91,1.17,92,0.862,93,0.776,109,4.004,113,1.635,118,0.609,123,3.916,137,0.429,148,0.156,149,0.164,179,1.654,193,2.072,231,2.269,304,1.635,314,1.663,315,2.135,320,0.004,321,0.004,341,4.095,345,1.428,357,0.949,362,2.097,411,3.459,412,2.653,413,3.568,416,2.191,418,2.246,425,1.727,427,3.789,431,5.804,432,4.762,450,5.875,452,2.599,454,2.09,467,6.069,468,3.505,470,3.713,472,5.875,473,3.713,474,2.834,602,1.913,676,3.331,1047,5.31,1059,5.875,1115,2.834,1133,3.85,1733,6.785,1734,3.713,1765,3.053,1793,3.713,1814,4.907,1847,4.323,2123,4.853,2124,6.595,2125,5.875,2126,6.149,2127,9.149,2128,6.595,2129,7.487,2130,6.595,2131,4.853,2132,6.581,2133,5.875,2134,4.853,2135,6.595,2136,4.853,2137,4.853,2138,6.595,2139,6.595,2140,4.853,2141,6.595,2142,4.853,2143,6.595,2144,4.853,2145,4.853,2146,4.853,2147,4.853,2148,7.491,2149,4.853,2150,4.853,2151,4.853,2152,5.875,2153,4.853,2154,4.853,2155,5.4,2156,4.853,2157,6.595,2158,4.853,2159,4.853,2160,4.853,2161,6.595,2162,4.853]],["title/components/ImageSelectPopComponent.html",[0,0.202,230,1.294]],["body/components/ImageSelectPopComponent.html",[0,0.291,1,0.673,2,0.135,3,0.14,4,0.558,6,1.129,7,0.684,9,0.088,11,0.299,16,1.036,19,1.579,20,0.661,21,2.243,23,0.587,25,0.007,30,1.371,31,2.146,32,1.897,35,1.019,37,0.27,38,0.486,39,0.864,40,1.493,43,1.289,44,1.771,46,0.661,49,0.598,50,2.215,52,2.683,60,0.831,65,0.244,66,2.092,67,2.151,69,0.77,70,0.818,71,1.096,76,0.479,77,1.43,79,1.837,80,0.607,81,0.994,82,1.424,89,1.959,91,0.865,92,0.872,93,0.574,107,2.151,109,3.995,110,1.012,113,1.715,115,0.661,117,2.348,118,1,128,4.141,136,1.184,137,0.232,139,0.817,147,1.645,148,0.084,149,0.245,167,2.215,175,3.197,177,0.487,178,1.11,179,0.86,181,1.579,182,0.709,183,0.709,184,0.65,185,1.408,186,0.65,187,0.684,188,0.597,189,0.673,190,0.661,191,1.961,192,0.673,193,1.331,194,1.606,195,0.684,196,1.222,197,2.036,198,0.684,199,0.684,200,0.709,201,0.673,202,1.129,203,0.684,204,0.709,205,0.673,206,0.709,207,1.314,208,0.661,209,1.468,210,1.408,211,0.661,212,0.673,213,0.673,214,0.65,215,0.709,216,0.684,217,1.754,218,0.684,219,0.673,220,0.684,221,0.684,222,0.684,223,0.673,224,0.709,225,1.337,226,0.684,227,0.709,228,0.673,229,0.709,230,1.525,231,2.135,232,1.895,233,0.709,234,0.673,235,0.709,236,0.661,237,0.673,238,0.709,239,0.673,240,0.709,241,1.53,242,0.709,243,0.673,244,1.228,245,0.709,246,0.661,247,0.709,248,0.673,249,0.709,250,0.65,251,0.709,252,0.673,253,0.65,254,0.673,255,0.628,256,0.709,257,0.673,258,0.709,259,0.709,260,0.673,261,0.709,262,0.673,263,0.709,264,0.65,265,0.709,266,0.661,267,0.673,268,0.709,269,0.673,270,0.684,271,0.709,272,2.194,273,0.673,274,1.659,275,0.673,276,0.684,277,0.587,278,0.684,279,0.684,280,0.673,281,0.684,282,0.684,283,0.684,284,0.709,285,0.661,286,0.673,287,0.709,288,0.673,289,0.684,290,0.673,291,0.709,292,0.673,293,0.709,294,0.684,295,0.628,296,0.673,297,0.709,298,0.673,299,0.709,300,0.673,301,0.709,302,0.673,303,0.639,304,0.65,305,0.709,306,0.661,307,0.709,308,0.661,309,0.709,310,0.661,311,0.709,312,0.661,313,0.709,314,0.661,315,1.384,316,0.709,317,0.661,318,0.696,319,0.709,320,0.003,321,0.003,343,2.144,345,1.128,346,3.781,349,0.747,354,2.732,357,0.513,358,3.966,362,1.458,401,1.48,411,2.847,413,2.847,416,1.184,418,1.213,434,1.819,444,1.969,447,1.594,448,2.139,454,1.799,496,1.842,498,1.012,508,2.215,554,5.203,555,4.257,569,1.893,571,1.749,581,3.778,816,1.312,819,3.47,839,3.197,937,2.734,938,2.669,947,1.547,948,1.433,953,1.531,966,3.886,1005,3.444,1047,2.359,1063,2.44,1064,4.266,1083,1.48,1170,1.587,1171,1.72,1236,1.277,1250,3.441,1257,2.614,1344,2.741,1390,2.868,1395,3.762,1397,2.868,1409,2.682,1410,1.72,1413,1.531,1542,2.147,1543,3.197,1545,4.919,1547,3.762,1549,3.018,1550,3.018,1551,3.762,1553,2.336,1554,2.147,1557,1.8,1558,2.006,1559,1.587,1560,2.006,1561,2.006,1562,2.147,1563,2.006,1565,3.576,1567,1.893,1568,2.006,1569,1.72,1572,2.336,1575,2.006,1576,3.018,1577,1.893,1578,2.006,1579,1.649,1580,1.893,1581,1.893,1582,2.006,1583,1.893,1584,2.006,1585,2.147,1588,3.722,1591,2.006,1592,1.72,1593,2.006,1594,2.006,1596,2.147,1597,2.006,1753,1.893,1791,1.893,1793,2.006,1814,4.534,1852,7.669,1869,4.547,1874,2.336,2163,8.609,2164,3.197,2165,8.127,2166,6.917,2167,5.943,2168,5.21,2169,2.147,2170,3.722,2171,4.179,2172,3.722,2173,2.336,2174,3.197,2175,2.622,2176,2.622,2177,2.622,2178,4.179,2179,2.336,2180,2.336,2181,2.336,2182,6.492,2183,2.336,2184,2.622,2185,6.492,2186,2.622,2187,2.147,2188,5.943,2189,2.622,2190,2.622,2191,2.622,2192,4.179,2193,4.179,2194,4.179,2195,3.422,2196,4.179,2197,4.179,2198,2.622,2199,4.179,2200,2.622,2201,2.622,2202,2.147,2203,2.147,2204,2.622,2205,2.622,2206,2.147,2207,2.622,2208,6.492,2209,2.622,2210,4.179,2211,2.622,2212,2.622,2213,4.179,2214,2.622,2215,2.622,2216,2.622,2217,2.622,2218,2.622,2219,2.622,2220,2.622,2221,2.336,2222,2.622,2223,2.622,2224,1.893,2225,2.622,2226,1.587,2227,1.587,2228,2.622,2229,4.179,2230,4.179,2231,2.622,2232,2.622,2233,2.622,2234,4.179]],["title/components/InputComponent.html",[0,0.202,115,1.272]],["body/components/InputComponent.html",[0,0.364,1,0.75,2,0.151,3,0.156,4,1.19,6,0.79,7,0.763,9,0.099,11,0.333,14,2.16,16,1.129,17,3.516,19,1.72,20,1.41,22,2.653,23,0.654,24,1.863,25,0.007,26,3.155,27,2.569,28,3.155,29,2.569,30,0.804,31,2.157,32,1.91,35,1.109,37,0.301,38,0.934,40,1.797,41,3.97,43,1.395,44,0.875,45,3.915,46,2.26,47,3.368,48,2.465,49,0.651,51,2.995,53,2.985,54,3.97,57,2.755,60,1.071,65,0.256,69,0.785,70,0.89,71,1.083,76,1.153,77,2.341,79,0.712,80,0.677,81,1.001,82,1.639,86,2.863,88,3.124,89,2.173,90,3.287,91,0.814,92,0.935,93,0.54,94,2.863,104,2.863,106,3.124,107,2.343,108,1.72,110,1.128,113,1.129,115,2.111,117,2.716,118,0.982,119,2.488,126,1.808,127,2.657,128,2.798,132,3.819,137,0.258,138,1.177,144,2.863,147,0.921,148,0.094,149,0.099,162,2.985,173,2.863,177,0.543,178,1.209,179,1.299,181,1.676,182,0.79,183,0.79,184,0.725,185,1.511,186,0.725,187,0.763,188,0.666,189,0.75,190,0.737,191,2.044,192,0.75,193,1.252,194,1.705,195,0.763,196,1.381,197,2.114,198,0.763,199,0.763,200,0.79,201,0.75,202,1.23,203,0.763,204,0.79,205,0.75,206,0.79,207,0.737,208,0.737,209,1.43,210,1.511,211,0.737,212,0.75,213,1.941,214,1.565,215,0.79,216,0.763,217,1.848,218,0.763,219,0.75,220,0.763,221,0.763,222,0.763,223,0.75,224,0.79,225,0.75,226,0.763,227,0.79,228,0.75,229,0.79,230,0.75,231,0.725,232,0.89,233,0.79,234,0.75,235,0.79,236,0.737,237,0.75,238,0.79,239,0.75,240,0.79,241,0.688,242,0.79,243,0.75,244,1.317,245,0.79,246,0.737,247,0.79,248,0.75,249,0.79,250,0.725,251,0.79,252,0.75,253,0.725,254,0.75,255,0.7,256,0.79,257,0.75,258,0.79,259,0.79,260,0.75,261,0.79,262,0.75,263,0.79,264,0.725,265,0.79,266,0.737,267,0.75,268,0.79,269,0.75,270,0.763,271,0.79,272,0.737,273,0.75,274,1.722,275,0.75,276,0.763,277,0.654,278,0.763,279,0.763,280,0.75,281,0.763,282,0.763,283,0.763,284,0.79,285,0.737,286,0.75,287,0.79,288,0.75,289,0.763,290,0.75,291,0.79,292,0.75,293,0.79,294,0.763,295,0.7,296,0.75,297,0.79,298,0.75,299,0.79,300,0.75,301,0.79,302,0.75,303,0.712,304,0.725,305,0.79,306,0.737,307,0.79,308,0.737,309,0.79,310,0.737,311,0.79,312,0.737,313,0.79,314,0.737,315,0.776,316,0.79,317,1.41,318,0.776,319,0.79,320,0.003,321,0.003,340,2.656,349,0.832,353,2.019,390,2.657,400,2.413,401,2.569,427,2.541,434,1.931,447,1.711,448,1.842,513,2.16,531,1.352,587,2.16,685,1.756,803,2.343,868,2.217,874,3.124,879,1.549,941,1.019,947,2.337,967,2.653,1008,2.657,1045,2.755,1050,2.657,1060,1.597,1066,3.684,1071,2.985,1086,1.769,1170,1.769,1171,1.916,1191,1.794,1213,1.504,1244,2.393,1245,2.006,1378,2.393,1434,3.727,1437,5.232,1445,4.277,1448,3.727,1449,5.167,1450,3.727,1452,2.393,1454,3.727,1456,2.393,1457,2.393,1626,3.666,1712,4.054,1765,1.838,1938,4.98,2047,2.217,2083,2.863,2084,2.863,2101,4.054,2103,1.838,2155,2.393,2172,4.054,2235,2.922,2236,6.311,2237,6.311,2238,6.092,2239,2.922,2240,2.922,2241,6.453,2242,2.922,2243,4.054,2244,2.922,2245,2.922,2246,2.922,2247,2.922,2248,2.922,2249,4.551,2250,2.922,2251,2.922,2252,2.922,2253,2.922,2254,2.922,2255,2.922,2256,2.603,2257,2.922,2258,2.657,2259,3.727,2260,3.287,2261,4.551,2262,4.551,2263,4.551,2264,2.922,2265,2.922,2266,3.727,2267,2.603,2268,2.603,2269,2.393,2270,6.453,2271,2.922,2272,2.922,2273,6.311,2274,6.839,2275,4.551,2276,2.922,2277,2.922,2278,2.922,2279,5.59,2280,2.922,2281,4.551,2282,2.922,2283,2.922,2284,2.922,2285,2.922,2286,2.922,2287,2.922,2288,2.922,2289,2.922,2290,2.922,2291,2.922,2292,2.922,2293,2.922,2294,2.922,2295,2.922,2296,2.922]],["title/components/InputErrorsComponent.html",[0,0.202,234,1.294]],["body/components/InputErrorsComponent.html",[0,0.341,1,1.076,2,0.216,3,0.223,4,1.476,6,1.134,7,1.095,9,0.142,11,0.478,20,1.058,23,0.939,25,0.007,31,2.186,32,1.936,35,1.453,37,0.432,38,0.693,40,1.704,44,1.533,45,4.315,49,1.079,60,0.763,65,0.281,69,0.599,71,0.894,81,0.887,91,0.611,92,0.934,93,0.405,113,1.478,115,1.058,117,2.581,118,0.748,127,4.047,131,2.453,137,0.371,138,1.689,148,0.135,149,0.142,177,0.78,178,1.583,179,1.227,181,2.004,182,1.134,183,1.134,184,1.04,185,1.873,186,1.04,187,1.095,188,0.955,189,1.076,190,1.058,191,2.302,192,1.076,193,1.552,194,2.04,195,1.095,196,1.463,197,2.353,198,1.095,199,1.095,200,1.134,201,1.076,202,1.611,203,1.095,204,1.134,205,1.076,206,1.134,207,1.058,208,1.058,209,1.611,210,1.873,211,1.058,212,1.076,213,1.076,214,1.04,215,1.134,216,1.095,217,2.154,218,1.095,219,1.076,220,1.095,221,1.095,222,1.095,223,1.076,224,1.134,225,1.076,226,1.095,227,1.134,228,1.076,229,1.134,230,1.076,231,1.04,232,1.166,233,1.134,234,1.937,235,1.134,236,1.058,237,1.076,238,1.134,239,1.076,240,1.134,241,0.988,242,1.134,243,1.076,244,1.633,245,1.134,246,1.058,247,1.134,248,1.076,249,1.134,250,1.04,251,1.134,252,1.076,253,1.04,254,1.076,255,1.005,256,1.134,257,1.076,258,1.134,259,1.134,260,1.076,261,1.134,262,1.076,263,1.134,264,1.04,265,1.134,266,1.058,267,1.076,268,1.134,269,1.076,270,1.095,271,1.134,272,1.058,273,1.076,274,1.917,275,1.076,276,1.095,277,0.939,278,1.095,279,1.095,280,1.076,281,1.095,282,1.095,283,1.095,284,1.134,285,1.058,286,1.076,287,1.134,288,1.076,289,1.095,290,1.076,291,1.134,292,1.076,293,1.134,294,1.095,295,1.005,296,1.076,297,1.134,298,1.076,299,1.134,300,1.076,301,1.134,302,1.076,303,1.023,304,1.04,305,1.134,306,1.058,307,1.134,308,1.058,309,1.134,310,1.058,311,1.134,312,1.058,313,1.134,314,1.058,315,1.114,316,1.134,317,1.058,318,1.114,319,1.134,320,0.004,321,0.004,357,0.821,418,1.941,515,3.159,584,3.215,585,4.836,685,2.3,902,3.884,937,2.893,938,3.196,941,1.464,1009,2.879,1191,2.349,1224,2.639,1344,3.908,1608,2.879,2033,6.179,2297,7.972,2298,7.101,2299,4.195,2300,5.308,2301,5.959,2302,5.959,2303,7.547,2304,5.959,2305,4.195,2306,5.308,2307,4.304,2308,4.195,2309,4.195,2310,5.959,2311,4.195,2312,4.195,2313,4.195,2314,5.959]],["title/modules/IoModule.html",[322,1.092,1885,3.461]],["body/modules/IoModule.html",[2,0.309,3,0.319,9,0.202,24,2.233,25,0.007,40,1.151,63,2.009,65,0.339,115,2.468,137,0.529,138,2.41,146,3.136,148,0.281,149,0.202,177,1.113,212,2.49,213,2.49,214,1.876,234,2.511,266,2.468,317,2.448,320,0.005,321,0.005,322,1.638,324,2.463,328,3.185,329,2.172,330,2.009,332,4.271,333,2.64,627,3.591,628,2.702,630,5.993,1432,5.331,1445,4.579,1447,4.579,1458,5.331,1885,6.838,2269,4.9,2298,5.331,2315,5.331,2316,5.331,2317,5.331,2318,5.985,2319,5.985,2320,5.985,2321,5.985,2322,5.985]],["title/interfaces/ItemConfig.html",[337,1.436,1872,3.052]],["body/interfaces/ItemConfig.html",[2,0.263,3,0.272,9,0.172,11,0.581,25,0.007,37,0.525,38,1.085,39,2.246,43,1.328,46,2.302,48,2.87,49,0.975,60,1.214,61,3.756,65,0.241,69,0.838,70,1.866,77,2.333,79,1.999,90,5.922,93,0.949,121,2.687,123,4.285,131,2.806,148,0.164,149,0.308,196,1.204,232,1.334,320,0.005,321,0.005,337,1.942,342,3.727,343,3.62,353,2.012,354,3.451,355,5.151,513,3.236,531,4.32,558,4.289,570,3.155,599,4.68,685,2.964,828,7.305,872,5.533,908,4.472,941,2.861,960,3.981,974,2.703,1008,3.981,1017,3.344,1045,4.127,1050,4.788,1062,6.073,1191,3.232,1219,5.216,1241,4.924,1546,4.472,1671,4.68,1675,6.073,1678,3.086,1680,6.073,1705,4.542,1716,5.378,1872,4.964,2081,4.127,2187,6.715,2323,5.099,2324,6.073,2325,6.715,2326,8.201,2327,6.818,2328,6.843,2329,7.305,2330,6.818,2331,6.818,2332,6.073,2333,6.818,2334,5.216,2335,6.073,2336,4.924]],["title/components/ListComponent.html",[0,0.202,236,1.272]],["body/components/ListComponent.html",[0,0.278,1,0.677,2,0.136,3,0.141,4,1.114,6,0.713,7,0.689,8,0.957,9,0.089,11,0.301,16,1.041,20,0.665,22,2.483,23,0.591,25,0.007,30,1.285,31,2.146,32,1.895,35,0.643,37,0.777,38,0.608,39,1.383,40,1.658,43,1.26,44,1.334,46,0.665,47,1.136,48,2.703,49,0.6,50,2.773,51,1.993,60,0.888,64,2.16,65,0.245,69,0.765,71,1.101,75,0.853,76,1.38,77,1.79,80,1.382,81,1.103,82,1.743,89,2.15,91,1.01,92,0.95,93,0.702,113,1.041,115,0.665,118,0.818,126,1.928,137,0.233,148,0.085,149,0.089,164,1.544,175,4.982,177,0.49,178,1.115,179,0.864,180,1.767,181,1.584,182,0.713,183,0.713,184,0.654,185,1.414,186,0.654,187,0.689,188,0.601,189,0.677,190,0.665,191,1.966,192,0.677,193,1.172,194,1.612,195,0.689,196,1.702,197,2.041,198,0.689,199,0.689,200,0.713,201,0.677,202,1.135,203,0.689,204,0.713,205,0.677,206,0.713,207,0.665,208,0.665,209,1.376,210,1.414,211,0.665,212,0.677,213,0.677,214,0.654,215,0.713,216,0.689,217,1.76,218,0.689,219,0.677,220,0.689,221,0.689,222,0.689,223,0.677,224,0.713,225,0.677,226,0.689,227,0.713,228,0.677,229,0.713,230,0.677,231,0.654,232,1.84,233,0.713,234,0.677,235,0.713,236,1.749,237,0.677,238,0.713,239,0.677,240,0.713,241,0.622,242,0.713,243,0.677,244,1.233,245,0.713,246,0.665,247,0.713,248,0.677,249,0.713,250,0.654,251,0.713,252,0.677,253,0.654,254,0.677,255,0.632,256,0.713,257,0.677,258,0.713,259,0.713,260,0.677,261,0.713,262,0.677,263,0.713,264,0.654,265,0.713,266,0.665,267,0.677,268,0.713,269,0.677,270,0.689,271,0.713,272,0.665,273,0.677,274,1.663,275,0.677,276,0.689,277,1.172,278,0.689,279,0.689,280,0.677,281,0.689,282,0.689,283,0.689,284,0.713,285,0.665,286,0.677,287,0.713,288,0.677,289,0.689,290,0.677,291,0.713,292,0.677,293,0.713,294,0.689,295,0.632,296,0.677,297,0.713,298,0.677,299,0.713,300,0.677,301,0.713,302,0.677,303,0.643,304,0.654,305,0.713,306,0.665,307,0.713,308,0.665,309,0.713,310,0.665,311,0.713,312,0.665,313,0.713,314,0.665,315,0.701,316,0.713,317,0.665,318,0.701,319,0.713,320,0.003,321,0.003,340,1.11,345,0.909,346,3.791,348,4.392,349,1.196,353,2.354,354,2.202,357,0.822,358,3.791,362,1.822,378,3.941,388,4.563,390,3.054,425,0.939,427,1.062,434,2.122,444,1.977,447,2.226,448,2.627,454,1.808,487,3.741,492,3.07,499,4.002,511,1.489,518,2.362,519,3.013,524,3.741,532,3.438,541,4.548,547,1.54,676,1.811,681,1.937,685,1.018,705,1.285,808,5.291,868,1.285,874,1.811,918,2.226,932,4.096,941,1.465,947,1.555,948,2.295,959,2.985,974,1.399,987,4.002,1012,1.811,1013,1.811,1037,3.213,1063,2.452,1086,1.597,1191,2.062,1236,2.549,1263,2.452,1379,2.35,1410,2.754,1413,1.54,1602,2.018,1657,2.754,1676,2.35,1854,3.033,1863,2.16,1932,3.438,2083,2.642,2084,2.642,2103,1.66,2336,1.905,2337,2.638,2338,4.199,2339,4.199,2340,3.438,2341,3.438,2342,5.964,2343,5.313,2344,5.964,2345,5.964,2346,5.964,2347,5.964,2348,4.199,2349,5.964,2350,5.231,2351,4.75,2352,5.777,2353,2.35,2354,4.199,2355,3.438,2356,2.638,2357,2.638,2358,2.638,2359,2.638,2360,2.638,2361,2.638,2362,2.638,2363,2.638,2364,2.638,2365,4.563,2366,2.638,2367,2.638,2368,3.741,2369,2.638,2370,4.199,2371,4.563,2372,4.199,2373,3.741,2374,3.741,2375,2.638,2376,2.638,2377,2.638,2378,2.638,2379,3.438,2380,4.199,2381,2.638,2382,2.638,2383,5.964,2384,4.199,2385,2.638,2386,2.638,2387,2.638,2388,2.638,2389,2.638,2390,2.638,2391,2.638,2392,1.905,2393,2.638,2394,2.638,2395,2.638,2396,2.638,2397,5.8,2398,2.638,2399,2.16,2400,2.638,2401,2.35,2402,2.638,2403,4.199,2404,2.638,2405,4.199,2406,2.638,2407,2.16,2408,2.638,2409,2.35,2410,2.638,2411,2.638,2412,2.35,2413,2.638,2414,4.199,2415,2.638,2416,3.741,2417,2.638,2418,2.638,2419,2.35,2420,2.638,2421,2.638,2422,2.638,2423,2.638,2424,2.638,2425,6.178,2426,2.638,2427,4.199,2428,2.638,2429,2.638,2430,2.35,2431,2.35,2432,2.638,2433,2.638,2434,2.638,2435,2.638,2436,4.199,2437,2.638,2438,2.638,2439,2.638,2440,4.199,2441,4.199,2442,5.964,2443,2.35]],["title/interfaces/ListConfig.html",[337,1.436,348,2.673]],["body/interfaces/ListConfig.html",[2,0.214,3,0.221,9,0.14,11,0.472,19,2.232,25,0.007,30,1.678,32,1.136,37,0.426,38,0.958,43,0.956,48,2.654,61,2.43,65,0.243,69,0.841,70,1.831,79,2.01,89,2.08,92,0.633,93,0.961,118,1.036,126,1.909,148,0.133,149,0.199,196,1.707,232,1.752,320,0.004,321,0.005,337,1.682,343,3.394,345,2.122,348,3.13,353,2.214,362,1.653,427,2.377,432,5.418,434,1.807,444,3.576,492,4.713,499,6.309,508,4.372,512,4.517,513,2.802,531,2.732,581,3.561,600,2.044,681,2.186,738,3.574,785,4.38,850,3.13,896,3.04,902,4.018,932,3.714,948,3.227,959,3.756,966,2.732,974,2.195,1017,2.715,1026,6.683,1034,6.683,1044,4.835,1051,4.835,1063,5.066,1164,4.264,1191,3.25,1217,3.447,1250,3.13,1252,4.264,1257,3.021,1263,5.066,1600,6.143,1601,6.143,1663,3.872,1690,5.635,1704,3.714,1727,3.872,1814,5.066,1872,4.165,1876,4.835,1956,5.26,2051,4.053,2334,4.517,2351,3.714,2399,4.835,2444,4.141,2445,7.503,2446,6.683,2447,6.683,2448,7.503,2449,7.503,2450,7.503,2451,6.309,2452,6.752,2453,7.503,2454,7.503,2455,5.26,2456,5.26,2457,4.517,2458,5.26,2459,5.905,2460,3.574,2461,5.26,2462,5.26,2463,3.688]],["title/injectables/ListConfigService.html",[436,1.272,541,3.306]],["body/injectables/ListConfigService.html",[2,0.281,3,0.291,9,0.184,25,0.007,30,0.964,37,0.562,38,0.979,43,1.286,44,1.528,46,1.799,49,1.02,65,0.252,69,0.728,70,1.067,71,1.082,79,1.936,81,1.233,82,2.019,91,1.305,92,0.962,93,0.866,137,0.482,147,1.874,148,0.176,149,0.184,196,1.727,320,0.005,321,0.005,349,1.554,353,2.764,362,1.527,436,2.004,531,3.675,541,4.677,583,3.08,879,2.893,902,4.512,1005,2.59,1098,4.808,1252,3.941,1765,3.433,2051,4.895,2461,4.861,2464,7.584,2465,4.175,2466,8.423,2467,7.131,2468,7.131,2469,5.839,2470,7.131,2471,7.131,2472,4.861,2473,7.131,2474,4.468,2475,7.131,2476,5.457,2477,7.131,2478,4.861,2479,7.131,2480,5.457,2481,7.131,2482,5.457,2483,5.457,2484,5.457,2485,5.457,2486,7.131,2487,4.861,2488,7.131,2489,5.457,2490,5.457,2491,5.457,2492,7.943,2493,5.457,2494,7.131,2495,5.457,2496,5.457,2497,7.131,2498,5.457,2499,5.457,2500,7.131,2501,5.457,2502,5.457,2503,5.457,2504,7.131,2505,5.457,2506,5.457,2507,5.457]],["title/components/ListHeaderComponent.html",[0,0.202,237,1.294]],["body/components/ListHeaderComponent.html",[0,0.325,1,0.917,2,0.184,3,0.19,4,0.761,6,0.966,7,0.933,9,0.121,11,0.407,20,0.902,23,0.801,24,1.566,25,0.007,31,2.174,32,1.924,35,1.294,37,0.368,38,0.814,39,1.748,40,1.507,43,1.134,44,1.782,45,3.083,46,2.306,49,0.759,65,0.286,69,0.72,71,1.041,77,2.396,80,1.622,81,1.089,82,1.678,91,1.141,92,0.981,93,0.805,110,2.048,113,1.316,115,0.902,117,1.654,118,0.666,126,1.716,136,1.614,137,0.316,148,0.115,149,0.121,177,0.665,178,1.409,179,1.092,181,1.86,182,0.966,183,0.966,184,0.887,185,1.71,186,0.887,187,0.933,188,0.814,189,0.917,190,0.902,191,2.192,192,0.917,193,1.417,194,1.892,195,0.933,196,1.69,197,2.252,198,0.933,199,0.933,200,0.966,201,0.917,202,1.434,203,0.933,204,0.966,205,0.917,206,0.966,207,0.902,208,0.902,209,1.534,210,1.71,211,0.902,212,0.917,213,0.917,214,0.887,215,0.966,216,0.933,217,2.021,218,0.933,219,0.917,220,0.933,221,0.933,222,0.933,223,0.917,224,0.966,225,1.919,226,0.933,227,0.966,228,0.917,229,0.966,230,0.917,231,0.887,232,1.694,233,0.966,234,0.917,235,0.966,236,0.902,237,1.797,238,0.966,239,0.917,240,0.966,241,0.842,242,0.966,243,0.917,244,1.491,245,0.966,246,0.902,247,0.966,248,0.917,249,0.966,250,0.887,251,0.966,252,0.917,253,0.887,254,0.917,255,0.857,256,0.966,257,0.917,258,0.966,259,0.966,260,0.917,261,0.966,262,0.917,263,0.966,264,0.887,265,0.966,266,0.902,267,0.917,268,0.966,269,0.917,270,0.933,271,0.966,272,1.338,273,0.917,274,1.835,275,0.917,276,0.933,277,0.801,278,0.933,279,0.933,280,0.917,281,0.933,282,0.933,283,0.933,284,0.966,285,0.902,286,0.917,287,0.966,288,0.917,289,0.933,290,0.917,291,0.966,292,0.917,293,0.966,294,0.933,295,0.857,296,0.917,297,0.966,298,0.917,299,0.966,300,0.917,301,0.966,302,0.917,303,0.872,304,0.887,305,0.966,306,0.902,307,0.966,308,0.902,309,0.966,310,0.902,311,0.966,312,0.902,313,0.966,314,0.902,315,0.95,316,0.966,317,0.902,318,0.95,319,0.966,320,0.004,321,0.004,329,1.926,348,3.965,349,1.802,354,2.233,357,0.699,362,1.001,400,2.813,418,1.654,492,4.67,541,5.139,705,1.742,803,1.841,819,3.098,918,2.813,959,3.505,966,3.939,1038,3.212,1044,4.345,1073,3.212,1252,3.832,1263,4.088,1939,3.185,2041,4.06,2083,3.338,2084,3.338,2103,2.249,2353,3.185,2443,3.185,2457,4.06,2464,7.284,2508,7.924,2509,3.575,2510,5.306,2511,5.306,2512,5.306,2513,5.306,2514,5.306,2515,5.306,2516,5.306,2517,3.575,2518,3.575,2519,5.306,2520,3.575,2521,5.306,2522,3.575,2523,4.345,2524,7.836,2525,3.575,2526,5.306,2527,3.575,2528,5.306,2529,3.575,2530,5.306,2531,3.832,2532,3.575,2533,5.733,2534,5.306,2535,3.575,2536,3.185,2537,3.185,2538,3.575,2539,3.575,2540,5.306,2541,3.575,2542,3.575,2543,3.575,2544,3.575]],["title/components/ListItemsComponent.html",[0,0.202,239,1.294]],["body/components/ListItemsComponent.html",[0,0.298,1,0.906,2,0.182,3,0.188,4,0.752,6,0.954,7,0.922,9,0.119,11,0.402,16,1.304,20,0.891,22,2.981,23,0.791,24,1.552,25,0.007,30,1.229,31,2.173,32,1.923,35,1.282,37,0.363,38,0.611,40,1.632,44,1.011,45,2.561,48,2.814,49,0.752,51,3.303,60,0.891,65,0.222,69,0.733,71,1.052,76,0.645,77,2.381,80,1.218,81,0.998,82,1.26,91,0.915,92,0.926,93,0.78,113,1.304,115,0.891,118,0.66,126,1.7,137,0.312,148,0.114,149,0.119,167,3.33,177,0.656,178,1.396,179,1.082,181,1.848,182,0.954,183,0.954,184,0.876,185,1.698,186,0.876,187,0.922,188,0.804,189,0.906,190,0.891,191,2.183,192,0.906,193,1.407,194,1.881,195,0.922,196,1.692,197,2.244,198,0.922,199,0.922,200,0.954,201,0.906,202,1.421,203,0.922,204,0.954,205,0.906,206,0.954,207,0.891,208,0.891,209,1.528,210,1.698,211,0.891,212,0.906,213,0.906,214,0.876,215,0.954,216,0.922,217,2.011,218,0.922,219,0.906,220,0.922,221,0.922,222,0.922,223,0.906,224,0.954,225,0.906,226,0.922,227,0.954,228,0.906,229,0.954,230,0.906,231,0.876,232,1.77,233,0.954,234,0.906,235,0.954,236,0.891,237,0.906,238,0.954,239,2.001,240,0.954,241,0.832,242,0.954,243,0.906,244,1.48,245,0.954,246,0.891,247,0.954,248,0.906,249,0.954,250,0.876,251,0.954,252,0.906,253,0.876,254,0.906,255,0.846,256,0.954,257,0.906,258,0.954,259,0.954,260,0.906,261,0.954,262,0.906,263,0.954,264,0.876,265,0.954,266,0.891,267,0.906,268,0.954,269,0.906,270,0.922,271,0.954,272,0.891,273,0.906,274,1.828,275,0.906,276,0.922,277,0.791,278,0.922,279,0.922,280,0.906,281,0.922,282,0.922,283,0.922,284,0.954,285,0.891,286,0.906,287,0.954,288,0.906,289,0.922,290,0.906,291,0.954,292,0.906,293,0.954,294,0.922,295,0.846,296,0.906,297,0.954,298,0.906,299,0.954,300,0.906,301,0.954,302,0.906,303,0.861,304,0.876,305,0.954,306,0.891,307,0.954,308,0.891,309,0.954,310,0.891,311,0.954,312,0.891,313,0.954,314,0.891,315,0.938,316,0.954,317,0.891,318,0.938,319,0.954,320,0.003,321,0.003,345,1.36,346,4.263,349,1.006,357,0.691,358,4.066,378,3.802,388,5.324,418,1.634,434,2.129,447,2.387,448,2.292,499,4.805,508,2.787,518,2.374,519,2.433,594,2.874,681,2.577,819,3.07,872,3.307,874,3.609,932,4.68,948,3.803,959,2.632,987,4.022,1012,3.609,1013,2.424,1052,2.707,1083,2.967,1191,2.742,1205,3.797,1263,3.07,1409,3.582,1422,2.891,1602,2.701,1642,3.797,2083,3.307,2084,3.307,2103,2.221,2343,5.595,2351,3.307,2355,4.305,2365,4.022,2368,4.683,2425,3.145,2430,4.683,2431,3.145,2457,4.022,2464,7.342,2545,7.988,2546,3.531,2547,5.258,2548,5.258,2549,5.258,2550,5.258,2551,6.959,2552,3.531,2553,5.258,2554,3.531,2555,5.258,2556,4.683,2557,5.258,2558,3.531,2559,3.531,2560,3.531,2561,3.531,2562,3.531,2563,5.258,2564,3.531,2565,5.258,2566,3.531,2567,3.531,2568,3.531,2569,3.145,2570,3.531,2571,3.531,2572,3.531,2573,3.531]],["title/modules/ListModule.html",[322,1.092,2574,3.461]],["body/modules/ListModule.html",[2,0.285,3,0.295,9,0.187,24,2.36,25,0.007,63,1.858,65,0.345,137,0.489,138,2.228,146,3.022,147,1.12,148,0.283,149,0.187,177,1.029,196,1.412,236,2.421,237,2.463,239,2.463,267,2.463,283,2.506,320,0.005,321,0.005,322,1.558,324,2.277,328,3.028,329,2.008,330,1.858,333,1.931,541,5.901,547,3.231,627,3.415,628,2.498,631,4.939,705,2.696,1215,6.932,1877,6.589,1887,5.446,1889,5.901,1899,3.996,1902,4.531,2508,4.929,2545,4.929,2574,6.882,2575,4.929,2576,4.929,2577,4.929,2578,4.929,2579,4.929,2580,6.177,2581,5.533,2582,4.929,2583,4.929,2584,5.533,2585,5.533,2586,5.533,2587,5.533,2588,5.533,2589,5.533,2590,5.533]],["title/components/LoaderComponent.html",[0,0.202,241,1.188]],["body/components/LoaderComponent.html",[0,0.321,1,0.88,2,0.177,3,0.183,4,1.314,6,0.927,7,0.895,8,1.245,9,0.116,11,0.391,20,0.865,23,0.768,25,0.007,30,0.606,31,2.171,32,1.922,35,1.254,37,0.353,38,0.598,40,0.66,43,0.833,49,1.103,60,1.077,64,4.212,65,0.218,66,2.575,67,2.648,69,0.533,71,0.948,76,0.94,79,1.672,80,1.702,81,0.878,82,1.233,91,0.749,92,0.903,93,0.497,107,3.531,109,3.096,113,1.701,115,0.865,118,0.923,121,3.649,123,3.007,126,1.663,131,2.823,135,2.002,137,0.303,139,1.069,147,0.694,148,0.166,149,0.208,177,0.638,178,1.366,179,1.27,180,1.443,181,1.822,182,0.927,183,0.927,184,0.85,185,1.668,186,0.85,187,0.895,188,0.781,189,0.88,190,0.865,191,2.162,192,0.88,193,1.382,194,1.854,195,0.895,196,1.363,197,2.224,198,0.895,199,0.895,200,0.927,201,0.88,202,1.39,203,0.895,204,0.927,205,0.88,206,0.927,207,0.865,208,0.865,209,1.513,210,1.668,211,0.865,212,0.88,213,0.88,214,0.85,215,0.927,216,0.895,217,1.986,218,0.895,219,0.88,220,0.895,221,0.895,222,0.895,223,0.88,224,0.927,225,0.88,226,0.895,227,0.927,228,0.88,229,0.927,230,0.88,231,0.85,232,1.006,233,0.927,234,0.88,235,0.927,236,0.865,237,0.88,238,0.927,239,0.88,240,0.927,241,1.885,242,0.927,243,0.88,244,1.454,245,0.927,246,0.865,247,0.927,248,0.88,249,0.927,250,0.85,251,0.927,252,0.88,253,0.85,254,0.88,255,0.822,256,0.927,257,0.88,258,0.927,259,0.927,260,0.88,261,0.927,262,0.88,263,0.927,264,0.85,265,0.927,266,0.865,267,0.88,268,0.927,269,0.88,270,0.895,271,0.927,272,0.865,273,0.88,274,1.812,275,0.88,276,0.895,277,0.768,278,0.895,279,0.895,280,0.88,281,0.895,282,0.895,283,0.895,284,0.927,285,0.865,286,0.88,287,0.927,288,0.88,289,0.895,290,0.88,291,0.927,292,0.88,293,0.927,294,0.895,295,0.822,296,0.88,297,0.927,298,0.88,299,0.927,300,0.88,301,0.927,302,0.88,303,0.836,304,0.85,305,0.927,306,0.865,307,0.927,308,0.865,309,0.927,310,0.865,311,0.927,312,0.865,313,0.927,314,0.865,315,0.911,316,0.927,317,0.865,318,0.911,319,0.927,320,0.003,321,0.003,330,1.151,338,2.002,345,0.743,349,0.977,357,0.671,362,1.728,425,1.22,427,3.389,436,1.298,452,1.352,477,2.157,496,4.21,502,1.245,510,6.318,571,1.151,581,2.93,583,1.936,584,1.867,600,0.808,601,1.83,602,3.577,626,1.587,676,2.354,721,4.582,803,3.178,808,4.854,816,2.575,834,2.812,933,4.151,953,2.002,959,4.291,1005,3.662,1046,2.624,1052,1.766,1061,3.114,1074,2.506,1075,3.531,1238,3.715,1257,3.452,1394,2.808,1409,4.237,1629,2.076,1663,3.374,1674,2.157,1684,2.249,1702,2.624,1726,2.808,1729,3.114,1803,3.715,1920,2.002,1999,3.531,2013,5.054,2016,4.582,2047,1.671,2083,3.236,2084,3.236,2103,2.157,2164,2.624,2195,2.808,2371,4.723,2460,3.736,2591,3.43,2592,5.144,2593,5.144,2594,3.936,2595,5.144,2596,5.144,2597,5.975,2598,8.573,2599,3.43,2600,5.144,2601,3.43,2602,3.43,2603,4.582,2604,3.43,2605,5.144,2606,3.43,2607,3.43,2608,5.144,2609,2.354,2610,5.247,2611,3.43,2612,2.157,2613,3.43,2614,3.43,2615,5.144,2616,3.43,2617,6.173,2618,3.43,2619,5.144,2620,6.173,2621,6.173,2622,3.43,2623,3.43,2624,3.43,2625,3.43,2626,3.43,2627,2.808,2628,3.43,2629,3.43,2630,3.43,2631,5.144,2632,3.43,2633,3.43,2634,3.43,2635,3.43,2636,3.055,2637,5.144,2638,3.43,2639,3.43]],["title/modules/LoaderModule.html",[322,1.092,1888,3.306]],["body/modules/LoaderModule.html",[2,0.356,3,0.368,9,0.233,24,2.611,25,0.007,63,2.32,65,0.331,137,0.611,146,3.344,148,0.295,149,0.233,177,1.285,241,2.329,320,0.005,321,0.005,322,1.79,324,2.844,328,3.48,329,2.508,330,2.32,333,2.885,627,3.924,628,3.12,933,5.758,1888,6.399,2640,6.157,2641,6.157,2642,6.157,2643,6.157,2644,6.912,2645,5.659,2646,6.912]],["title/injectables/LoaderService.html",[436,1.272,933,3.052]],["body/injectables/LoaderService.html",[2,0.321,3,0.331,9,0.21,11,0.708,25,0.007,37,0.64,38,0.901,43,1.007,49,1.108,60,1.187,65,0.274,69,0.729,71,1.001,79,2.155,80,2.179,81,1.131,82,1.49,88,5.32,91,1.128,92,0.831,93,0.748,118,0.781,121,3.805,137,0.549,148,0.2,149,0.21,241,2.275,320,0.005,321,0.005,402,6.903,436,2.13,474,4.93,496,4.423,510,7.594,626,3.586,933,4.691,1052,3.99,1502,5.09,1663,5.082,2047,3.776,2258,4.525,2371,6.46,2603,6.903,2610,7.096,2645,5.09,2647,6.217,2648,7.75,2649,6.217,2650,6.217,2651,6.217,2652,6.217]],["title/components/LocationMapComponent.html",[0,0.202,243,1.294]],["body/components/LocationMapComponent.html",[0,0.337,1,1.029,2,0.207,3,0.214,4,0.854,5,1.904,6,1.084,7,1.047,9,0.135,11,0.457,20,1.012,23,0.898,25,0.007,30,1.019,31,2.183,32,1.933,33,3.785,35,1.407,37,0.413,40,1.686,43,1.474,49,0.825,65,0.142,69,0.705,71,0.967,76,0.733,79,1.803,81,0.865,82,1.383,89,2.272,91,0.84,92,0.94,93,0.557,113,1.431,115,1.012,117,1.799,118,0.849,137,0.355,147,0.812,148,0.129,149,0.135,162,2.631,175,4.416,177,0.746,178,1.533,179,1.188,181,1.964,182,1.084,183,1.084,184,0.995,185,1.827,186,0.995,187,1.047,188,0.914,189,1.029,190,1.012,191,2.272,192,1.029,193,1.514,194,1.998,195,1.047,196,1.441,197,2.325,198,1.047,199,1.047,200,1.084,201,1.029,202,1.56,203,1.047,204,1.084,205,1.029,206,1.084,207,1.012,208,1.012,209,1.59,210,1.827,211,1.012,212,1.029,213,1.029,214,0.995,215,1.084,216,1.047,217,2.118,218,1.047,219,1.029,220,1.047,221,1.047,222,1.047,223,1.029,224,1.084,225,1.029,226,1.047,227,1.084,228,1.029,229,1.084,230,1.029,231,0.995,232,1.129,233,1.084,234,1.029,235,1.084,236,1.012,237,1.029,238,1.084,239,1.029,240,1.084,241,0.945,242,1.084,243,1.897,244,2.096,245,1.084,246,1.012,247,1.084,248,1.029,249,1.084,250,0.995,251,1.084,252,1.029,253,0.995,254,1.029,255,0.961,256,1.084,257,1.029,258,1.084,259,1.084,260,1.029,261,1.084,262,1.029,263,1.084,264,0.995,265,1.084,266,1.012,267,1.029,268,1.084,269,1.029,270,1.047,271,1.084,272,1.012,273,1.029,274,1.895,275,1.029,276,1.047,277,0.898,278,1.047,279,1.047,280,1.029,281,1.047,282,1.047,283,1.047,284,1.084,285,1.012,286,1.029,287,1.084,288,1.029,289,1.047,290,1.029,291,1.084,292,1.029,293,1.084,294,1.047,295,0.961,296,1.029,297,1.084,298,1.029,299,1.084,300,1.029,301,1.084,302,1.029,303,0.978,304,0.995,305,1.084,306,1.012,307,1.084,308,1.012,309,1.084,310,1.012,311,1.084,312,1.012,313,1.084,314,1.012,315,1.065,316,1.084,317,1.012,318,1.065,319,1.084,320,0.004,321,0.004,345,1.25,434,2.263,444,2.181,447,1.227,448,2.436,558,4.253,785,3.37,909,4.512,947,2.137,1257,2.324,1409,2.065,1832,3.284,1968,3.962,2003,5.536,2004,6.979,2006,6.979,2653,6.884,2654,4.011,2655,6.761,2656,5.772,2657,5.772,2658,5.141,2659,8.408,2660,5.141,2661,5.772,2662,5.772,2663,4.011,2664,8.159,2665,4.011,2666,4.011,2667,4.011,2668,5.772,2669,4.011,2670,5.772,2671,5.141,2672,4.011,2673,5.772,2674,4.011,2675,4.011,2676,4.011,2677,4.011,2678,4.011,2679,4.011,2680,5.772,2681,4.011]],["title/modules/LocationModule.html",[322,1.092,2682,3.641]],["body/modules/LocationModule.html",[0,0.328,2,0.3,3,0.31,9,0.196,11,0.663,24,2.632,25,0.007,49,0.832,63,1.952,65,0.339,71,0.689,81,0.951,91,0.847,92,0.624,93,0.562,137,0.514,138,2.342,139,1.812,146,3.095,147,1.504,148,0.287,149,0.196,177,1.081,243,2.467,244,1.929,246,2.425,248,2.467,320,0.005,321,0.005,322,1.93,324,2.393,328,3.127,329,2.111,330,1.952,332,4.194,333,2.592,400,3.939,498,2.867,621,5.324,626,3.438,627,3.526,628,2.625,629,6.264,630,5.366,649,3.658,782,5.366,783,6.619,1966,6.259,1992,4.762,1999,3.992,2682,7.124,2683,5.18,2684,5.18,2685,5.815,2686,5.18,2687,5.18,2688,5.815,2689,7.43,2690,8.916,2691,5.815,2692,5.815,2693,5.815,2694,4.762,2695,5.18,2696,5.815,2697,5.18,2698,5.815,2699,5.815,2700,8.188,2701,5.815,2702,5.815,2703,5.18,2704,5.815,2705,5.815]],["title/components/LocationPickerComponent.html",[0,0.202,246,1.272]],["body/components/LocationPickerComponent.html",[0,0.333,1,0.844,2,0.17,3,0.175,4,0.7,5,1.561,6,0.889,7,0.859,9,0.111,11,0.375,14,2.366,16,1.665,17,4.539,19,1.884,20,2.05,23,0.737,24,1.982,25,0.007,26,3.397,27,2.813,28,3.397,29,2.813,30,1.341,31,2.167,32,1.917,33,3.269,35,1.215,37,0.339,38,0.579,40,1.779,41,4.224,43,1.432,44,1.658,45,3.7,46,1.915,47,2.891,48,2.202,49,0.713,53,3.269,54,4.224,57,3.017,60,0.638,65,0.268,69,0.755,70,0.975,71,1.09,79,1.215,81,0.972,82,1.729,86,3.135,89,1.694,91,0.978,92,0.925,93,0.648,94,3.135,104,3.135,106,3.421,107,2.566,108,1.884,110,1.923,113,1.236,115,1.82,117,2.366,118,0.843,119,2.724,127,4.744,128,3.361,129,2.516,130,2.516,131,1.354,132,3.017,133,2.516,134,2.516,135,1.92,136,1.485,137,0.291,138,1.324,139,1.025,147,0.666,148,0.106,149,0.111,173,2.069,177,0.611,178,1.324,179,1.026,181,1.784,182,0.889,183,0.889,184,0.816,185,1.627,186,0.816,187,0.859,188,0.749,189,0.844,190,0.83,191,2.132,192,0.844,193,1.348,194,1.815,195,0.859,196,1.341,197,2.196,198,0.859,199,0.859,200,0.889,201,0.844,202,1.347,203,0.859,204,0.889,205,0.844,206,0.889,207,0.83,208,0.83,209,1.492,210,1.627,211,0.83,212,0.844,213,0.844,214,0.816,215,0.889,216,0.859,217,1.95,218,0.859,219,0.844,220,0.859,221,0.859,222,0.859,223,0.844,224,0.889,225,0.844,226,0.859,227,0.889,228,0.844,229,0.889,230,0.844,231,0.816,232,0.975,233,0.889,234,0.844,235,0.889,236,0.83,237,0.844,238,0.889,239,0.844,240,0.889,241,0.775,242,0.889,243,2.024,244,2.168,245,0.889,246,1.915,247,0.889,248,2.024,249,0.889,250,0.816,251,0.889,252,0.844,253,0.816,254,0.844,255,0.788,256,0.889,257,0.844,258,0.889,259,0.889,260,0.844,261,0.889,262,0.844,263,0.889,264,0.816,265,0.889,266,0.83,267,0.844,268,0.889,269,0.844,270,0.859,271,0.889,272,0.83,273,0.844,274,1.789,275,0.844,276,0.859,277,0.737,278,0.859,279,0.859,280,0.844,281,0.859,282,0.859,283,0.859,284,0.889,285,0.83,286,0.844,287,0.889,288,0.844,289,0.859,290,0.844,291,0.889,292,0.844,293,0.889,294,0.859,295,0.788,296,0.844,297,0.889,298,0.844,299,0.889,300,0.844,301,0.889,302,0.844,303,0.802,304,0.816,305,0.889,306,0.83,307,0.889,308,0.83,309,0.889,310,0.83,311,0.889,312,0.83,313,0.889,314,0.83,315,0.874,316,0.889,317,0.83,318,0.874,319,0.889,320,0.003,321,0.003,345,1.303,357,0.975,400,2.642,419,2.375,454,1.416,494,2.146,557,3.612,706,3.135,909,4.183,959,2.495,1060,3.67,1205,3.599,1220,4.44,1641,5.484,1966,5.917,1981,4.081,1984,4.081,1985,4.44,1986,4.081,2170,4.44,2653,7.377,2658,4.44,2671,4.44,2694,2.693,2695,2.93,2697,2.93,2706,3.289,2707,4.44,2708,6.019,2709,4.984,2710,6.715,2711,6.019,2712,2.93,2713,4.984,2714,3.289,2715,3.289,2716,3.289,2717,3.289,2718,3.289,2719,6.715,2720,3.289,2721,3.289,2722,4.984,2723,3.289,2724,3.289,2725,4.984,2726,3.289,2727,3.289,2728,4.984,2729,3.289,2730,3.289,2731,4.984,2732,4.984,2733,3.289,2734,3.289,2735,6.019,2736,3.289,2737,3.289,2738,3.289,2739,3.289,2740,4.984]],["title/components/LocationSearchComponent.html",[0,0.202,248,1.294]],["body/components/LocationSearchComponent.html",[0,0.317,1,1.055,2,0.212,3,0.219,4,0.875,6,1.111,7,1.073,9,0.139,11,0.468,16,1.457,20,1.037,23,0.921,25,0.007,31,2.185,32,1.935,35,1.432,37,0.423,38,0.683,40,1.774,43,1.11,49,0.84,60,0.752,65,0.242,69,0.592,71,0.975,76,0.751,81,0.752,82,1.408,89,2.136,91,0.599,92,0.929,93,0.397,109,3.376,110,1.586,113,1.854,115,1.037,118,0.861,136,1.856,137,0.363,148,0.132,149,0.139,177,0.764,178,1.56,179,1.209,181,1.986,182,1.111,183,1.111,184,1.019,185,1.852,186,1.019,187,1.073,188,0.936,189,1.055,190,1.037,191,2.289,192,1.055,193,1.535,194,2.021,195,1.073,196,1.453,197,2.341,198,1.073,199,1.073,200,1.111,201,1.055,202,1.588,203,1.073,204,1.111,205,1.055,206,1.111,207,1.037,208,1.037,209,1.602,210,1.852,211,1.037,212,1.055,213,1.055,214,1.019,215,1.111,216,1.073,217,2.138,218,1.073,219,1.055,220,1.073,221,1.073,222,1.073,223,1.055,224,1.111,225,1.055,226,1.073,227,1.111,228,1.055,229,1.111,230,1.055,231,1.019,232,1.463,233,1.111,234,1.055,235,1.111,236,1.037,237,1.055,238,1.111,239,1.055,240,1.111,241,0.969,242,1.111,243,1.055,244,2.133,245,1.111,246,1.037,247,1.111,248,1.919,249,1.111,250,1.019,251,1.111,252,1.055,253,1.019,254,1.055,255,0.985,256,1.111,257,1.055,258,1.111,259,1.111,260,1.055,261,1.111,262,1.055,263,1.111,264,1.019,265,1.111,266,1.037,267,1.055,268,1.111,269,1.055,270,1.073,271,1.111,272,1.037,273,1.055,274,1.907,275,1.055,276,1.073,277,0.921,278,1.073,279,1.073,280,1.055,281,1.073,282,1.073,283,1.073,284,1.111,285,1.037,286,1.055,287,1.111,288,1.055,289,1.073,290,1.055,291,1.111,292,1.055,293,1.111,294,1.073,295,0.985,296,1.055,297,1.111,298,1.055,299,1.111,300,1.055,301,1.111,302,1.055,303,1.002,304,1.019,305,1.111,306,1.037,307,1.111,308,1.037,309,1.111,310,1.037,311,1.111,312,1.037,313,1.111,314,1.037,315,1.092,316,1.111,317,1.037,318,1.092,319,1.111,320,0.004,321,0.005,357,1.149,434,2.288,447,1.258,448,2.464,536,4.002,557,3.959,602,2.315,909,3.024,947,2.175,1142,4.803,1546,4.904,1641,5.941,1857,6.123,1966,5.945,1968,4.032,1976,7.544,1981,4.81,2003,5.612,2653,6.935,2694,3.366,2712,3.662,2741,4.111,2742,6.106,2743,5.874,2744,7.478,2745,5.874,2746,4.111,2747,4.111,2748,4.111,2749,5.874,2750,4.111,2751,3.662,2752,4.111,2753,4.111,2754,4.111,2755,4.111]],["title/components/LoginComponent.html",[0,0.202,250,1.25]],["body/components/LoginComponent.html",[0,0.304,1,0.952,2,0.191,3,0.198,4,0.79,6,1.003,7,0.968,8,1.346,9,0.125,11,0.423,16,1.352,20,0.936,23,0.831,25,0.007,30,0.655,31,2.177,32,1.927,35,1.329,37,0.382,38,0.634,40,1.461,43,0.601,44,1.62,49,0.78,60,0.912,65,0.268,69,0.742,71,1.036,76,0.997,77,1.866,81,0.475,82,0.889,91,0.794,92,0.922,93,0.688,98,3.43,110,1.431,113,1.352,115,0.936,118,0.954,131,2.244,136,1.675,137,0.328,139,1.156,147,0.751,148,0.119,149,0.125,177,0.69,178,1.448,179,1.122,180,1.561,181,1.893,182,1.003,183,1.003,184,0.92,185,1.747,186,0.92,187,0.968,188,1.623,189,0.952,190,0.936,191,2.218,192,0.952,193,1.448,194,1.926,195,0.968,196,1.402,197,2.276,198,0.968,199,0.968,200,1.003,201,0.952,202,1.474,203,0.968,204,1.003,205,0.952,206,1.003,207,0.936,208,0.936,209,1.552,210,1.747,211,0.936,212,0.952,213,0.952,214,0.92,215,1.003,216,0.968,217,2.052,218,0.968,219,0.952,220,0.968,221,0.968,222,0.968,223,0.952,224,1.003,225,0.952,226,0.968,227,1.003,228,0.952,229,1.003,230,0.952,231,0.92,232,1.067,233,1.003,234,0.952,235,1.003,236,0.936,237,0.952,238,1.003,239,0.952,240,1.003,241,1.285,242,1.003,243,0.952,244,1.523,245,1.003,246,0.936,247,1.003,248,0.952,249,1.003,250,1.767,251,1.003,252,1.659,253,2.264,254,0.952,255,0.889,256,1.003,257,0.952,258,1.003,259,1.003,260,0.952,261,1.003,262,0.952,263,1.003,264,0.92,265,1.003,266,0.936,267,0.952,268,1.003,269,0.952,270,1.688,271,1.003,272,0.936,273,0.952,274,1.854,275,0.952,276,0.968,277,0.831,278,0.968,279,0.968,280,0.952,281,0.968,282,0.968,283,0.968,284,1.003,285,0.936,286,0.952,287,1.003,288,0.952,289,0.968,290,0.952,291,1.003,292,0.952,293,1.003,294,0.968,295,0.889,296,0.952,297,1.003,298,0.952,299,1.003,300,0.952,301,1.003,302,0.952,303,0.904,304,0.92,305,1.003,306,0.936,307,1.003,308,0.936,309,1.003,310,0.936,311,1.003,312,0.936,313,1.003,314,0.936,315,0.985,316,1.003,317,0.936,318,0.985,319,1.003,320,0.004,321,0.004,343,2.244,357,0.726,418,1.717,421,2.546,434,2.324,438,4.98,447,1.669,448,2.704,469,2.433,496,3.712,519,3.674,584,3.215,587,2.588,588,3.938,590,4.225,591,3.869,596,4.602,599,3.743,600,1.285,623,5.289,625,4.777,636,2.838,689,3.43,690,3.038,700,2.094,922,3.534,923,4.067,936,4.482,937,2.882,938,3.064,941,1.903,970,3.938,1004,3.3,1005,2.588,1006,4.669,1011,2.334,1257,2.196,1656,4.172,1729,3.3,1920,3.184,2756,3.71,2757,4.857,2758,5.638,2759,5.453,2760,4.465,2761,3.304,2762,5.453,2763,4.857,2764,3.71,2765,4.465,2766,4.857,2767,3.71,2768,3.71,2769,3.71,2770,4.172,2771,3.71,2772,3.71,2773,3.71,2774,3.71,2775,3.038,2776,3.038,2777,3.71,2778,3.038,2779,3.71,2780,3.304,2781,3.038,2782,3.71,2783,3.304,2784,3.038,2785,3.038]],["title/components/LoginFormComponent.html",[0,0.202,252,1.294]],["body/components/LoginFormComponent.html",[0,0.325,1,0.776,2,0.156,3,0.161,4,0.644,6,0.818,7,0.79,8,1.098,9,0.102,11,0.345,16,1.159,19,1.143,20,0.763,21,2.461,23,0.678,25,0.007,30,1.353,31,2.16,32,1.909,35,1.14,37,0.311,38,0.543,39,1.54,40,1.649,43,1.282,44,1.562,46,2.092,47,2.013,49,0.919,52,2.902,65,0.27,69,0.702,70,1.118,71,1.089,76,0.855,80,1.083,81,0.94,82,1.121,91,0.832,92,0.89,93,0.552,113,1.159,115,0.763,117,2.89,118,1.06,124,2.73,131,2.646,132,3.891,137,0.267,138,1.218,147,0.612,148,0.097,149,0.193,177,0.562,178,1.242,179,0.962,180,1.273,181,1.708,182,0.818,183,0.818,184,0.75,185,1.544,186,0.75,187,0.79,188,1.464,189,0.776,190,0.763,191,2.07,192,0.776,193,1.28,194,1.738,195,0.79,196,1.298,197,2.139,198,0.79,199,0.79,200,0.818,201,0.776,202,1.264,203,0.79,204,0.818,205,0.776,206,0.818,207,0.763,208,0.763,209,1.449,210,1.544,211,0.763,212,0.776,213,0.776,214,0.75,215,0.818,216,0.79,217,1.878,218,0.79,219,0.776,220,0.79,221,0.79,222,0.79,223,0.776,224,0.818,225,0.776,226,0.79,227,0.818,228,0.776,229,0.818,230,0.776,231,0.75,232,0.915,233,0.818,234,0.776,235,0.818,236,0.763,237,0.776,238,0.818,239,0.776,240,0.818,241,1.515,242,0.818,243,0.776,244,1.346,245,0.818,246,0.763,247,0.818,248,0.776,249,0.818,250,0.75,251,0.818,252,1.65,253,2.277,254,0.776,255,0.725,256,0.818,257,0.776,258,0.818,259,0.818,260,0.776,261,0.818,262,0.776,263,0.818,264,0.75,265,0.818,266,0.763,267,0.776,268,0.818,269,0.776,270,2.166,271,0.818,272,0.763,273,0.776,274,1.742,275,0.776,276,0.79,277,1.047,278,0.79,279,0.79,280,0.776,281,0.79,282,0.79,283,0.79,284,0.818,285,0.763,286,0.776,287,0.818,288,0.776,289,0.79,290,0.776,291,0.818,292,0.776,293,0.818,294,0.79,295,0.725,296,0.776,297,0.818,298,0.776,299,0.818,300,0.776,301,0.818,302,0.776,303,0.737,304,0.75,305,0.818,306,0.763,307,0.818,308,0.763,309,0.818,310,0.763,311,0.818,312,0.763,313,0.818,314,0.763,315,0.804,316,0.818,317,0.763,318,0.804,319,0.818,320,0.003,321,0.003,329,1.697,345,1.237,354,3.33,357,0.592,425,1.076,434,2.127,436,1.179,446,2.556,447,2.538,448,2.524,452,2.896,474,1.766,490,3.748,496,3.064,508,2.479,537,1.707,557,3.218,584,3.065,585,2.73,590,3.758,597,1.558,689,3.595,723,2.477,922,3.123,937,2.667,938,2.835,943,1.766,947,2.721,1009,2.077,1041,4.413,1049,3.577,1058,2.73,1142,2.73,1224,1.903,1257,1.883,1413,2.73,1633,3.514,1875,6.718,2047,2.278,2758,4.372,2770,4.372,2785,2.477,2786,9.232,2787,7.559,2788,2.695,2789,5.727,2790,4.165,2791,4.165,2792,6.545,2793,5.727,2794,5.727,2795,5.09,2796,6.191,2797,6.191,2798,5.09,2799,5.09,2800,5.09,2801,5.09,2802,3.025,2803,7.348,2804,4.676,2805,4.676,2806,1.54,2807,3.025,2808,4.165,2809,3.025,2810,5.264,2811,4.165,2812,3.025,2813,4.165,2814,3.025,2815,4.165,2816,2.695,2817,4.165,2818,3.025,2819,4.165,2820,3.025,2821,3.376,2822,3.025,2823,3.025,2824,4.165,2825,3.025,2826,4.165,2827,3.025,2828,3.577,2829,4.165,2830,3.025,2831,3.025,2832,4.165,2833,3.025,2834,3.025,2835,3.025,2836,4.165,2837,3.577,2838,3.025,2839,3.025,2840,3.025,2841,2.695,2842,2.695,2843,2.695,2844,3.025,2845,2.695,2846,2.695,2847,2.695,2848,4.165,2849,2.695,2850,2.695,2851,4.165,2852,3.025,2853,3.025,2854,3.025,2855,3.025,2856,2.695,2857,2.695,2858,2.695,2859,2.695,2860,3.025,2861,2.695,2862,2.695,2863,3.828]],["title/pipes/MaxItemsPipe.html",[1213,2.596,1883,3.857]],["body/pipes/MaxItemsPipe.html",[2,0.359,3,0.371,9,0.235,11,0.793,16,1.725,23,1.558,25,0.007,43,1.127,48,2.407,49,0.995,65,0.246,69,0.601,71,0.825,81,1.062,91,1.013,92,0.952,93,0.672,118,0.874,137,0.615,148,0.224,149,0.235,320,0.006,321,0.006,444,3.601,681,3.528,868,4.044,1192,5.37,1213,4.834,1217,4.063,1223,5.995,1631,8.487,1883,6.351,2864,8.302,2865,6.958,2866,7.395,2867,8.302,2868,8.302,2869,6.958,2870,6.958]],["title/components/MediumEditorComponent.html",[0,0.202,254,1.294]],["body/components/MediumEditorComponent.html",[0,0.322,1,0.893,2,0.18,3,0.185,4,0.741,5,1.652,6,0.941,7,0.909,8,1.263,9,0.117,11,0.397,12,2.936,14,4.379,16,1.29,17,3.918,20,0.878,21,2.682,23,0.78,24,2.039,25,0.007,26,3.515,27,2.936,28,3.515,29,2.936,30,0.919,31,2.172,32,1.922,33,3.411,35,1.268,37,0.358,38,0.605,39,2.556,40,1.547,41,4.346,42,5.603,43,1.433,44,1.198,49,0.744,50,2.757,52,3.119,53,3.411,54,4.346,57,3.148,65,0.244,69,0.73,70,1.018,71,1.07,76,0.951,77,1.78,81,0.946,82,1.859,86,3.272,89,1.743,91,0.757,92,0.906,93,0.776,94,3.272,104,3.272,106,3.57,107,2.678,108,3.039,109,3.119,110,1.343,111,3.979,113,1.713,115,0.878,117,1.621,118,0.868,119,2.843,121,2.914,126,1.682,136,1.571,137,0.308,138,1.402,148,0.112,149,0.117,154,2.85,156,2.663,157,3.101,162,3.411,165,3.101,173,2.19,177,0.647,178,1.382,179,1.071,180,1.465,181,1.835,182,0.941,183,0.941,184,0.863,185,1.683,186,0.863,187,0.909,188,0.793,189,0.893,190,0.878,191,2.173,192,0.893,193,1.395,194,1.867,195,0.909,196,1.37,197,2.234,198,0.909,199,0.909,200,0.941,201,0.893,202,1.406,203,0.909,204,0.941,205,0.893,206,0.941,207,0.878,208,0.878,209,1.521,210,1.683,211,0.878,212,0.893,213,0.893,214,0.863,215,0.941,216,0.909,217,1.999,218,0.909,219,0.893,220,0.909,221,0.909,222,0.909,223,0.893,224,0.941,225,0.893,226,0.909,227,0.941,228,0.893,229,0.941,230,0.893,231,0.863,232,1.018,233,0.941,234,0.893,235,0.941,236,0.878,237,0.893,238,0.941,239,0.893,240,0.941,241,0.82,242,0.941,243,0.893,244,1.467,245,0.941,246,0.878,247,0.941,248,0.893,249,0.941,250,0.863,251,0.941,252,0.893,253,0.863,254,1.991,255,2.12,256,0.941,257,0.893,258,0.941,259,0.941,260,0.893,261,0.941,262,0.893,263,0.941,264,0.863,265,0.941,266,0.878,267,0.893,268,0.941,269,0.893,270,0.909,271,0.941,272,0.878,273,0.893,274,1.82,275,0.893,276,0.909,277,0.78,278,0.909,279,0.909,280,0.893,281,0.909,282,0.909,283,0.909,284,0.941,285,0.878,286,0.893,287,0.941,288,0.893,289,0.909,290,0.893,291,0.941,292,0.893,293,0.941,294,0.909,295,0.834,296,0.893,297,0.941,298,0.893,299,0.941,300,0.893,301,0.941,302,0.893,303,0.848,304,0.863,305,0.941,306,0.878,307,0.941,308,0.878,309,0.941,310,0.878,311,0.941,312,0.878,313,0.941,314,0.878,315,0.925,316,0.941,317,0.878,318,0.925,319,0.941,320,0.003,321,0.003,340,2.189,434,2.114,447,1.065,448,2.276,557,3.702,602,2.454,850,2.757,983,2.514,1506,2.85,1710,3.101,2340,4.259,2341,4.259,2365,3.979,2407,2.85,2871,8.107,2872,8.107,2873,3.481,2874,5.202,2875,5.202,2876,5.202,2877,5.547,2878,6.228,2879,5.202,2880,6.155,2881,6.228,2882,3.481,2883,7.759,2884,3.481,2885,3.481,2886,3.481,2887,3.481,2888,4.633,2889,3.481,2890,3.481,2891,3.481,2892,3.481,2893,3.481,2894,3.481,2895,3.481,2896,3.481,2897,3.481,2898,3.481,2899,3.481,2900,3.481,2901,3.481,2902,3.481,2903,3.481,2904,3.481,2905,3.481,2906,2.85,2907,3.481,2908,3.481,2909,3.481,2910,3.481]],["title/modules/MediumEditorModule.html",[322,1.092,2911,3.641]],["body/modules/MediumEditorModule.html",[2,0.342,3,0.353,9,0.224,24,2.735,25,0.007,26,4.906,27,4.906,28,4.906,29,5.23,30,1.637,63,2.227,65,0.319,137,0.586,146,3.285,147,1.343,148,0.298,149,0.224,177,1.233,254,2.565,255,1.59,320,0.005,321,0.005,322,1.746,324,2.731,328,3.395,329,2.408,330,2.227,333,2.315,627,3.828,628,2.995,2871,5.91,2872,5.91,2911,6.887,2912,5.91,2913,5.91,2914,5.91,2915,5.91,2916,6.635,2917,6.635,2918,6.635,2919,6.635]],["title/components/MenuComponent.html",[0,0.202,257,1.294]],["body/components/MenuComponent.html",[0,0.275,1,0.757,2,0.152,3,0.157,4,0.628,5,1.4,6,0.797,7,0.77,9,0.1,11,0.336,15,3.011,16,1.137,20,0.744,22,2.67,23,0.661,25,0.007,30,1.12,31,2.158,32,1.907,33,3.007,35,1.118,37,0.304,38,0.533,40,1.614,43,1.229,44,1.082,48,2.602,49,0.656,51,3.011,60,0.931,65,0.199,69,0.656,70,1.485,71,1.09,80,1.47,81,1.219,82,1.52,89,1.157,91,1.174,92,0.955,93,0.778,110,1.139,113,1.137,115,0.744,118,1.012,124,1.723,126,2.537,137,0.261,147,0.597,148,0.095,149,0.1,164,0.871,177,0.549,178,1.218,179,0.944,181,1.685,182,0.797,183,0.797,184,0.732,185,1.52,186,0.732,187,0.77,188,0.672,189,0.757,190,0.744,191,2.051,192,0.757,193,1.26,194,1.714,195,0.77,196,1.284,197,2.121,198,0.77,199,0.77,200,0.797,201,0.757,202,1.239,203,0.77,204,0.797,205,0.757,206,0.797,207,0.744,208,0.744,209,1.435,210,1.52,211,0.744,212,0.757,213,0.757,214,0.732,215,0.797,216,0.77,217,1.857,218,0.77,219,0.757,220,0.77,221,0.77,222,0.77,223,0.757,224,0.797,225,0.757,226,0.77,227,0.797,228,0.757,229,0.797,230,0.757,231,0.732,232,1.241,233,0.797,234,0.757,235,0.797,236,0.744,237,0.757,238,0.797,239,0.757,240,0.797,241,0.695,242,0.797,243,0.757,244,1.325,245,0.797,246,0.744,247,0.797,248,0.757,249,0.797,250,0.732,251,0.797,252,0.757,253,0.732,254,0.757,255,0.707,256,0.797,257,1.866,258,1.52,259,0.797,260,0.757,261,0.797,262,0.757,263,0.797,264,0.732,265,0.797,266,0.744,267,0.757,268,0.797,269,0.757,270,0.77,271,0.797,272,0.744,273,0.757,274,1.728,275,0.757,276,0.77,277,1.027,278,0.77,279,0.77,280,0.757,281,0.77,282,0.77,283,0.77,284,0.797,285,0.744,286,0.757,287,0.797,288,0.757,289,0.77,290,0.757,291,0.797,292,0.757,293,0.797,294,0.77,295,0.707,296,0.757,297,0.797,298,0.757,299,0.797,300,0.757,301,0.797,302,0.757,303,0.719,304,0.732,305,0.797,306,0.744,307,0.797,308,0.744,309,0.797,310,0.744,311,0.797,312,0.744,313,0.797,314,0.744,315,0.784,316,0.797,317,0.744,318,0.784,319,0.797,320,0.003,321,0.003,330,1.54,342,4.823,343,2.828,345,1.218,357,0.577,392,3.007,395,3.755,433,4.775,436,1.157,444,2.398,489,5.148,494,1.975,508,2.431,513,3.011,570,1.365,581,3.011,595,1.723,601,1.05,602,2.217,681,1.698,827,3.007,868,3.543,872,4.937,909,2.361,918,2.431,927,5.403,1060,3.975,1249,6.6,1390,2.025,1629,2.776,1920,2.677,2612,2.885,2920,2.951,2921,8.736,2922,5.625,2923,4.586,2924,8.239,2925,8.239,2926,6.344,2927,4.586,2928,4.586,2929,4.586,2930,4.586,2931,4.586,2932,6.344,2933,4.085,2934,4.586,2935,6.87,2936,6.87,2937,2.628,2938,4.586,2939,4.586,2940,6.344,2941,4.586,2942,4.586,2943,4.586,2944,2.951,2945,7.273,2946,4.586,2947,3.755,2948,2.951,2949,2.951,2950,2.951,2951,2.951,2952,2.951,2953,4.586,2954,4.586,2955,2.951,2956,2.951,2957,4.586,2958,4.586,2959,2.951,2960,4.586,2961,2.951,2962,4.586,2963,2.951,2964,4.586,2965,4.586,2966,2.951,2967,4.586,2968,4.586,2969,2.951,2970,4.085,2971,4.586,2972,2.951,2973,2.951,2974,4.586,2975,2.951,2976,4.586,2977,2.951,2978,2.951,2979,2.951,2980,5.01,2981,2.951,2982,4.586,2983,2.951,2984,2.951,2985,2.951,2986,2.951,2987,2.951,2988,5.625,2989,2.951,2990,5.625,2991,2.951,2992,4.586,2993,2.951,2994,2.951,2995,2.951,2996,2.951,2997,2.951,2998,6.344,2999,5.625,3000,2.951,3001,2.951,3002,2.951,3003,5.625,3004,2.951,3005,4.586,3006,4.586,3007,4.586,3008,2.951,3009,2.951,3010,2.951]],["title/components/ModalComponent.html",[0,0.202,260,1.294]],["body/components/ModalComponent.html",[0,0.272,1,0.736,2,0.148,3,0.153,4,1.827,5,2.13,6,1.213,7,0.749,8,1.042,9,0.097,11,0.327,16,1.113,19,1.696,20,0.724,21,2.379,22,2.623,23,0.643,25,0.007,30,1.327,31,2.155,32,1.906,35,1.094,37,0.295,38,0.726,39,1.821,40,1.65,43,1.217,44,1.752,49,0.642,50,2.379,51,2.966,52,2.821,58,6.112,60,0.574,65,0.195,69,0.816,70,1.521,71,1.119,79,2.063,80,1.28,81,0.961,82,1.723,89,1.132,91,0.91,92,0.893,93,0.789,98,2.823,107,3.217,109,4.061,110,1.107,113,1.783,115,0.724,118,0.943,128,4.237,137,0.254,144,2.823,147,0.581,148,0.092,149,0.254,158,3.997,164,1.325,167,2.379,177,0.534,178,1.192,179,0.924,180,1.208,181,1.66,182,0.776,183,0.776,184,0.712,185,1.493,186,0.712,187,0.749,188,0.654,189,0.736,190,0.724,191,2.03,192,0.736,193,1.238,194,1.689,195,0.749,196,1.27,197,2.101,198,0.749,199,0.749,200,0.776,201,0.736,202,1.213,203,0.749,204,0.776,205,0.736,206,0.776,207,0.724,208,0.724,209,1.421,210,1.493,211,0.724,212,0.736,213,0.736,214,0.712,215,0.776,216,0.749,217,1.833,218,0.749,219,0.736,220,0.749,221,0.749,222,0.749,223,0.736,224,0.776,225,0.736,226,0.749,227,0.776,228,0.736,229,0.776,230,0.736,231,0.712,232,0.878,233,0.776,234,0.736,235,0.776,236,0.724,237,0.736,238,0.776,239,0.736,240,0.776,241,0.676,242,0.776,243,0.736,244,1.302,245,0.776,246,0.724,247,0.776,248,0.736,249,0.776,250,0.712,251,0.776,252,0.736,253,0.712,254,0.736,255,0.688,256,0.776,257,0.736,258,0.776,259,0.776,260,1.604,261,0.776,262,0.736,263,0.776,264,0.712,265,0.776,266,0.724,267,0.736,268,0.776,269,0.736,270,0.749,271,0.776,272,2.234,273,0.736,274,1.712,275,0.736,276,0.749,277,0.643,278,0.749,279,0.749,280,0.736,281,0.749,282,0.749,283,0.749,284,0.776,285,0.724,286,0.736,287,0.776,288,0.736,289,0.749,290,0.736,291,0.776,292,0.736,293,0.776,294,0.749,295,0.688,296,0.736,297,0.776,298,0.736,299,0.776,300,0.736,301,0.776,302,0.736,303,0.7,304,0.712,305,0.776,306,0.724,307,0.776,308,0.724,309,0.776,310,0.724,311,0.776,312,0.724,313,0.776,314,0.724,315,0.762,316,0.776,317,0.724,318,0.762,319,0.776,320,0.003,321,0.003,340,2.63,345,0.972,346,3.93,357,0.878,358,4.106,362,1.898,434,1.373,436,1.132,444,1.696,447,1.373,448,0.945,452,2.833,454,1.932,477,2.823,518,1.296,571,1.855,573,2.943,581,3.88,626,2.076,816,1.436,819,3.649,822,3.433,868,1.398,948,3.02,953,1.676,960,2.62,966,3.971,1005,3.566,1038,2.716,1054,1.97,1055,1.882,1057,3.793,1058,2.62,1063,3.226,1064,3.674,1083,1.62,1236,2.692,1252,3.241,1257,2.731,1263,4.386,1394,3.674,1397,3.08,1409,1.477,1410,1.882,1413,1.676,1545,5.042,1547,3.991,1549,3.241,1550,3.241,1551,3.991,1557,1.97,1558,2.196,1559,1.737,1560,2.196,1561,2.196,1563,2.196,1564,3.674,1565,3.793,1567,2.072,1568,2.196,1569,1.882,1575,2.196,1576,3.241,1577,2.072,1578,2.196,1579,1.805,1580,5.192,1581,2.072,1582,2.196,1583,2.072,1584,2.196,1591,2.196,1592,1.882,1593,2.196,1594,2.196,1597,2.196,1629,2.716,1670,3.997,1678,4.547,1714,3.674,1871,3.433,2081,2.716,2093,3.997,2169,2.35,2174,4.781,2226,2.716,2373,4.922,2537,2.556,2806,1.478,3011,2.87,3012,6.373,3013,3.433,3014,3.433,3015,4.488,3016,4.488,3017,4.488,3018,4.488,3019,7.775,3020,6.782,3021,6.692,3022,4.488,3023,4.488,3024,2.943,3025,2.87,3026,4.488,3027,2.87,3028,8.174,3029,2.87,3030,2.87,3031,2.87,3032,2.87,3033,3.674,3034,4.488,3035,4.488,3036,4.488,3037,2.87,3038,2.87,3039,3.674,3040,2.87,3041,2.87,3042,2.87,3043,2.87,3044,2.87,3045,4.488,3046,2.87,3047,4.488,3048,4.488,3049,4.488,3050,2.87,3051,2.556,3052,2.87,3053,4.922,3054,4.488,3055,2.87,3056,2.87,3057,2.87,3058,2.87,3059,2.87,3060,2.87,3061,2.87,3062,2.87,3063,2.87,3064,2.87,3065,4.488]],["title/interfaces/ModelConfig.html",[337,1.436,934,3.306]],["body/interfaces/ModelConfig.html",[2,0.371,3,0.384,9,0.243,11,0.821,25,0.007,37,0.741,38,0.985,46,2.422,65,0.254,69,0.622,79,2.065,93,0.818,148,0.232,320,0.006,321,0.006,337,2.647,349,2.052,681,3.137,685,3.269,896,4.362,934,5.556,979,4.944,1017,4.723,1042,4.021,1074,4.128,1626,5.556,1716,6.094,3066,5.201,3067,6.937,3068,5.128]],["title/injectables/ModelConfigService.html",[436,1.272,935,2.944]],["body/injectables/ModelConfigService.html",[0,0.193,2,0.162,3,0.168,8,2.383,9,0.106,11,0.668,19,1.19,25,0.007,30,1.506,37,0.324,38,0.955,43,1.209,46,2.289,47,2.076,48,1.699,49,0.939,65,0.29,69,0.765,70,1.787,71,0.974,75,1.894,79,1.954,80,1.903,81,1.214,91,1.131,92,0.881,93,0.75,108,3.473,117,2.205,118,1.1,121,2.587,131,1.984,135,2.814,137,0.278,139,0.981,147,1.726,148,0.101,149,0.239,164,1.938,209,1.108,320,0.003,321,0.004,341,3.448,343,2.913,345,1.268,349,0.897,353,2.841,354,3.589,355,1.777,357,0.616,362,1.981,401,3.705,405,2.161,411,2.411,413,3.072,416,1.421,419,2.273,433,3.032,436,1.785,454,2.076,469,2.064,498,1.215,515,3.48,518,2.176,549,2.273,557,3.286,558,3.032,587,3.116,601,1.12,602,2.789,681,2.621,705,1.534,771,3.688,832,3.309,868,1.534,873,3.161,896,4.126,902,1.534,906,6.563,907,2.635,924,2.635,934,3.161,935,2.814,937,2.126,938,2.533,940,4.896,941,2.29,974,1.669,979,5.756,1008,1.838,1023,3.481,1063,2.814,1069,4.518,1071,3.161,1090,2.064,1094,5.391,1095,3.161,1104,2.064,1133,1.838,1157,3.973,1168,2.804,1186,2.273,1191,2.587,1219,2.408,1236,1.534,1250,3.751,1595,2.161,1632,3.688,1633,3.202,1674,3.032,1714,2.577,1716,5.499,1754,4.858,1767,2.408,2125,4.294,2187,2.577,2202,6.112,2221,4.294,2325,2.577,2392,3.481,2465,2.408,2469,3.947,2474,2.577,2531,3.481,2610,5.414,3039,4.797,3066,6.055,3067,3.947,3068,3.973,3069,3.947,3070,3.688,3071,4.294,3072,6.565,3073,4.821,3074,6.565,3075,4.821,3076,4.821,3077,6.565,3078,3.148,3079,4.821,3080,8.529,3081,3.148,3082,4.821,3083,4.294,3084,4.821,3085,4.294,3086,4.821,3087,4.821,3088,4.821,3089,3.148,3090,3.148,3091,3.842,3092,4.821,3093,3.148,3094,4.294,3095,4.294,3096,4.821,3097,4.821,3098,3.947,3099,4.821,3100,3.148,3101,4.821,3102,4.821,3103,3.148,3104,3.148,3105,6.921,3106,3.148,3107,4.821,3108,3.148,3109,3.148,3110,3.148,3111,3.148,3112,4.821,3113,3.148,3114,3.688,3115,3.148,3116,4.821,3117,3.148,3118,2.804,3119,2.804,3120,2.804,3121,4.821,3122,4.294,3123,4.294,3124,4.821,3125,3.148,3126,3.148,3127,3.148,3128,3.148,3129,3.148,3130,3.148,3131,6.565,3132,3.148,3133,3.148,3134,3.148,3135,2.804,3136,3.148,3137,3.148,3138,3.148,3139,3.148,3140,3.148,3141,3.148,3142,4.821,3143,3.148,3144,3.148,3145,3.148,3146,3.148,3147,3.148,3148,3.148,3149,3.148,3150,4.294,3151,4.294,3152,3.148,3153,3.148,3154,3.148,3155,4.821,3156,4.821,3157,3.148,3158,3.148,3159,3.148,3160,3.148,3161,3.148,3162,2.804,3163,3.148,3164,2.804,3165,2.804,3166,2.804,3167,2.408,3168,3.148,3169,3.148,3170,3.148,3171,3.148,3172,4.821,3173,3.148,3174,3.148,3175,4.821,3176,3.148,3177,3.148,3178,3.148,3179,3.148,3180,3.148,3181,2.804,3182,3.148,3183,3.148]],["title/interfaces/ModelConfiguration.html",[337,1.436,3184,4.491]],["body/interfaces/ModelConfiguration.html",[2,0.371,3,0.384,9,0.243,11,0.821,25,0.007,37,0.741,38,0.985,46,2.422,65,0.254,69,0.622,79,2.065,93,0.818,148,0.232,320,0.006,321,0.006,337,2.647,349,2.052,681,3.137,685,3.269,896,4.362,979,4.944,1042,4.021,1074,4.128,1626,5.556,1716,6.094,3066,5.201,3067,6.937,3068,5.128,3184,7.547,3185,7.203]],["title/classes/Notification.html",[149,0.17,590,2.333]],["body/classes/Notification.html",[2,0.397,3,0.273,9,0.173,11,0.877,25,0.007,30,1.207,32,1.315,37,0.527,38,0.795,43,1.107,60,0.875,65,0.181,69,0.844,70,1.809,71,1.131,79,2.278,80,2.04,91,0.745,92,0.549,93,0.948,126,2.21,131,2.814,148,0.165,149,0.231,264,2.183,320,0.005,321,0.005,343,3.759,345,1.666,357,1.506,401,3.858,444,2.909,454,2.944,508,3.624,518,3.086,581,4.179,582,4.3,584,3.545,585,5.141,587,3.245,590,4.588,681,3.042,700,4.97,803,4.229,936,3.858,959,3.422,967,3.898,1005,3.898,1011,5.167,1191,3.47,1241,4.937,1409,4.533,1475,6.044,1592,4.483,1629,4.138,1704,4.3,1707,4.192,2243,6.09,2523,5.598,2531,4.937,2758,4.3,3053,4.56,3186,5.119,3187,6.837,3188,6.837,3189,6.837,3190,5.387,3191,5.119,3192,5.119,3193,5.119,3194,4.693,3195,5.119,3196,5.119,3197,6.09,3198,4.693,3199,5.119,3200,6.837,3201,5.119,3202,6.837,3203,5.119,3204,6.837,3205,5.119,3206,4.56,3207,4.56]],["title/components/NotificationsComponent.html",[0,0.202,264,1.25]],["body/components/NotificationsComponent.html",[0,0.338,1,0.892,2,0.179,3,0.185,4,1.106,6,1.682,7,0.907,8,1.886,9,0.117,11,0.396,16,1.288,20,0.877,23,0.778,25,0.007,30,0.614,31,2.172,32,1.922,35,1.267,37,0.358,38,0.723,40,1.422,43,0.563,44,0.999,60,0.884,61,1.431,65,0.244,69,0.67,71,0.738,76,1.137,77,1.19,79,1.802,80,1.204,81,0.796,91,0.506,92,0.886,93,0.502,113,1.288,115,0.877,118,0.974,126,1.68,137,0.307,145,2.846,148,0.222,149,0.262,177,0.646,178,1.38,179,1.069,180,1.463,181,1.834,182,0.939,183,0.939,184,0.862,185,1.682,186,0.862,187,0.907,188,0.792,189,0.892,190,0.877,191,2.172,192,0.892,193,1.394,194,1.866,195,0.907,196,1.37,197,2.233,198,0.907,199,0.907,200,0.939,201,0.892,202,1.404,203,0.907,204,0.939,205,0.892,206,0.939,207,0.877,208,0.877,209,1.52,210,1.682,211,0.877,212,0.892,213,0.892,214,0.862,215,0.939,216,0.907,217,1.997,218,0.907,219,0.892,220,0.907,221,0.907,222,0.907,223,0.892,224,0.939,225,0.892,226,0.907,227,0.939,228,0.892,229,0.939,230,0.892,231,0.862,232,1.017,233,0.939,234,0.892,235,0.939,236,0.877,237,0.892,238,0.939,239,0.892,240,0.939,241,0.819,242,0.939,243,0.892,244,1.466,245,0.939,246,0.877,247,0.939,248,0.892,249,0.939,250,0.862,251,0.939,252,0.892,253,0.862,254,0.892,255,0.833,256,0.939,257,0.892,258,0.939,259,0.939,260,0.892,261,0.939,262,0.892,263,0.939,264,1.833,265,0.939,266,0.877,267,0.892,268,0.939,269,0.892,270,0.907,271,0.939,272,0.877,273,0.892,274,1.82,275,0.892,276,0.907,277,0.778,278,0.907,279,0.907,280,0.892,281,0.907,282,0.907,283,0.907,284,0.939,285,0.877,286,0.892,287,0.939,288,0.892,289,0.907,290,0.892,291,0.939,292,0.892,293,0.939,294,0.907,295,0.833,296,0.892,297,0.939,298,0.892,299,0.939,300,0.892,301,0.939,302,0.892,303,0.847,304,0.862,305,0.939,306,0.877,307,0.939,308,0.877,309,0.939,310,0.877,311,0.939,312,0.877,313,0.939,314,0.877,315,0.923,316,0.939,317,0.877,318,0.923,319,0.939,320,0.003,321,0.003,322,0.753,337,0.99,343,3.191,349,0.99,357,1.017,392,2.28,425,1.237,444,1.964,502,1.262,518,1.569,584,2.999,585,3.633,587,2.466,590,4.538,591,4.026,601,2.214,604,5.095,626,1.608,681,1.287,685,1.341,700,3.512,726,2.187,738,2.104,771,2.659,803,4.138,808,4.878,834,1.9,868,1.694,923,3.269,936,4.171,947,1.924,959,3.456,960,2.03,967,2.466,1004,3.145,1005,3.922,1006,4.494,1009,2.386,1011,3.914,1042,1.65,1049,2.659,1052,1.79,1061,2.104,1066,2.03,1074,2.532,1112,2.51,1191,2.452,1236,1.694,1257,2.092,1344,2.28,1409,3.805,1475,2.386,1509,2.51,1569,4.528,1579,3.269,1629,2.104,1684,4.081,1727,4.081,1920,2.03,1999,3.567,2037,3.096,2047,2.532,2094,1.843,2266,2.846,2379,4.255,2419,3.096,2458,3.096,2556,4.629,2597,3.567,2609,3.567,2612,3.269,2758,3.269,2837,2.659,3091,2.28,3118,4.629,3190,2.28,3208,3.476,3209,5.196,3210,5.196,3211,5.196,3212,5.196,3213,3.476,3214,2.659,3215,3.476,3216,2.28,3217,5.196,3218,3.476,3219,6.223,3220,6.223,3221,5.196,3222,3.476,3223,3.476,3224,3.476,3225,3.476,3226,3.096,3227,3.476,3228,3.476,3229,3.476,3230,3.476,3231,3.476,3232,2.659,3233,2.659,3234,3.476,3235,3.476,3236,5.196,3237,3.476,3238,3.476,3239,5.196,3240,3.476,3241,3.476,3242,3.476,3243,3.476,3244,3.096,3245,6.223,3246,3.476,3247,3.476,3248,3.476,3249,3.476,3250,6.223,3251,5.543,3252,3.476,3253,3.476,3254,3.476,3255,3.476,3256,3.476,3257,5.196,3258,3.476,3259,3.096,3260,4.629,3261,3.096,3262,3.476]],["title/modules/NotificationsModule.html",[322,1.092,3263,3.641]],["body/modules/NotificationsModule.html",[2,0.331,3,0.342,9,0.217,24,2.64,25,0.007,63,2.158,65,0.34,137,0.568,146,3.239,148,0.288,149,0.217,177,1.195,223,2.514,264,2.429,320,0.005,321,0.005,322,1.713,324,2.645,328,3.329,329,2.333,330,2.158,333,2.76,362,1.799,591,4.556,627,3.755,628,2.902,649,4.043,1886,6.132,1887,5.66,1892,5.262,1899,4.641,3206,5.725,3244,5.725,3263,7.16,3264,5.725,3265,5.725,3266,6.427,3267,5.725,3268,5.725,3269,6.427,3270,6.427,3271,5.725]],["title/injectables/NotificationsService.html",[436,1.272,591,2.456]],["body/injectables/NotificationsService.html",[0,0.26,2,0.245,3,0.253,9,0.16,11,0.54,24,2.541,25,0.007,30,1.406,32,1.248,37,0.488,38,0.754,43,1.199,44,1.656,49,0.928,60,0.831,65,0.281,69,0.72,71,1.045,75,1.533,76,1.573,77,2.221,79,1.804,81,1.149,82,1.136,91,1.078,92,0.794,93,0.715,98,4.083,118,1.107,121,2.558,137,0.419,143,4.223,146,1.792,147,1.498,148,0.153,149,0.16,320,0.004,321,0.004,322,1.405,345,1.602,357,1.448,392,3.109,407,4.083,436,2.171,444,2.453,446,3.548,454,2.041,508,3.441,511,3.663,519,3.003,537,4.859,582,2.982,585,2.768,590,4.614,591,3.162,596,4.905,597,3.342,602,3.137,626,3.003,648,5.315,649,4.083,675,6.586,706,2.982,755,3.254,803,3.342,873,3.109,947,3.188,1011,2.982,1023,4.687,1052,2.441,1057,3.254,1112,4.687,1250,3.441,1257,3.205,1409,4.098,1678,2.87,1727,3.109,1844,3.109,2365,7.046,2392,4.687,3207,4.223,3251,4.223,3259,4.223,3260,5.782,3261,4.223,3271,7.668,3272,4.741,3273,6.491,3274,4.966,3275,9.438,3276,7.959,3277,6.491,3278,7.959,3279,4.741,3280,6.491,3281,6.491,3282,4.741,3283,7.959,3284,7.09,3285,8.609,3286,6.491,3287,4.741,3288,6.491,3289,4.741,3290,6.491,3291,4.741,3292,6.491,3293,4.741,3294,6.593,3295,4.741,3296,4.741,3297,4.741,3298,4.741,3299,4.741,3300,4.741,3301,4.741,3302,4.741,3303,4.741,3304,4.741,3305,4.741,3306,4.741,3307,4.741,3308,4.741,3309,4.741,3310,4.741,3311,4.741,3312,4.741]],["title/components/OutputComponent.html",[0,0.202,266,1.272]],["body/components/OutputComponent.html",[0,0.365,1,1.041,2,0.209,3,0.216,4,1.449,6,1.097,7,1.06,9,0.137,11,0.462,16,1.443,19,2.2,20,1.024,22,3.23,23,0.909,25,0.007,31,2.184,32,1.934,35,1.419,37,0.418,38,0.864,40,1.576,43,0.657,44,1.12,46,2.38,48,2.688,49,0.832,51,3.529,60,0.871,65,0.262,69,0.729,71,0.971,77,1.992,79,1.659,80,1.823,81,0.745,82,0.973,91,0.591,92,0.926,93,0.392,110,1.566,113,1.443,115,1.024,118,0.934,126,1.312,128,3.407,137,0.359,148,0.131,149,0.137,177,0.755,178,1.546,179,1.198,181,1.975,182,1.097,183,1.097,184,1.006,185,1.839,186,1.006,187,1.06,188,0.924,189,1.041,190,1.024,191,2.28,192,1.041,193,1.524,194,2.009,195,1.06,196,1.447,197,2.333,198,1.06,199,1.06,200,1.097,201,1.041,202,1.573,203,1.06,204,1.097,205,1.041,206,1.097,207,1.024,208,1.024,209,1.595,210,1.839,211,1.985,212,1.041,213,2.165,214,2.031,215,1.097,216,1.06,217,2.127,218,1.06,219,1.041,220,1.06,221,1.06,222,1.06,223,1.041,224,1.097,225,1.041,226,1.06,227,1.097,228,1.041,229,1.097,230,1.041,231,1.006,232,1.139,233,1.097,234,1.041,235,1.097,236,1.024,237,1.041,238,1.097,239,1.041,240,1.097,241,0.956,242,1.097,243,1.041,244,1.604,245,1.097,246,1.024,247,1.097,248,1.041,249,1.097,250,1.006,251,1.097,252,1.041,253,1.006,254,1.041,255,0.973,256,1.097,257,1.041,258,1.097,259,1.097,260,1.041,261,1.097,262,1.041,263,1.097,264,1.006,265,1.097,266,1.875,267,1.041,268,1.097,269,1.041,270,1.06,271,1.097,272,1.024,273,1.041,274,1.901,275,1.041,276,1.06,277,0.909,278,1.06,279,1.06,280,1.041,281,1.06,282,1.06,283,1.06,284,1.097,285,1.024,286,1.041,287,1.097,288,1.041,289,1.06,290,1.041,291,1.097,292,1.041,293,1.097,294,1.06,295,0.973,296,1.041,297,1.097,298,1.041,299,1.097,300,1.041,301,1.097,302,1.041,303,0.989,304,1.006,305,1.097,306,1.024,307,1.097,308,1.024,309,1.097,310,1.024,311,1.097,312,1.024,313,1.097,314,1.024,315,1.078,316,1.097,317,1.717,318,1.078,319,1.097,320,0.004,321,0.004,340,2.45,349,1.156,424,3.523,427,2.74,434,2.507,456,3.817,685,2.246,874,3.996,918,3.941,941,1.416,967,1.926,1060,2.218,1171,2.662,1172,3.105,1385,3.323,1437,6.022,1445,5.207,1448,4.766,1449,6.088,1450,4.766,1452,3.323,1454,3.323,1456,3.323,1457,3.323,2083,3.662,2084,3.662,2103,2.553,2241,5.185,2256,3.615,2267,3.615,2268,3.615,2269,3.323,2270,5.185,3313,4.059,3314,4.059,3315,4.059,3316,4.059,3317,4.059]],["title/classes/Pagination.html",[149,0.17,2351,3.171]],["body/classes/Pagination.html",[2,0.311,3,0.176,8,1.198,9,0.111,11,0.376,24,1.475,25,0.007,30,1.395,37,0.34,38,0.581,43,0.977,44,1.463,45,2.435,48,2.359,49,0.715,50,2.65,60,0.772,65,0.176,69,0.745,71,1.108,76,1.321,77,1.711,79,1.219,80,1.762,81,1.241,82,2.12,89,2.292,91,1.15,92,0.847,93,0.804,118,0.908,126,2.828,147,0.668,148,0.106,149,0.227,164,2.611,232,1.316,320,0.003,321,0.003,340,2.104,345,1.647,348,4.501,353,2.7,357,0.646,362,1.399,390,1.928,404,3.145,425,1.175,427,3.598,444,3.683,446,2.732,452,1.301,454,2.598,474,4.612,477,4.547,490,5.462,494,2.152,513,1.567,518,3.038,519,3.929,537,4.292,581,2.373,584,2.442,587,2.373,596,3.951,597,1.7,600,2.334,602,2.377,681,3.238,685,1.929,752,3.61,868,1.609,906,4.093,974,1.75,1052,1.7,1053,4.453,1073,4.072,1074,2.435,1236,4.203,1238,6.315,1344,2.165,1468,5.993,1469,5.993,1470,5.993,1657,3.278,1663,2.165,1684,2.165,1812,2.526,1814,5.037,1815,2.526,2033,4.94,2306,4.453,2307,4.356,2351,5.852,2379,4.093,2412,5.374,2446,5.374,2463,2.941,2469,5.509,2866,5.993,2933,4.453,2947,4.093,3068,3.026,3284,6.774,3318,3.302,3319,9.149,3320,8.136,3321,5.509,3322,6.728,3323,4.453,3324,4.453,3325,4.999,3326,3.928,3327,3.302,3328,4.999,3329,3.302,3330,3.302,3331,3.302,3332,3.61,3333,3.302,3334,3.302,3335,3.302,3336,4.999,3337,3.302,3338,3.302,3339,3.302,3340,3.302,3341,4.999,3342,3.302,3343,3.302,3344,3.302,3345,3.302,3346,4.999,3347,5.993,3348,3.302,3349,4.999,3350,3.302,3351,4.999,3352,5.374,3353,4.999,3354,3.302,3355,4.999,3356,4.999,3357,3.302,3358,2.941,3359,3.302,3360,3.302,3361,3.302,3362,3.302,3363,3.302,3364,3.302,3365,3.302,3366,7.9,3367,3.302,3368,3.302,3369,8.745,3370,6.728,3371,7.228,3372,3.302,3373,3.302,3374,6.728,3375,4.999,3376,3.302,3377,3.302,3378,3.302,3379,3.302,3380,6.033,3381,3.302,3382,3.302]],["title/components/PaginationComponent.html",[0,0.202,267,1.294]],["body/components/PaginationComponent.html",[0,0.329,1,0.951,2,0.191,3,0.197,4,0.789,6,1.001,7,0.967,9,0.125,11,0.422,16,1.351,20,0.934,21,2.782,22,3.066,23,0.83,25,0.007,31,2.177,32,1.927,35,1.328,37,0.381,38,0.633,39,2.878,40,1.526,43,0.6,49,0.779,50,2.888,51,3.38,52,3.216,60,0.912,65,0.251,69,0.686,70,1.066,71,1.018,76,0.996,77,2.438,80,1.262,81,1.016,82,1.548,89,1.797,91,0.793,92,0.921,93,0.526,109,3.704,110,2.493,111,4.167,113,1.766,115,0.934,118,0.684,126,1.198,136,1.672,137,0.327,147,0.75,148,0.119,149,0.218,164,2.102,177,0.689,178,1.447,179,1.121,181,1.892,182,1.001,183,1.001,184,0.919,185,1.746,186,0.919,187,0.967,188,0.844,189,0.951,190,0.934,191,2.217,192,0.951,193,1.447,194,1.925,195,0.967,196,1.402,197,2.275,198,0.967,199,0.967,200,1.001,201,0.951,202,1.472,203,0.967,204,1.001,205,0.951,206,1.001,207,0.934,208,0.934,209,1.551,210,1.746,211,0.934,212,0.951,213,0.951,214,0.919,215,1.001,216,0.967,217,2.051,218,0.967,219,0.951,220,0.967,221,0.967,222,0.967,223,0.951,224,1.001,225,0.951,226,0.967,227,1.001,228,0.951,229,1.001,230,0.951,231,0.919,232,1.066,233,1.001,234,0.951,235,1.001,236,0.934,237,0.951,238,1.001,239,0.951,240,1.001,241,0.873,242,1.001,243,0.951,244,1.522,245,1.001,246,0.934,247,1.001,248,0.951,249,1.001,250,0.919,251,1.001,252,0.951,253,0.919,254,0.951,255,0.888,256,1.001,257,0.951,258,1.001,259,1.001,260,0.951,261,1.001,262,0.951,263,1.001,264,0.919,265,1.001,266,0.934,267,1.828,268,1.001,269,0.951,270,0.967,271,1.001,272,0.934,273,0.951,274,1.853,275,0.951,276,0.967,277,0.83,278,0.967,279,0.967,280,0.951,281,0.967,282,0.967,283,0.967,284,1.001,285,0.934,286,0.951,287,1.001,288,0.951,289,0.967,290,0.951,291,1.001,292,0.951,293,1.001,294,0.967,295,0.888,296,0.951,297,1.001,298,0.951,299,1.001,300,0.951,301,1.001,302,0.951,303,0.903,304,0.919,305,1.001,306,0.934,307,1.001,308,0.934,309,1.001,310,0.934,311,1.001,312,0.934,313,1.001,314,0.934,315,0.984,316,1.001,317,0.934,318,0.984,319,1.001,320,0.004,321,0.004,345,0.802,349,1.055,353,2.422,390,3.18,424,3.297,425,1.318,447,1.667,456,3.572,518,2.459,536,3.18,570,1.714,600,2.151,602,3.386,918,2.888,937,3.252,959,2.727,974,1.964,1236,2.654,1241,5.144,1814,3.18,2351,5.89,2352,4.943,2416,3.3,2533,5.832,2536,3.3,2569,3.3,3323,4.852,3383,3.704,3384,5.447,3385,7.123,3386,5.447,3387,3.704,3388,3.704,3389,5.447,3390,3.704,3391,3.704,3392,5.449,3393,3.704,3394,3.704,3395,3.704,3396,3.704,3397,5.447,3398,5.447,3399,3.704,3400,5.447,3401,5.447,3402,3.704,3403,5.447,3404,4.852,3405,5.447,3406,3.704,3407,3.704,3408,5.447,3409,5.447,3410,5.447,3411,5.447,3412,5.447,3413,5.447,3414,5.447,3415,5.447,3416,5.447,3417,5.447,3418,5.447,3419,5.447,3420,5.447,3421,5.447]],["title/classes/PaginationConfig.html",[149,0.17,2352,3.857]],["body/classes/PaginationConfig.html",[0,0.313,2,0.325,3,0.335,9,0.212,11,0.717,25,0.007,37,0.648,38,0.908,43,1.019,45,3.804,65,0.222,69,0.767,71,1.052,91,0.916,92,0.675,93,0.608,118,1.066,126,2.525,148,0.203,149,0.263,164,2.305,320,0.005,321,0.005,345,2.014,353,2.62,357,1.661,444,3.355,513,3.706,600,2.279,824,5.184,825,4.02,896,4.02,938,2.428,943,4.559,959,3.909,1005,4.214,1017,4.127,1133,4.559,1191,3.077,1224,3.959,1236,3.804,1238,5.639,1707,5.153,2351,4.912,2352,6.984,3324,6.956,3422,9.128,3423,8.878,3424,8.878,3425,9.531,3426,7.809,3427,6.293,3428,5.974,3429,6.293,3430,4.268,3431,7.809,3432,7.809,3433,7.809]],["title/components/PasswordResetComponent.html",[0,0.202,269,1.294]],["body/components/PasswordResetComponent.html",[0,0.304,1,0.95,2,0.191,3,0.197,4,0.788,6,1,7,0.966,8,1.343,9,0.125,11,0.422,16,1.35,20,0.934,23,0.829,25,0.007,30,1.14,31,2.177,32,1.927,35,1.327,37,0.381,38,0.633,40,1.526,43,0.599,44,1.459,46,1.373,49,0.778,60,0.911,65,0.251,69,0.727,70,1.263,71,1.035,76,0.677,77,1.863,81,0.474,82,0.887,91,0.539,92,0.903,93,0.624,110,1.428,113,1.35,115,0.934,117,2.219,118,0.811,136,1.671,137,0.327,139,1.153,147,0.749,148,0.119,149,0.125,167,2.886,177,0.688,178,1.446,179,1.121,180,1.558,181,1.891,182,1,183,1,184,0.918,185,1.745,186,0.918,187,0.966,188,1.807,189,0.95,190,0.934,191,2.217,192,0.95,193,1.446,194,1.924,195,0.966,196,1.401,197,2.274,198,0.966,199,0.966,200,1,201,0.95,202,1.471,203,0.966,204,1,205,0.95,206,1,207,0.934,208,0.934,209,1.551,210,1.745,211,0.934,212,0.95,213,0.95,214,0.918,215,1,216,0.966,217,2.051,218,0.966,219,0.95,220,0.966,221,0.966,222,0.966,223,0.95,224,1,225,0.95,226,0.966,227,1,228,0.95,229,1,230,0.95,231,0.918,232,1.065,233,1,234,0.95,235,1,236,0.934,237,0.95,238,1,239,0.95,240,1,241,1.283,242,1,243,0.95,244,1.522,245,1,246,0.934,247,1,248,0.95,249,1,250,0.918,251,1,252,0.95,253,0.918,254,0.95,255,0.887,256,1,257,0.95,258,1,259,1,260,0.95,261,1,262,0.95,263,1,264,0.918,265,1,266,0.934,267,0.95,268,1,269,1.827,270,2.197,271,1,272,0.934,273,0.95,274,1.853,275,0.95,276,0.966,277,0.829,278,0.966,279,0.966,280,0.95,281,0.966,282,0.966,283,0.966,284,1,285,0.934,286,0.95,287,1,288,0.95,289,0.966,290,0.95,291,1,292,0.95,293,1,294,0.966,295,0.887,296,0.95,297,1,298,0.95,299,1,300,0.95,301,1,302,0.95,303,0.902,304,0.918,305,1,306,0.934,307,1,308,0.934,309,1,310,0.934,311,1,312,0.934,313,1,314,0.934,315,0.983,316,1,317,0.934,318,0.983,319,1,320,0.004,321,0.004,329,3.17,343,2.241,345,1.398,357,0.724,418,1.713,421,2.541,434,2.179,437,4.458,438,4.235,447,1.976,448,2.346,469,2.428,496,3.709,518,2.458,557,3.798,582,4.479,584,1.976,585,2.161,590,3.894,591,3.866,604,4.458,611,3.297,623,5.094,625,4.773,636,2.832,638,7.888,689,5.294,922,3.529,937,1.976,941,1.9,970,3.932,1011,3.425,1257,2.192,2048,4.458,2132,7.151,2758,4.991,2761,3.297,2781,3.031,2784,3.031,2810,5.83,2863,3.031,3226,3.297,3434,8.855,3435,3.702,3436,7.934,3437,5.444,3438,5.444,3439,5.444,3440,7.12,3441,5.444,3442,3.702,3443,5.444,3444,3.702,3445,3.702,3446,3.702,3447,5.444,3448,3.702,3449,3.702,3450,4.85,3451,5.444,3452,4.85,3453,3.702,3454,3.702,3455,3.702,3456,3.702,3457,3.702,3458,3.702,3459,3.702,3460,3.702,3461,3.702,3462,3.702,3463,3.702,3464,3.702,3465,3.702,3466,3.702,3467,5.444]],["title/components/PopComponent.html",[0,0.202,272,1.272]],["body/components/PopComponent.html",[0,0.29,1,0.849,2,0.171,3,0.176,4,0.704,5,1.57,6,1.632,7,0.864,8,1.201,9,0.112,11,0.377,20,0.834,21,1.424,23,0.741,25,0.007,30,1.545,31,2.168,32,1.921,35,1.22,37,0.34,38,0.582,39,1.649,40,1.52,43,0.811,44,1.683,49,0.864,60,0.926,61,2.06,65,0.177,69,0.734,70,0.979,71,1.049,76,0.605,79,1.984,80,1.16,81,0.926,82,1.447,91,0.981,92,0.926,93,0.65,107,3.467,109,3.95,113,2.106,115,0.834,118,0.908,137,0.292,148,0.106,149,0.169,167,3.57,177,0.615,178,1.33,179,1.03,180,1.392,181,1.789,182,0.894,183,0.894,184,0.82,185,1.632,186,0.82,187,0.864,188,0.753,189,0.849,190,0.834,191,2.136,192,0.849,193,1.353,194,1.82,195,0.864,196,1.344,197,2.2,198,0.864,199,0.864,200,0.894,201,0.849,202,1.353,203,0.864,204,0.894,205,0.849,206,0.894,207,0.834,208,0.834,209,1.495,210,1.632,211,0.834,212,0.849,213,0.849,214,0.82,215,0.894,216,0.864,217,1.955,218,0.864,219,0.849,220,0.864,221,0.864,222,0.864,223,0.849,224,0.894,225,0.849,226,0.864,227,0.894,228,0.849,229,0.894,230,0.849,231,0.82,232,0.979,233,0.894,234,0.849,235,0.894,236,0.834,237,0.849,238,0.894,239,0.849,240,0.894,241,0.779,242,0.894,243,0.849,244,1.423,245,0.894,246,0.834,247,0.894,248,0.849,249,0.894,250,0.82,251,0.894,252,0.849,253,0.82,254,0.849,255,0.793,256,0.894,257,0.849,258,0.894,259,0.894,260,0.849,261,0.894,262,0.849,263,0.894,264,0.82,265,0.894,266,0.834,267,0.849,268,0.894,269,0.849,270,0.864,271,0.894,272,1.699,273,0.849,274,1.792,275,0.849,276,0.864,277,0.741,278,0.864,279,0.864,280,0.849,281,0.864,282,0.864,283,0.864,284,0.894,285,0.834,286,0.849,287,0.894,288,0.849,289,0.864,290,0.849,291,0.894,292,0.849,293,0.894,294,0.864,295,0.793,296,0.849,297,0.894,298,0.849,299,0.894,300,0.849,301,0.894,302,0.849,303,0.806,304,0.82,305,0.894,306,0.834,307,0.894,308,0.834,309,0.894,310,0.834,311,0.894,312,0.834,313,0.894,314,0.834,315,0.879,316,0.894,317,0.834,318,0.879,319,0.894,320,0.003,321,0.003,345,1.566,346,3.681,357,0.647,358,3.301,362,2.278,425,1.177,434,2.061,441,2.389,447,2.329,448,2.219,454,2.156,490,2.169,519,1.531,571,1.681,581,4.394,600,0.779,816,2.506,819,4.444,947,1.225,948,3.301,953,2.923,959,2.506,966,4.415,987,3.83,1005,4.201,1042,1.57,1066,1.931,1083,2.825,1236,2.439,1257,3.475,1395,2.389,1397,4.146,1409,2.577,1410,2.169,1413,2.923,1418,2.947,1423,6.444,1543,3.83,1545,4.607,1547,4.864,1549,3.615,1550,4.864,1551,4.864,1557,3.436,1559,3.03,1565,3.436,1567,2.389,1569,3.283,1576,4.864,1577,3.615,1579,3.149,1580,3.615,1581,3.615,1583,3.615,1592,3.283,1646,2.709,1648,2.947,1678,2.002,1684,2.169,1863,2.709,2041,2.531,2047,1.612,2081,3.656,2083,3.149,2084,3.149,2103,2.081,2169,2.709,2174,5.153,2195,4.099,2336,2.389,2409,2.947,2612,2.081,2821,2.389,2845,2.947,3012,2.531,3014,2.531,3021,2.947,3190,2.169,3450,2.947,3468,3.308,3469,5.006,3470,5.006,3471,5.006,3472,5.006,3473,3.308,3474,3.308,3475,3.308,3476,3.308,3477,3.308,3478,3.308,3479,3.308,3480,3.308,3481,3.308,3482,3.308,3483,3.308,3484,3.308,3485,3.308,3486,3.308,3487,3.308,3488,2.947,3489,3.308,3490,3.308,3491,3.308,3492,3.308,3493,5.006,3494,6.04,3495,3.308,3496,3.308,3497,3.308,3498,3.308,3499,3.308,3500,3.308,3501,3.308,3502,3.308,3503,3.308,3504,3.308]],["title/modules/PopModule.html",[322,1.092,1886,3.306]],["body/modules/PopModule.html",[2,0.338,3,0.349,9,0.221,24,2.551,25,0.007,63,2.199,65,0.339,137,0.579,146,3.267,147,1.325,148,0.297,149,0.221,177,1.218,260,2.52,272,2.477,320,0.005,321,0.005,322,1.733,324,2.696,328,3.368,329,2.377,330,2.199,333,2.285,627,3.799,628,2.957,978,4.296,1545,5.686,1886,6.482,1887,5.686,1899,4.73,3488,5.834,3505,5.834,3506,5.834,3507,6.55,3508,5.834,3509,5.834,3510,6.55,3511,6.55,3512,6.55,3513,6.55]],["title/injectables/PopService.html",[436,1.272,1545,3.052]],["body/injectables/PopService.html",[2,0.323,3,0.334,9,0.212,11,0.714,25,0.007,37,0.645,38,0.906,43,1.436,65,0.299,69,0.673,71,1.005,76,1.424,118,1.113,126,2.519,137,0.554,147,1.269,148,0.202,149,0.212,164,1.851,272,1.581,320,0.005,321,0.005,349,1.786,357,1.658,400,4.13,436,2.138,444,2.945,447,2.594,808,5.847,816,3.9,902,3.796,966,4.519,978,4.112,1005,3.698,1038,5.626,1063,4.549,1545,4.716,1569,5.815,1769,5.626,2041,5.961,2597,6.636,3514,6.27,3515,9.119,3516,7.791,3517,8.867,3518,8.867,3519,7.791,3520,6.27,3521,6.27,3522,6.27,3523,6.27,3524,6.27,3525,6.27,3526,6.27,3527,6.27,3528,6.27,3529,6.27]],["title/interfaces/ResourceActionbarState.html",[337,1.436,3530,4.491]],["body/interfaces/ResourceActionbarState.html",[0,0.246,2,0.226,3,0.234,4,0.933,9,0.148,16,1.087,19,1.657,21,2.647,25,0.007,30,0.774,31,0.949,32,0.843,37,0.731,38,0.715,40,1.183,44,1.559,48,2.232,52,1.98,65,0.311,69,0.7,70,1.688,75,1.418,76,1.298,81,1.104,93,0.893,98,2.758,109,3.206,121,1.728,137,0.388,139,1.916,147,1.835,148,0.198,149,0.148,184,2.083,188,2.088,232,1.389,236,1.551,273,1.125,274,1.695,295,1.051,320,0.004,321,0.004,337,1.751,338,5.721,340,2.588,341,3.949,342,4.592,343,3.731,344,6.428,345,0.949,346,3.361,349,1.249,350,7.424,354,2.988,355,3.47,357,0.858,358,3.361,359,3.59,362,1.987,368,3.59,390,2.56,411,1.805,413,2.531,416,1.98,427,3.099,434,2.173,448,2.67,476,3.01,488,3.881,495,5.034,498,3.661,504,3.75,519,2.845,571,2.384,584,2.231,591,2.996,600,1.673,685,2.74,703,2.758,704,2.876,705,2.136,735,3.906,868,2.136,879,2.324,936,2.475,956,2.876,1004,2.654,1073,4.906,1216,3.01,1498,3.906,1507,3.906,1509,3.166,2451,6.201,2597,4.22,2636,3.906,3181,3.906,3530,6.856,3531,2.876,3532,3.906,3533,4.385,3534,6.149,3535,7.697,3536,4.385,3537,4.385,3538,4.385,3539,4.385,3540,4.385,3541,6.149,3542,4.385,3543,4.385,3544,4.385,3545,4.385,3546,4.385,3547,3.906,3548,4.385,3549,4.385,3550,4.385,3551,4.385,3552,4.385,3553,4.385,3554,4.385,3555,8.105,3556,4.385,3557,4.385,3558,4.385,3559,6.149,3560,4.385,3561,4.385,3562,4.385,3563,4.385,3564,4.385,3565,4.385,3566,4.385,3567,4.385,3568,4.385,3569,4.385,3570,4.385,3571,4.385,3572,4.385,3573,4.385,3574,4.385,3575,4.385,3576,4.385,3577,4.385,3578,4.385,3579,4.385,3580,4.385,3581,4.385,3582,4.385,3583,4.385,3584,4.385]],["title/injectables/ResourceConfig.html",[436,1.272,488,2.756]],["body/injectables/ResourceConfig.html",[2,0.111,3,0.115,4,0.759,9,0.179,11,0.406,25,0.007,30,1.724,32,0.415,37,0.222,39,0.71,40,0.685,43,1.422,44,0.876,46,2.296,47,3.121,49,0.757,60,0.456,65,0.223,69,0.662,70,1.843,71,0.885,75,2.857,76,0.394,79,0.525,80,0.826,81,1.213,91,0.854,92,0.893,93,0.566,99,1.649,108,1.347,117,2.623,118,0.665,119,1.178,123,2.579,135,1.258,137,0.19,139,0.672,148,0.069,149,0.073,186,1.13,190,0.899,193,1.414,196,1.608,209,0.674,231,1.13,274,1.472,277,1.186,295,2.104,320,0.002,321,0.002,343,3.281,345,1.726,353,2.554,354,4.127,355,4.844,357,0.422,362,2.665,398,1.649,401,2.011,405,3.634,406,1.765,431,5.048,436,1.149,444,1.347,488,1.948,492,4.521,498,2.043,518,0.973,523,1.479,555,2.988,558,3.973,570,0.997,582,1.356,583,1.216,601,0.767,602,0.849,650,1.649,653,2.574,675,5.348,681,1.687,689,3.33,704,5.023,705,1.05,706,4.205,718,4.05,740,3.204,741,4.142,773,1.304,785,1.258,802,2.66,868,2.579,879,1.142,896,1.11,902,1.05,907,1.178,909,1.835,937,2.128,938,2.579,940,4.081,974,1.142,1073,1.304,1094,6.25,1115,2.081,1157,3.204,1170,1.304,1179,1.556,1191,3.351,1216,2.446,1249,1.765,1250,5.145,1595,1.479,1608,1.479,1627,3.634,1628,1.556,1632,6.566,1678,1.304,1688,3.174,1702,2.727,1728,1.649,1753,1.556,1754,3.128,1767,2.727,1768,1.765,1769,1.556,1791,1.556,2129,4.059,2152,4.059,2174,1.649,2224,5.394,2325,6.816,2328,5.626,2460,2.157,2465,1.649,2472,1.92,2478,1.92,2609,1.479,3105,4.715,3119,4.059,3122,3.174,3123,3.174,3135,1.92,3164,5.626,3165,1.92,3166,1.92,3167,5.348,3216,2.337,3352,1.92,3531,5.023,3585,5.294,3586,7.248,3587,3.564,3588,3.564,3589,6.99,3590,3.174,3591,2.155,3592,2.155,3593,5.626,3594,3.564,3595,3.564,3596,2.155,3597,2.155,3598,3.564,3599,2.155,3600,2.155,3601,2.155,3602,3.564,3603,2.155,3604,3.564,3605,2.155,3606,2.155,3607,2.155,3608,1.556,3609,1.765,3610,3.564,3611,2.155,3612,2.155,3613,2.155,3614,2.155,3615,2.155,3616,2.155,3617,2.155,3618,3.564,3619,2.155,3620,2.155,3621,2.155,3622,8.22,3623,4.556,3624,2.155,3625,2.155,3626,4.556,3627,2.155,3628,3.564,3629,5.294,3630,2.155,3631,2.155,3632,2.155,3633,2.155,3634,2.155,3635,2.155,3636,8.22,3637,8.22,3638,2.155,3639,2.155,3640,2.155,3641,2.155,3642,2.155,3643,2.155,3644,2.155,3645,2.155,3646,2.155,3647,2.155,3648,5.294,3649,2.155,3650,2.155,3651,2.155,3652,4.556,3653,3.564,3654,3.564,3655,2.155,3656,2.155,3657,3.564,3658,2.155,3659,2.155,3660,2.155,3661,2.155,3662,2.155,3663,2.155,3664,2.155,3665,2.155,3666,2.155,3667,2.155,3668,2.155,3669,5.294,3670,2.155,3671,2.155,3672,2.155,3673,1.92,3674,2.155,3675,2.155,3676,2.155,3677,2.155,3678,2.155,3679,1.079,3680,2.155,3681,2.155,3682,2.155,3683,2.155,3684,2.155,3685,2.155,3686,2.155,3687,2.155,3688,2.155,3689,2.155,3690,2.155,3691,1.304,3692,2.155,3693,2.155,3694,4.556,3695,5.294,3696,3.564,3697,3.564,3698,3.564,3699,2.155,3700,2.155,3701,2.155,3702,2.155,3703,2.155,3704,2.155,3705,2.155,3706,2.155,3707,2.155,3708,2.155,3709,2.155,3710,2.155,3711,2.155,3712,2.155,3713,2.155,3714,3.564,3715,2.155,3716,2.155,3717,2.155,3718,2.155,3719,1.92,3720,2.155,3721,2.155,3722,2.155,3723,2.155,3724,2.155,3725,2.155,3726,2.155,3727,2.155,3728,2.155,3729,2.155,3730,2.155,3731,2.155,3732,2.155,3733,2.155,3734,2.155,3735,2.155,3736,3.564,3737,2.155,3738,2.155,3739,1.92,3740,2.155,3741,2.155,3742,2.155,3743,2.155,3744,2.155,3745,3.564,3746,2.155,3747,3.564,3748,2.155,3749,3.564,3750,2.155,3751,2.155,3752,2.155,3753,2.155,3754,2.155]],["title/components/ResourceCrudComponent.html",[0,0.202,275,1.294]],["body/components/ResourceCrudComponent.html",[0,0.279,1,0.777,2,0.156,3,0.161,4,1.48,6,0.819,7,0.791,9,0.102,11,0.345,16,1.16,20,0.764,21,2.462,23,0.678,25,0.007,30,0.826,31,2.16,32,1.909,35,1.141,37,0.312,38,0.544,40,1.523,43,0.491,44,1.563,48,1.357,49,1.226,52,2.904,60,0.823,65,0.307,69,0.759,70,1.36,71,1.076,75,2.559,76,1.045,80,1.49,81,1.081,82,1.542,89,1.18,91,0.833,92,0.942,93,0.764,110,2.683,113,1.595,115,0.764,118,0.873,136,1.367,137,0.268,139,2.005,148,0.098,149,0.102,164,0.894,177,0.563,178,1.519,179,0.963,181,1.709,182,0.819,183,0.819,184,0.751,185,1.546,186,0.751,187,0.791,188,1.85,189,0.777,190,0.764,191,2.071,192,0.777,193,1.281,194,1.739,195,0.791,196,1.622,197,2.139,198,0.791,199,0.791,200,0.819,201,0.777,202,1.265,203,0.791,204,0.819,205,0.777,206,0.819,207,0.764,208,0.764,209,1.449,210,1.546,211,0.764,212,0.777,213,0.777,214,0.751,215,0.819,216,0.791,217,1.879,218,0.791,219,0.777,220,0.791,221,0.791,222,0.791,223,0.777,224,0.819,225,0.777,226,0.791,227,0.819,228,0.777,229,0.819,230,0.777,231,0.751,232,1.764,233,0.819,234,0.777,235,0.819,236,0.764,237,0.777,238,0.819,239,0.777,240,0.819,241,1.639,242,0.819,243,0.777,244,1.347,245,0.819,246,0.764,247,0.819,248,0.777,249,0.819,250,0.751,251,0.819,252,0.777,253,0.751,254,0.777,255,0.726,256,0.819,257,0.777,258,0.819,259,0.819,260,0.777,261,0.819,262,0.777,263,0.819,264,0.751,265,0.819,266,0.764,267,0.777,268,0.819,269,0.777,270,0.791,271,0.819,272,0.764,273,0.777,274,2.043,275,1.886,276,0.791,277,0.678,278,0.791,279,2.001,280,0.777,281,1.815,282,0.791,283,0.791,284,0.819,285,0.764,286,0.777,287,0.819,288,0.777,289,0.791,290,0.777,291,0.819,292,0.777,293,0.819,294,0.791,295,0.726,296,0.777,297,0.819,298,0.777,299,0.819,300,0.777,301,0.819,302,0.777,303,0.738,304,0.751,305,0.819,306,0.764,307,0.819,308,0.764,309,0.819,310,0.764,311,0.819,312,0.764,313,0.819,314,0.764,315,0.805,316,0.819,317,0.764,318,0.805,319,0.819,320,0.003,321,0.003,330,1.571,345,0.656,349,0.863,353,1.688,357,0.593,411,2.354,412,1.655,413,2.648,416,1.367,427,1.884,434,2.422,447,1.75,448,2.734,452,1.844,489,4.018,495,3.832,496,3.24,498,2.683,500,6.195,501,4.169,502,1.698,503,4.169,504,2.646,515,2.481,516,4.169,519,2.165,531,2.165,544,5.624,546,1.986,547,1.768,570,1.402,591,3.134,594,1.655,595,1.768,601,1.078,602,2.254,623,3.894,625,3.597,681,2.382,703,1.905,917,3.58,918,2.481,919,3.832,920,3.58,922,3.126,924,2.558,925,4.169,927,5.623,928,4.169,932,4.374,933,4.638,936,3.228,940,4.06,941,1.633,942,4.169,943,2.732,947,2.382,948,2.558,951,4.169,953,2.732,966,3.663,967,3.053,970,3.38,974,1.606,976,2.698,978,1.986,985,5.094,986,2.698,988,2.698,1012,2.079,1013,2.079,1015,4.169,1038,2.833,1041,4.416,1573,3.58,1595,2.079,2329,4.169,3068,2.833,3198,2.079,3531,5.991,3755,8.137,3756,3.029,3757,6.433,3758,5.719,3759,4.68,3760,3.029,3761,3.029,3762,3.029,3763,3.029,3764,3.029,3765,6.433,3766,3.029,3767,3.029,3768,3.029,3769,3.029,3770,3.029,3771,3.029,3772,4.68,3773,3.029,3774,3.029,3775,4.68,3776,3.029,3777,3.029,3778,3.029,3779,2.48,3780,3.029,3781,2.48,3782,3.029,3783,3.029,3784,3.029,3785,3.029,3786,3.029,3787,3.029,3788,3.029,3789,3.029]],["title/classes/ResourceForm.html",[149,0.17,3609,4.128]],["body/classes/ResourceForm.html",[2,0.261,3,0.27,9,0.171,11,0.577,19,2.565,25,0.007,30,1.199,37,0.521,38,1.042,43,1.452,44,1.833,46,2.328,48,1.468,49,0.97,58,4.901,65,0.301,69,0.806,70,1.84,71,1.123,75,2.194,76,1.399,77,1.733,79,1.654,80,1.976,81,1.204,91,1.242,92,0.962,93,0.824,117,3.04,121,2.675,126,2.194,128,4.488,148,0.163,149,0.229,188,2.075,274,1.974,320,0.005,321,0.005,345,1.469,349,1.933,353,2.724,357,0.991,390,2.956,411,2.793,421,3.476,459,4.146,498,3.516,504,4.216,513,3.221,571,1.7,681,1.875,685,2.954,703,3.185,822,5.856,896,2.607,1008,2.956,1050,4.775,1076,5.531,1086,3.065,1105,3.476,1133,3.962,1626,4.451,1678,4.633,1679,3.83,1704,3.185,1869,6.716,1871,3.874,1872,3.065,2206,4.146,2462,4.511,2609,4.659,3531,5.757,3608,3.657,3609,5.557,3781,4.146,3790,7.819,3791,5.064,3792,6.787,3793,6.787,3794,6.787,3795,7.655,3796,7.655,3797,6.787,3798,5.064,3799,5.557,3800,5.064,3801,5.064,3802,5.064,3803,5.064,3804,5.064,3805,6.787,3806,5.064,3807,6.787,3808,5.064,3809,5.064,3810,5.064,3811,5.064,3812,5.064,3813,5.064,3814,5.064,3815,5.064,3816,5.064,3817,5.064,3818,5.064,3819,5.064]],["title/components/ResourceListPopComponent.html",[0,0.202,280,1.294]],["body/components/ResourceListPopComponent.html",[0,0.281,1,0.794,2,0.16,3,0.165,4,0.658,6,1.285,7,0.807,9,0.104,16,1.179,19,1.797,20,0.78,22,2.75,23,0.693,25,0.007,30,1.364,31,2.162,32,1.913,35,1.159,37,0.318,38,0.553,39,1.019,40,1.533,43,0.938,44,1.772,48,1.379,49,0.68,51,3.087,60,0.742,65,0.262,66,2.381,67,2.448,69,0.804,70,1.134,71,1.126,76,0.869,79,1.807,80,0.716,81,0.949,82,1.683,91,1.022,92,0.924,93,0.678,107,2.448,109,4.113,110,1.193,113,1.838,115,0.78,118,0.882,128,4.313,136,1.396,137,0.273,139,0.964,148,0.1,149,0.261,167,2.521,177,0.575,178,1.263,179,0.979,181,1.728,182,0.836,183,0.836,184,0.767,185,1.566,186,0.767,187,0.807,188,1.482,189,0.794,190,0.78,191,2.087,192,0.794,193,1.298,194,1.758,195,0.807,196,1.726,197,2.154,198,0.807,199,0.807,200,0.836,201,0.794,202,1.285,203,0.807,204,0.836,205,0.794,206,0.836,207,0.78,208,0.78,209,1.46,210,1.566,211,0.78,212,0.794,213,0.794,214,0.767,215,0.836,216,0.807,217,1.897,218,0.807,219,0.794,220,0.807,221,0.807,222,0.807,223,0.794,224,0.836,225,0.794,226,0.807,227,0.836,228,0.794,229,0.836,230,0.794,231,0.767,232,1.686,233,0.836,234,0.794,235,0.836,236,0.78,237,0.794,238,0.836,239,0.794,240,0.836,241,0.729,242,0.836,243,0.794,244,1.365,245,0.836,246,0.78,247,0.836,248,0.794,249,0.836,250,0.767,251,0.836,252,0.794,253,0.767,254,0.794,255,0.741,256,0.836,257,0.794,258,0.836,259,0.836,260,0.794,261,0.836,262,0.794,263,0.836,264,0.767,265,0.836,266,0.78,267,0.794,268,0.836,269,0.794,270,0.807,271,0.836,272,2.265,273,0.794,274,1.942,275,0.794,276,0.807,277,0.693,278,0.807,279,0.807,280,1.669,281,0.807,282,0.807,283,1.833,284,0.836,285,0.78,286,0.794,287,0.836,288,0.794,289,0.807,290,0.794,291,0.836,292,0.794,293,0.836,294,0.807,295,0.741,296,0.794,297,0.836,298,0.794,299,0.836,300,0.794,301,0.836,302,0.794,303,0.754,304,0.767,305,0.836,306,0.78,307,0.836,308,0.78,309,0.836,310,0.78,311,0.836,312,0.78,313,0.836,314,0.78,315,0.821,316,0.836,317,0.78,318,0.821,319,0.836,320,0.003,321,0.003,345,1.03,346,4.052,348,3.072,349,0.881,353,1.71,357,0.93,358,4.22,362,1.622,378,1.872,390,4.099,434,2.148,447,2.268,448,2.626,454,2.048,488,4.641,498,2.236,504,2.681,537,2.684,571,1.038,581,3.961,670,2.755,703,1.945,704,2.028,705,1.507,816,1.548,819,4.328,907,2.599,932,4.416,947,1.761,948,1.69,953,1.806,966,3.929,1005,3.665,1012,2.123,1013,2.123,1083,1.746,1236,1.507,1257,2.827,1395,4.184,1397,3.264,1409,2.983,1410,2.028,1413,1.806,1542,2.532,1543,3.638,1544,5.794,1545,5.215,1546,4.266,1547,4.184,1549,3.434,1550,3.434,1551,4.184,1554,2.532,1555,2.755,1556,2.755,1557,2.123,1558,2.366,1559,1.872,1560,2.366,1561,2.366,1562,2.532,1563,2.366,1564,3.894,1565,3.977,1566,2.755,1567,2.233,1568,2.366,1569,2.028,1573,3.638,1575,2.366,1576,3.434,1577,2.233,1578,2.366,1579,1.945,1580,2.233,1581,2.233,1582,2.366,1583,2.233,1584,2.366,1585,2.532,1586,2.755,1589,4.236,1590,2.755,1591,2.366,1592,2.028,1593,2.366,1594,2.366,1596,2.532,1597,2.366,1600,2.532,1601,2.532,1602,2.366,1603,2.755,2173,2.755,2179,4.236,2180,2.755,2181,2.755,3531,5.934,3608,2.233,3779,7.409,3781,2.532,3820,5.794,3821,3.093,3822,3.093,3823,3.093,3824,3.093]],["title/modules/ResourceModule.html",[322,1.092,1154,3.461]],["body/modules/ResourceModule.html",[2,0.261,3,0.27,9,0.171,24,2.259,25,0.007,63,1.7,65,0.344,137,0.448,138,2.039,139,1.578,146,2.893,148,0.263,149,0.171,177,0.941,187,2.473,196,1.199,273,2.431,274,2.071,275,2.431,276,2.473,277,1.52,278,2.473,279,2.501,280,2.431,281,2.473,282,2.473,320,0.005,321,0.005,322,1.469,324,2.084,328,2.856,329,1.838,330,1.7,332,3.83,333,2.368,488,4.798,546,3.321,547,2.956,621,5.531,627,3.221,628,2.286,631,4.659,704,3.321,705,2.467,978,5.02,1076,5.125,1105,3.476,1154,6.888,1155,6.212,1174,3.657,1176,3.874,1182,4.146,1842,3.874,1843,3.657,1844,3.321,3532,4.511,3755,4.511,3779,6.268,3790,4.511,3825,4.511,3826,4.511,3827,5.064,3828,4.511,3829,4.511,3830,5.064,3831,5.064,3832,5.064,3833,6.787,3834,5.064]],["title/injectables/ResourceService.html",[436,1.272,1076,2.944]],["body/injectables/ResourceService.html",[0,0.205,2,0.175,3,0.181,9,0.115,11,0.387,25,0.007,30,1.534,37,0.349,38,0.927,43,1.56,44,1.478,46,1.288,48,2.121,49,0.73,60,0.936,61,1.397,65,0.296,69,0.789,70,1.786,71,1.029,75,2.808,76,1.457,77,1.162,80,2.164,81,1.228,84,2.136,89,2.376,91,1.222,92,0.9,93,0.811,117,1.058,118,0.641,119,1.856,121,3.029,131,2.101,137,0.3,147,1.242,148,0.164,149,0.115,164,1.002,188,1.816,196,1.084,209,1.29,274,2.15,277,1.915,320,0.003,321,0.005,337,0.967,338,2.981,341,1.654,345,1.478,349,0.967,353,2.269,355,2.882,357,0.664,362,1.91,404,3.86,411,2.809,412,1.856,413,2.809,416,1.533,436,1.846,446,4.201,447,1.562,448,1.119,454,1.462,488,4.201,492,4.581,494,4.149,498,3.467,504,3.69,523,3.505,536,3.582,537,4.13,546,2.227,549,2.452,586,3.212,596,4.201,597,1.748,601,1.208,626,2.363,647,2.331,685,3.523,703,2.136,705,1.654,726,3.86,740,3.09,741,3.348,816,2.556,850,1.8,879,3.618,902,3.565,924,2.791,947,2.953,956,2.227,1042,2.423,1050,4.272,1054,2.331,1055,2.227,1069,2.055,1071,3.348,1072,3.687,1073,3.09,1074,2.487,1075,3.505,1076,2.981,1077,4.548,1078,4.548,1079,4.548,1081,4.181,1083,2.882,1084,4.181,1086,3.09,1092,4.181,1094,3.687,1095,4.024,1098,3.09,1115,2.981,1126,5.024,1127,2.78,1128,2.78,1129,2.78,1132,4.181,1133,1.983,1137,2.78,1138,2.78,1139,2.78,1140,2.78,1141,5.991,1142,1.983,1143,2.78,1245,2.331,1523,2.78,1559,2.055,1650,2.598,1727,2.227,1739,3.906,3069,2.78,3531,5.77,3608,2.452,3799,4.181,3835,3.025,3836,5.106,3837,3.396,3838,6.079,3839,6.079,3840,3.396,3841,4.548,3842,3.396,3843,4.548,3844,3.396,3845,3.396,3846,4.548,3847,3.396,3848,3.906,3849,4.548,3850,3.396,3851,4.548,3852,4.548,3853,3.396,3854,3.396,3855,3.025,3856,3.025,3857,3.025,3858,3.025,3859,4.181,3860,3.025,3861,6.079,3862,3.025,3863,3.025,3864,3.025,3865,3.025,3866,3.025,3867,3.025,3868,3.025,3869,3.025,3870,3.025,3871,3.025,3872,3.025,3873,3.025,3874,3.025,3875,3.025,3876,3.025,3877,3.025,3878,5.466,3879,3.025,3880,4.548,3881,3.025,3882,3.025,3883,3.025,3884,3.025]],["title/interfaces/SdkField.html",[337,1.436,3885,4.491]],["body/interfaces/SdkField.html",[2,0.441,3,0.303,9,0.192,11,1.051,16,1.816,25,0.007,30,1.601,37,0.585,38,0.851,43,1.513,46,2.507,60,0.937,63,2.459,69,0.854,70,1.909,75,2.767,81,0.937,89,1.847,93,0.707,118,1.138,148,0.183,209,1.618,320,0.005,321,0.005,337,2.086,340,2.393,343,3.731,345,2.113,353,2.722,401,5.116,502,2.064,557,3.666,558,5.382,657,3.32,685,3.126,832,6.413,1063,4.276,1074,3.568,1095,5.611,1115,4.276,1633,4.954,1642,5.289,1663,4.803,3066,4.106,3083,5.065,3095,5.065,3150,7.622,3151,7.622,3198,5.027,3885,6.524,3886,5.687,3887,5.687,3888,5.687,3889,7.324,3890,7.324]],["title/modules/SdkModule.html",[322,1.092,1155,3.306]],["body/modules/SdkModule.html",[2,0.368,3,0.38,9,0.241,24,2.646,25,0.007,63,2.395,65,0.327,137,0.63,146,3.184,148,0.289,149,0.241,177,1.326,320,0.006,321,0.006,322,1.824,324,2.935,328,3.545,329,2.589,330,2.395,332,4.025,333,2.939,413,3.943,1155,6.283,1842,5.457,1843,5.151,1844,4.677,3891,6.353,3892,6.353,3893,7.132,3894,7.132]],["title/injectables/SdkService.html",[413,2.075,436,1.272]],["body/injectables/SdkService.html",[2,0.307,3,0.172,9,0.109,11,0.368,24,2.226,25,0.007,30,1.385,37,0.333,38,0.572,39,1.62,42,5.446,43,1.309,44,1.848,49,0.951,50,4.798,60,1.114,65,0.292,69,0.769,70,1.401,71,1.099,75,1.59,76,1.477,77,3.098,78,3.375,79,2.058,80,1.541,81,1.202,82,1.178,89,1.24,91,1.142,92,0.841,93,0.867,108,2.706,110,1.247,118,1.06,121,3.382,123,2.396,124,1.886,126,2.877,137,0.286,148,0.104,149,0.109,156,3.762,171,2.646,188,2.193,193,1.101,320,0.003,321,0.003,341,2.9,345,1.289,357,0.632,362,2.111,380,4.833,403,2.646,405,6.046,411,2.024,413,2.739,417,2.646,424,2.976,436,1.678,438,5.429,452,3.09,456,3.225,469,2.119,477,4.186,498,2.568,502,2.415,504,3.079,513,3.158,582,5.207,584,1.785,596,4.122,597,1.663,602,2.346,625,3.093,645,3.762,646,3.225,647,6.567,648,4.026,649,3.093,650,5.478,651,4.38,652,4.026,653,4.805,654,4.026,655,3.551,656,5.448,657,2.871,658,4.38,659,4.38,660,4.38,662,4.38,665,2.878,672,4.38,676,3.375,677,4.38,685,1.897,703,2.032,706,2.032,712,5.927,724,2.878,726,2.032,755,2.218,773,5.386,785,2.871,808,3.093,879,1.713,900,4.38,947,1.821,960,2.871,1241,3.551,1413,2.871,1704,4.186,2060,2.878,2132,4.875,2227,2.976,2594,3.762,2775,5.448,2776,2.646,2778,2.646,3070,5.091,3114,3.762,3167,3.762,3590,4.38,3673,4.38,3895,3.231,3896,4.918,3897,4.918,3898,4.918,3899,4.918,3900,6.654,3901,5.927,3902,6.654,3903,8.443,3904,4.918,3905,4.918,3906,5.953,3907,3.231,3908,4.918,3909,3.231,3910,5.953,3911,4.918,3912,3.231,3913,4.918,3914,8.081,3915,4.918,3916,3.231,3917,7.542,3918,4.918,3919,3.231,3920,4.918,3921,3.231,3922,4.38,3923,3.231,3924,3.231,3925,3.231,3926,3.231,3927,5.303,3928,3.231,3929,3.231,3930,3.231,3931,4.918,3932,3.231,3933,3.231,3934,3.231,3935,3.231,3936,3.231,3937,3.231,3938,3.231,3939,3.231,3940,3.231,3941,3.231,3942,3.231,3943,3.231,3944,5.953,3945,3.231,3946,3.231,3947,4.918,3948,3.231,3949,3.231,3950,3.231,3951,5.953,3952,3.231,3953,3.231,3954,3.231,3955,3.231,3956,3.231,3957,3.231,3958,4.918,3959,3.231,3960,3.231,3961,3.231,3962,3.231,3963,3.231,3964,4.918,3965,3.231,3966,3.231,3967,3.231,3968,3.231,3969,3.231,3970,3.231,3971,6.654,3972,3.231,3973,4.918,3974,3.231,3975,3.231,3976,3.231,3977,3.231,3978,3.231]],["title/modules/SelectModule.html",[322,1.092,3979,3.641]],["body/modules/SelectModule.html",[2,0.314,3,0.325,9,0.206,24,2.669,25,0.007,26,4.722,27,4.722,28,4.722,29,5.103,30,1.597,63,2.045,65,0.337,137,0.538,146,3.162,147,1.233,148,0.291,149,0.206,177,1.132,184,2.412,285,2.504,320,0.005,321,0.005,322,1.657,324,2.507,328,3.22,329,2.211,330,2.045,333,2.125,627,3.632,628,2.75,633,4.66,1163,7.452,1164,4.399,1165,4.399,1176,4.66,1888,6.052,1898,4.988,2574,6.678,3979,7.103,3980,5.426,3981,5.426,3982,5.426,3983,6.091,3984,5.426,3985,6.091,3986,5.426,3987,6.091,3988,6.091,3989,6.091]],["title/components/SignupComponent.html",[0,0.202,286,1.294]],["body/components/SignupComponent.html",[0,0.297,1,0.9,2,0.181,3,0.187,4,0.747,6,0.948,7,0.916,8,1.273,9,0.118,11,0.4,16,1.297,19,1.977,20,0.885,23,0.785,25,0.007,30,0.619,31,2.173,32,1.922,35,1.275,37,0.361,38,0.608,40,1.496,43,1.013,44,1.496,46,1.319,49,0.748,60,1.032,65,0.262,69,0.756,71,1.08,76,0.641,77,2.141,79,1.275,81,0.669,82,1.254,91,0.762,92,0.908,93,0.716,98,3.935,110,2.018,113,1.297,115,0.885,117,1.63,118,1.04,128,4.239,131,2.575,136,1.583,137,0.31,139,1.093,147,0.71,148,0.113,149,0.118,177,0.652,178,1.389,179,1.077,180,1.476,181,1.842,182,0.948,183,0.948,184,0.87,185,1.691,186,0.87,187,0.916,188,1.772,189,0.9,190,0.885,191,2.178,192,0.9,193,1.401,194,1.874,195,0.916,196,1.374,197,2.239,198,0.916,199,0.916,200,0.948,201,0.9,202,1.414,203,0.916,204,0.948,205,0.9,206,0.948,207,0.885,208,0.885,209,1.524,210,1.691,211,0.885,212,0.9,213,0.9,214,0.87,215,0.948,216,0.916,217,2.005,218,0.916,219,0.9,220,0.916,221,0.916,222,0.916,223,0.9,224,0.948,225,0.9,226,0.916,227,0.948,228,0.9,229,0.948,230,0.9,231,0.87,232,1.023,233,0.948,234,0.9,235,0.948,236,0.885,237,0.9,238,0.948,239,0.9,240,0.948,241,1.232,242,0.948,243,0.9,244,1.474,245,0.948,246,0.885,247,0.948,248,0.9,249,0.948,250,2.221,251,0.948,252,1.605,253,2.138,254,0.9,255,0.84,256,0.948,257,0.9,258,0.948,259,0.948,260,0.9,261,0.948,262,0.9,263,0.948,264,0.87,265,0.948,266,0.885,267,0.9,268,0.948,269,0.9,270,1.633,271,0.948,272,0.885,273,0.9,274,1.824,275,0.9,276,0.916,277,0.785,278,0.916,279,0.916,280,0.9,281,0.916,282,0.916,283,0.916,284,0.948,285,0.885,286,1.78,287,0.948,288,0.9,289,2.104,290,0.9,291,0.948,292,0.9,293,0.948,294,0.916,295,0.84,296,0.9,297,0.948,298,0.9,299,0.948,300,0.9,301,0.948,302,0.9,303,0.855,304,0.87,305,0.948,306,0.885,307,0.948,308,0.885,309,0.948,310,0.885,311,0.948,312,0.885,313,0.948,314,0.885,315,0.931,316,0.948,317,0.885,318,0.931,319,0.948,320,0.003,321,0.003,343,2.153,421,2.407,434,2.122,438,5.286,447,1.914,448,2.563,469,2.3,496,3.947,519,3.6,584,3.073,587,2.483,588,4.517,590,4.359,591,2.548,596,4.628,599,4.294,600,1.474,623,4.879,625,3.935,637,3.124,689,3.29,690,2.872,700,1.979,701,3.124,718,6.478,922,3.419,923,3.935,936,3.531,937,2.27,938,2.018,941,1.224,970,4.517,1004,3.166,1005,2.483,1006,4.517,1011,2.206,1257,2.106,1629,3.166,1656,4.786,1729,3.786,1920,3.652,2757,4.659,2758,5.773,2763,5.572,2765,2.872,2766,3.124,2770,4.786,2775,2.872,2776,2.872,2778,2.872,2780,3.124,2781,2.872,2783,3.124,2784,2.872,3990,3.507,3991,5.231,3992,5.231,3993,3.507,3994,3.777,3995,3.507,3996,3.507,3997,3.507,3998,3.507,3999,3.507,4000,3.507,4001,3.507,4002,3.507,4003,3.507,4004,3.507,4005,3.507,4006,3.507,4007,3.507,4008,3.507,4009,3.507,4010,3.507,4011,3.507,4012,3.507,4013,3.507]],["title/components/SignupFormComponent.html",[0,0.202,288,1.294]],["body/components/SignupFormComponent.html",[0,0.311,1,0.809,2,0.163,3,0.168,4,0.671,6,0.852,7,0.823,8,1.145,9,0.106,11,0.359,16,1.197,19,1.824,20,0.795,21,2.525,23,0.706,25,0.007,30,1.16,31,2.164,32,1.913,35,1.177,37,0.325,38,0.561,39,1.039,40,1.495,43,1.402,44,1.437,46,2.074,47,1.358,49,1.013,52,3.51,60,0.618,65,0.25,69,0.693,70,0.944,71,1.118,79,1.177,80,1.359,81,1.052,82,1.575,91,0.854,92,0.9,93,0.566,113,1.197,115,0.795,117,2.865,118,1.122,124,3.424,128,4.601,131,2.704,132,2.922,137,0.279,138,1.27,147,0.638,148,0.102,149,0.163,177,0.586,178,1.282,179,0.994,180,1.327,181,1.745,182,0.852,183,0.852,184,0.782,185,1.585,186,0.782,187,0.823,188,1.497,189,0.809,190,0.795,191,2.101,192,0.809,193,1.313,194,1.776,195,0.823,196,1.319,197,2.167,198,0.823,199,0.823,200,0.852,201,0.809,202,1.305,203,0.823,204,0.852,205,0.809,206,0.852,207,0.795,208,0.795,209,1.47,210,1.585,211,0.795,212,0.809,213,0.809,214,0.782,215,0.852,216,0.823,217,1.914,218,0.823,219,0.809,220,0.823,221,0.823,222,0.823,223,0.809,224,0.852,225,0.809,226,0.823,227,0.852,228,0.809,229,0.852,230,0.809,231,0.782,232,0.944,233,0.852,234,0.809,235,0.852,236,0.795,237,0.809,238,0.852,239,0.809,240,0.852,241,1.137,242,0.852,243,0.809,244,1.382,245,0.852,246,0.795,247,0.852,248,0.809,249,0.852,250,0.782,251,0.852,252,2.403,253,2.217,254,0.809,255,0.756,256,0.852,257,0.809,258,0.852,259,0.852,260,0.809,261,0.852,262,0.809,263,0.852,264,0.782,265,0.852,266,0.795,267,0.809,268,0.852,269,0.809,270,1.95,271,0.852,272,0.795,273,0.809,274,1.766,275,0.809,276,0.823,277,1.081,278,0.823,279,0.823,280,0.809,281,0.823,282,0.823,283,0.823,284,0.852,285,0.795,286,0.809,287,0.852,288,1.686,289,2.146,290,0.809,291,0.852,292,0.809,293,0.852,294,0.823,295,0.756,296,0.809,297,0.852,298,0.809,299,0.852,300,0.809,301,0.852,302,0.809,303,0.769,304,0.782,305,0.852,306,0.795,307,0.852,308,0.795,309,0.852,310,0.795,311,0.852,312,0.795,313,0.852,314,0.795,315,0.838,316,0.852,317,0.795,318,0.838,319,0.852,320,0.003,321,0.003,329,2.129,345,1.045,354,3.144,434,1.477,446,2.638,447,2.379,448,1.59,452,3.064,474,1.841,490,3.166,496,2.585,508,1.672,557,3.289,584,2.711,585,1.841,590,3.457,689,3.037,718,6.135,723,2.582,922,3.206,937,2.129,938,1.863,947,2.172,1009,2.165,1041,4.51,1049,4.487,1058,1.841,1142,1.841,1174,2.277,1257,1.27,1413,1.841,1629,2.922,1633,3.592,1875,6.704,2047,1.536,2758,4.133,2770,4.487,2785,2.582,2787,2.582,2788,2.809,2789,5.224,2790,4.3,2791,4.3,2792,6.309,2793,6.925,2794,5.224,2795,4.3,2796,6.925,2797,5.853,2798,4.3,2799,4.3,2800,4.3,2801,4.3,2806,1.039,2808,2.809,2810,5.38,2811,2.809,2813,2.809,2815,2.809,2816,2.809,2817,2.809,2819,2.809,2821,2.277,2824,2.809,2826,2.809,2828,4.487,2829,5.224,2832,2.809,2836,2.809,2837,2.413,2841,2.809,2842,2.809,2843,2.809,2846,2.809,2847,2.809,2848,5.224,2849,2.809,2850,2.809,2851,2.809,2856,2.809,2857,2.809,2858,2.809,2859,2.809,2861,2.809,2862,2.809,2863,3.953,3994,3.486,4014,7.775,4015,6.925,4016,5.865,4017,4.827,4018,3.154,4019,3.154,4020,4.827,4021,3.154,4022,3.154,4023,3.154,4024,3.154,4025,3.154,4026,3.154,4027,3.154,4028,3.154,4029,3.154,4030,3.154,4031,3.154,4032,3.154,4033,4.827,4034,3.154,4035,3.154,4036,3.154,4037,3.154,4038,3.154,4039,3.154,4040,3.154,4041,3.154,4042,3.154,4043,3.154,4044,3.154,4045,3.154,4046,3.154,4047,3.154]],["title/directives/SlotHostDirective.html",[179,1.038,317,1.272]],["body/directives/SlotHostDirective.html",[0,0.379,2,0.35,3,0.361,9,0.229,11,0.773,23,1.519,25,0.007,31,1.77,37,0.698,38,0.95,39,2.693,44,1.573,46,2.062,60,1.046,65,0.239,69,0.706,71,0.969,91,0.988,92,0.728,93,0.655,107,4.209,137,0.6,148,0.218,149,0.229,179,1.806,317,2.062,318,2.172,320,0.005,321,0.005,357,1.717,418,3.139,427,3.668,496,3.604,502,2.967,645,6.255,967,3.88,1250,4.334,1409,4.209,1439,8.045,1483,6.694,4048,8.776,4049,6.784,4050,8.176,4051,6.784,4052,6.784,4053,8.176,4054,6.784]],["title/classes/Sorter.html",[149,0.17,4055,4.491]],["body/classes/Sorter.html",[2,0.25,3,0.258,8,1.756,9,0.163,11,0.75,25,0.007,30,1.162,37,0.77,38,1.132,39,2.645,43,1.211,48,2.774,49,1.148,60,0.619,65,0.171,69,0.799,70,1.809,71,0.887,76,0.884,80,2.053,81,1.225,91,0.958,92,0.706,93,0.856,118,0.608,123,3.207,147,1.514,148,0.258,149,0.252,164,2.208,320,0.005,321,0.004,345,1.875,404,3.044,425,1.722,444,3.173,454,3.221,502,1.756,511,3.715,526,4.317,531,3.715,583,2.731,602,2.948,645,3.702,681,3.526,685,3.24,752,6.4,782,6.677,890,4.311,908,3.174,953,2.825,960,4.367,1061,2.929,1086,2.929,1403,3.702,1483,3.963,1502,6.125,1671,3.322,1684,3.174,1690,6.156,1765,3.044,1876,3.963,1920,3.843,1984,5.39,2081,3.984,2334,3.702,2447,7.479,2455,5.863,2609,4.518,3321,6.573,3358,5.863,4055,7.716,4056,4.311,4057,6.582,4058,8.028,4059,6.582,4060,5.863,4061,5.863,4062,5.863,4063,4.839,4064,6.582,4065,4.839,4066,8.397,4067,6.582,4068,4.839,4069,3.963,4070,5.863,4071,4.839,4072,4.839,4073,4.839,4074,4.839,4075,4.311,4076,4.839,4077,4.311,4078,4.311,4079,4.839,4080,6.582,4081,4.839,4082,4.839,4083,4.839,4084,4.839,4085,4.839,4086,6.582,4087,4.839,4088,4.839,4089,4.839,4090,4.839,4091,4.839,4092,4.839,4093,4.839,4094,4.839]],["title/interfaces/Symbol.html",[337,1.436,937,1.83]],["body/interfaces/Symbol.html",[2,0.362,3,0.374,9,0.237,11,0.8,25,0.007,37,0.723,38,0.97,61,3.436,69,0.721,70,1.887,79,2.035,92,1.049,93,0.86,98,4.419,144,5.252,148,0.226,320,0.006,321,0.006,337,2.378,832,4.822,937,3.501,1045,5.053,1390,5.731,1633,4.563,2052,6.836,2081,5.839,3098,6.836,4095,7.025,4096,8.349,4097,8.349]],["title/modules/SymbolModule.html",[322,1.092,1889,3.306]],["body/modules/SymbolModule.html",[0,0.355,2,0.323,3,0.414,4,1.656,9,0.211,11,0.713,24,2.499,25,0.007,35,1.525,60,0.996,63,2.1,65,0.328,92,0.671,118,0.785,137,0.553,144,3.934,146,3.2,148,0.293,149,0.263,177,1.163,320,0.005,321,0.005,322,1.684,324,2.574,328,3.274,329,2.27,330,2.1,333,2.714,355,3.53,380,3.652,425,2.225,460,4.102,498,3.002,587,2.968,601,2.225,626,3.6,627,3.692,628,2.824,681,2.316,802,3.652,808,4.894,832,4.293,937,3.455,938,3.673,1042,2.968,1213,3.22,1403,4.785,1729,3.786,1828,4.293,1889,6.295,1910,3.316,2047,3.047,2110,3.652,2460,5.515,2612,3.934,2627,5.121,3190,4.102,3392,4.785,4098,5.571,4099,5.571,4100,5.571,4101,5.571,4102,7.469,4103,6.255,4104,3.652,4105,6.478,4106,5.121,4107,5.121,4108,5.571,4109,5.571,4110,5.571,4111,5.571,4112,5.571,4113,5.571,4114,6.93,4115,6.37,4116,4.785,4117,5.571,4118,6.255]],["title/injectables/SymbolPipe.html",[436,1.272,4102,3.857]],["body/injectables/SymbolPipe.html",[2,0.445,3,0.347,9,0.22,11,0.743,16,1.616,25,0.007,37,0.671,49,1.141,63,2.188,65,0.304,69,0.563,70,1.804,71,0.772,80,1.848,81,1.104,91,0.949,92,1.029,93,0.629,137,0.576,148,0.21,149,0.22,178,1.731,320,0.005,321,0.005,357,1.275,436,2.175,452,3.144,502,2.896,601,2.319,657,4.658,685,2.515,937,3.547,938,3.558,1121,7.107,1213,4.627,1217,4.658,1223,5.762,2081,4.829,3392,6.104,4102,6.104,4117,5.805,4119,6.517,4120,7.979,4121,6.517,4122,7.979,4123,5.805,4124,6.517]],["title/injectables/SymbolService.html",[436,1.272,938,1.945]],["body/injectables/SymbolService.html",[2,0.213,3,0.22,8,1.499,9,0.139,11,0.471,25,0.007,37,0.707,38,0.685,43,1.374,44,1.668,49,0.843,60,1.171,65,0.265,69,0.813,70,1.89,71,1.094,76,0.755,79,2.367,80,2.009,81,1.181,82,1.796,88,5.144,91,1.263,92,1.023,93,0.837,98,4.714,118,1.108,123,4.225,126,2.664,137,0.365,147,1.391,148,0.133,149,0.139,164,1.219,180,1.738,320,0.004,321,0.004,357,1.344,436,1.734,477,2.598,626,3.468,700,3.327,782,6.757,785,4.376,879,2.19,902,4.132,937,3.629,938,2.274,1098,2.5,1592,4.915,1728,5.734,2080,8.048,2081,3.568,2460,3.568,3033,6.137,3071,6.676,4105,6.304,4116,6.634,4123,3.679,4125,4.131,4126,5.894,4127,5.894,4128,4.131,4129,7.495,4130,4.131,4131,5.734,4132,8.24,4133,4.131,4134,7.495,4135,4.131,4136,4.131,4137,7.495,4138,4.131,4139,7.495,4140,4.131,4141,5.894,4142,4.131,4143,5.894,4144,4.131,4145,5.894,4146,5.894,4147,4.131,4148,4.131,4149,4.131,4150,4.131,4151,4.131,4152,4.131,4153,4.131,4154,4.131,4155,4.131,4156,5.894,4157,4.131,4158,4.131,4159,4.131,4160,4.131,4161,4.131,4162,7.925,4163,4.131,4164,4.131,4165,4.131,4166,4.131,4167,4.131,4168,4.131,4169,4.131]],["title/components/TabComponent.html",[0,0.202,290,1.294]],["body/components/TabComponent.html",[0,0.312,1,1.017,2,0.204,3,0.211,4,0.844,6,1.071,7,1.035,9,0.134,11,0.452,20,1,23,0.888,25,0.007,30,1.186,31,2.182,32,1.932,35,1.395,37,0.408,38,0.665,40,1.611,44,1.101,49,0.818,65,0.202,69,0.741,70,1.439,71,1.052,76,1.046,79,1.793,80,1.326,81,0.732,82,1.372,91,0.577,92,0.92,93,0.383,109,3.669,113,1.419,115,1,118,0.719,131,2.356,137,0.35,148,0.128,149,0.134,177,0.737,178,1.52,179,1.178,181,1.954,182,1.071,183,1.071,184,0.983,185,1.815,186,0.983,187,1.035,188,0.903,189,1.017,190,1,191,2.264,192,1.017,193,1.504,194,1.988,195,1.035,196,1.435,197,2.318,198,1.035,199,1.035,200,1.071,201,1.017,202,1.547,203,1.035,204,1.071,205,1.017,206,1.071,207,1,208,1,209,1.584,210,1.815,211,1,212,1.017,213,1.017,214,0.983,215,1.071,216,1.035,217,2.108,218,1.035,219,1.017,220,1.035,221,1.035,222,1.035,223,1.017,224,1.071,225,1.017,226,1.035,227,1.071,228,1.017,229,1.071,230,1.017,231,0.983,232,1.758,233,1.071,234,1.017,235,1.071,236,1,237,1.017,238,1.071,239,1.017,240,1.071,241,0.934,242,1.071,243,1.017,244,1.583,245,1.071,246,1,247,1.071,248,1.017,249,1.071,250,0.983,251,1.071,252,1.017,253,0.983,254,1.017,255,0.95,256,1.071,257,1.017,258,1.071,259,1.071,260,1.017,261,1.071,262,1.017,263,1.071,264,0.983,265,1.071,266,1,267,1.017,268,1.071,269,1.017,270,1.035,271,1.071,272,1,273,1.017,274,1.889,275,1.017,276,1.035,277,0.888,278,1.035,279,1.035,280,1.017,281,1.035,282,1.035,283,1.035,284,1.071,285,1,286,1.017,287,1.071,288,1.017,289,1.035,290,1.887,291,1.071,292,2.305,293,1.071,294,1.035,295,0.95,296,1.017,297,1.071,298,1.017,299,1.071,300,1.017,301,1.071,302,1.017,303,0.966,304,0.983,305,1.071,306,1,307,1.071,308,1,309,1.071,310,1,311,1.071,312,1,313,1.071,314,1,315,1.053,316,1.071,317,1,318,1.053,319,1.071,320,0.004,321,0.004,345,1.239,354,3.282,357,1.314,362,1.11,378,3.464,418,1.835,434,2.674,447,1.751,448,2.76,489,4.263,519,3.403,571,1.922,581,4.413,872,5.395,947,2.724,967,2.716,1192,3.464,1365,4.379,1400,3.246,1402,6.386,1579,3.6,1999,3.929,4170,3.965,4171,7.23,4172,5.724,4173,8.739,4174,5.724,4175,5.724,4176,3.965,4177,3.965,4178,3.965,4179,3.965,4180,3.965,4181,3.965,4182,3.965,4183,5.724,4184,3.965,4185,3.532,4186,3.965,4187,3.965]],["title/components/TabsComponent.html",[0,0.202,292,1.294]],["body/components/TabsComponent.html",[0,0.332,1,0.982,2,0.197,3,0.204,4,1.188,6,1.035,7,1,8,1.39,9,0.129,11,0.436,16,1.384,20,0.966,23,0.857,25,0.007,30,0.676,31,2.179,32,1.929,35,1.36,37,0.394,38,0.649,40,1.479,43,0.62,49,0.798,60,0.49,61,2.297,65,0.232,69,0.664,70,1.288,71,0.982,77,1.91,78,3.83,79,1.36,80,1.676,81,0.984,82,1.734,91,0.959,92,0.944,93,0.636,110,1.477,113,1.384,115,0.966,118,0.827,124,3.258,137,0.338,147,1.129,148,0.123,149,0.129,164,1.13,177,0.712,178,1.482,179,1.149,180,1.611,181,1.922,182,1.035,183,1.035,184,0.949,185,1.78,186,0.949,187,1,188,0.872,189,0.982,190,0.966,191,2.24,192,0.982,193,1.475,194,1.955,195,1,196,1.418,197,2.296,198,1,199,1,200,1.035,201,0.982,202,1.508,203,1,204,1.035,205,0.982,206,1.035,207,0.966,208,0.966,209,1.568,210,1.78,211,0.966,212,0.982,213,0.982,214,0.949,215,1.035,216,1,217,2.079,218,1,219,0.982,220,1,221,1,222,1,223,0.982,224,1.035,225,0.982,226,1,227,1.035,228,0.982,229,1.035,230,0.982,231,0.949,232,1.781,233,1.035,234,0.982,235,1.035,236,0.966,237,0.982,238,1.035,239,0.982,240,1.035,241,0.902,242,1.035,243,0.982,244,1.551,245,1.035,246,0.966,247,1.035,248,0.982,249,1.035,250,0.949,251,1.035,252,0.982,253,0.949,254,0.982,255,0.918,256,1.035,257,0.982,258,1.035,259,1.035,260,0.982,261,1.035,262,0.982,263,1.035,264,0.949,265,1.035,266,0.966,267,0.982,268,1.035,269,0.982,270,1,271,1.035,272,0.966,273,0.982,274,1.871,275,0.982,276,1,277,0.857,278,1,279,1,280,0.982,281,1,282,1,283,1,284,1.035,285,0.966,286,0.982,287,1.035,288,0.982,289,1,290,2.289,291,1.035,292,2.06,293,1.035,294,1,295,0.918,296,0.982,297,1.035,298,0.982,299,1.035,300,0.982,301,1.035,302,0.982,303,0.933,304,0.949,305,1.035,306,0.966,307,1.035,308,0.966,309,1.035,310,0.966,311,1.035,312,0.966,313,1.035,314,0.966,315,1.017,316,1.035,317,0.966,318,1.017,319,1.035,320,0.004,321,0.005,342,2.093,357,0.749,362,1.562,378,3.378,400,2.958,425,1.362,447,1.172,489,4.204,544,5.536,570,1.772,587,2.648,595,2.235,601,1.362,602,1.509,684,4.971,879,2.03,927,5.266,1047,4.084,1060,3.05,1263,2.235,1447,2.929,1557,2.628,1650,4.269,2047,2.719,2155,3.135,2533,5.925,2937,3.41,2980,3.41,3051,3.41,4171,7.228,4188,3.829,4189,4.269,4190,5.58,4191,6.585,4192,5.58,4193,7.236,4194,7.236,4195,5.58,4196,5.58,4197,3.829,4198,3.829,4199,5.58,4200,7.236,4201,3.829,4202,5.58,4203,3.829,4204,5.58,4205,3.829,4206,5.58,4207,3.41,4208,3.829,4209,3.829,4210,3.829,4211,3.829,4212,3.829,4213,3.829,4214,3.829,4215,3.829,4216,3.829,4217,3.829,4218,3.829,4219,3.829,4220,3.829,4221,3.829,4222,3.829,4223,3.829,4224,5.58,4225,3.829,4226,3.829,4227,5.58]],["title/components/TinymceComponent.html",[0,0.202,296,1.294]],["body/components/TinymceComponent.html",[0,0.272,1,0.739,2,0.149,3,0.153,4,0.613,5,1.367,6,0.779,7,0.752,8,1.046,9,0.097,11,0.328,12,2.541,14,4.427,16,1.116,17,3.485,20,0.727,23,0.645,24,1.848,25,0.007,26,3.127,27,2.541,28,3.127,29,2.541,30,1.106,31,2.155,32,1.904,33,2.952,35,1.097,37,0.297,38,0.523,39,2.373,40,1.539,41,3.939,42,4.522,43,1.484,44,1.385,45,3.051,49,0.644,50,4.127,53,2.952,54,3.939,57,2.724,60,0.922,65,0.322,69,0.72,70,1.472,71,1.08,76,1.242,77,2.143,79,1.951,81,1.047,82,1.866,84,1.812,86,2.832,89,2.166,91,0.912,92,0.894,93,0.605,94,2.832,104,2.832,106,3.09,107,2.317,108,1.701,109,2.827,110,1.112,111,3.444,113,1.116,115,0.727,118,1.079,119,2.46,121,2.677,123,2.193,124,3.656,126,2.025,135,1.682,136,1.301,137,0.255,138,1.16,147,0.583,148,0.093,149,0.097,154,5.897,156,2.204,162,2.952,167,1.527,171,2.359,173,1.812,177,0.536,178,1.196,179,0.926,180,1.212,181,1.663,182,0.779,183,0.779,184,0.714,185,1.497,186,0.714,187,0.752,188,0.656,189,0.739,190,0.727,191,2.033,192,0.739,193,1.241,194,1.692,195,0.752,196,1.272,197,2.104,198,0.752,199,0.752,200,0.779,201,0.739,202,1.217,203,0.752,204,0.779,205,0.739,206,0.779,207,0.727,208,0.727,209,1.423,210,1.497,211,0.727,212,0.739,213,0.739,214,0.714,215,0.779,216,0.752,217,1.836,218,0.752,219,0.739,220,0.752,221,0.752,222,0.752,223,0.739,224,0.779,225,0.739,226,0.752,227,0.779,228,0.739,229,0.779,230,0.739,231,1.374,232,0.881,233,0.779,234,0.739,235,0.779,236,0.727,237,0.739,238,0.779,239,0.739,240,0.779,241,0.679,242,0.779,243,0.739,244,1.305,245,0.779,246,0.727,247,0.779,248,0.739,249,0.779,250,0.714,251,0.779,252,0.739,253,0.714,254,0.739,255,0.69,256,0.779,257,0.739,258,0.779,259,0.779,260,0.739,261,0.779,262,0.739,263,0.779,264,0.714,265,0.779,266,0.727,267,0.739,268,0.779,269,0.739,270,0.752,271,0.779,272,0.727,273,0.739,274,1.714,275,0.739,276,0.752,277,1.008,278,0.752,279,0.752,280,0.739,281,0.752,282,0.752,283,0.752,284,0.779,285,0.727,286,0.739,287,0.779,288,0.739,289,0.752,290,0.739,291,0.779,292,0.739,293,0.779,294,0.752,295,0.69,296,1.848,297,0.779,298,0.739,299,0.779,300,0.739,301,0.779,302,0.739,303,0.702,304,0.714,305,0.779,306,0.727,307,0.779,308,0.727,309,0.779,310,0.727,311,0.779,312,0.727,313,0.779,314,0.727,315,1.196,316,0.779,317,0.727,318,0.765,319,0.779,320,0.003,321,0.003,357,0.564,362,1.55,392,1.889,434,2.448,444,1.701,447,1.377,448,2.479,452,2.838,494,2.696,519,2.083,536,2.628,571,1.511,582,2.832,596,4.255,597,1.483,601,1.025,803,2.317,907,3.028,918,2.386,941,1.571,947,2.319,966,2.083,967,2.136,1047,3.127,1205,3.251,1244,2.359,1245,1.978,1614,2.566,1814,3.235,1857,5.128,2013,2.359,2014,2.566,2047,2.193,2133,5.578,2238,6.052,2340,3.686,2341,3.686,2407,2.359,2742,4.935,2821,3.251,2877,6.052,2880,5.578,2888,6.935,2906,2.359,3216,2.952,3332,3.251,3719,4.935,4104,4.205,4171,3.444,4228,2.881,4229,5.148,4230,4.501,4231,5.54,4232,4.501,4233,4.501,4234,5.54,4235,2.881,4236,6.262,4237,4.501,4238,3.444,4239,4.501,4240,3.444,4241,4.501,4242,2.881,4243,4.501,4244,4.01,4245,2.881,4246,2.881,4247,2.881,4248,4.501,4249,4.501,4250,2.881,4251,4.501,4252,2.881,4253,2.881,4254,2.881,4255,2.881,4256,2.881,4257,2.881,4258,2.881,4259,2.881,4260,2.881,4261,2.881,4262,2.881,4263,2.881,4264,2.881,4265,2.881,4266,2.881,4267,2.881,4268,2.881,4269,2.881,4270,2.881,4271,2.881,4272,2.881,4273,2.881,4274,2.881,4275,2.881,4276,2.881,4277,2.881,4278,2.881,4279,2.881,4280,4.501,4281,2.881,4282,2.881,4283,2.881,4284,2.881,4285,2.881,4286,2.881,4287,2.881,4288,2.881,4289,2.881,4290,4.501,4291,2.881,4292,2.881,4293,2.881,4294,2.881,4295,2.881,4296,2.881,4297,2.881,4298,2.881,4299,4.501,4300,2.881,4301,2.881,4302,2.881,4303,2.881,4304,2.881,4305,2.881,4306,2.881,4307,2.881]],["title/modules/TinymceModule.html",[322,1.092,4308,3.641]],["body/modules/TinymceModule.html",[2,0.366,3,0.378,9,0.24,24,2.096,25,0.007,63,2.385,65,0.297,137,0.628,146,3.382,147,1.437,148,0.304,149,0.24,177,1.32,296,2.558,320,0.006,321,0.006,322,1.819,324,2.923,328,3.537,329,2.578,330,2.385,332,4.743,333,2.478,4308,6.982,4309,6.327,4310,6.327,4311,6.327,4312,7.103,4313,7.103,4314,7.103,4315,7.103]],["title/components/ToggleComponent.html",[0,0.202,298,1.294]],["body/components/ToggleComponent.html",[0,0.337,1,1.035,2,0.208,3,0.215,4,1.444,5,2.75,6,1.09,7,1.053,9,0.136,11,0.46,16,1.437,17,4.266,20,1.017,23,0.903,24,2.188,25,0.007,26,3.828,27,3.27,28,3.828,29,3.27,30,1.023,31,2.183,32,1.933,35,1.413,37,0.415,38,0.673,40,1.62,41,4.663,43,1.488,49,0.829,53,3.8,54,4.663,57,3.507,60,0.949,65,0.205,69,0.586,70,1.134,71,0.998,81,0.949,82,1.777,86,3.645,88,5.089,89,1.711,90,4.185,91,0.844,92,0.941,93,0.56,94,3.645,104,3.645,106,3.977,113,1.437,115,1.017,118,1.058,119,3.167,126,2.397,137,0.356,138,1.624,148,0.13,149,0.136,162,4.448,173,2.537,177,0.75,178,1.539,179,1.193,181,1.969,182,1.09,183,1.09,184,1,185,1.833,186,1,187,1.053,188,0.919,189,1.035,190,1.017,191,2.276,192,1.035,193,1.519,194,2.003,195,1.053,196,1.444,197,2.329,198,1.053,199,1.053,200,1.09,201,1.035,202,1.566,203,1.053,204,1.09,205,1.035,206,1.09,207,1.017,208,1.017,209,1.592,210,1.833,211,1.017,212,1.035,213,1.035,214,1,215,1.09,216,1.053,217,2.122,218,1.053,219,1.035,220,1.053,221,1.053,222,1.053,223,1.035,224,1.09,225,1.035,226,1.053,227,1.09,228,1.035,229,1.09,230,1.035,231,1,232,1.134,233,1.09,234,1.035,235,1.09,236,1.017,237,1.035,238,1.09,239,1.035,240,1.09,241,0.95,242,1.09,243,1.035,244,1.598,245,1.09,246,1.017,247,1.09,248,1.035,249,1.09,250,1,251,1.09,252,1.035,253,1,254,1.035,255,0.967,256,1.09,257,1.035,258,1.09,259,1.09,260,1.035,261,1.09,262,1.035,263,1.09,264,1,265,1.09,266,1.017,267,1.035,268,1.09,269,1.035,270,1.053,271,1.09,272,1.017,273,1.035,274,1.897,275,1.035,276,1.053,277,0.903,278,1.053,279,1.053,280,1.035,281,1.053,282,1.053,283,1.053,284,1.09,285,1.017,286,1.035,287,1.09,288,1.035,289,1.053,290,1.035,291,1.09,292,1.035,293,1.09,294,1.053,295,0.967,296,1.035,297,1.09,298,2.098,299,1.09,300,1.035,301,1.09,302,1.035,303,0.983,304,1,305,1.09,306,1.017,307,1.09,308,1.017,309,1.09,310,1.017,311,1.09,312,1.017,313,1.09,314,1.017,315,1.071,316,1.09,317,1.017,318,1.071,319,1.09,320,0.004,321,0.004,345,1.866,557,3.93,819,5.407,1205,2.913,1250,3.072,2164,4.433,2457,4.433,2906,3.302,4316,4.033,4317,5.795,4318,5.795,4319,4.033,4320,4.033,4321,4.033,4322,5.795,4323,4.033,4324,4.033,4325,5.795,4326,4.033,4327,4.033]],["title/injectables/TypeConfigService.html",[436,1.272,1157,3.052]],["body/injectables/TypeConfigService.html",[2,0.143,3,0.148,4,0.93,9,0.094,11,0.316,20,1.102,25,0.007,30,1.683,32,1.614,37,0.285,38,1.022,40,1.753,43,1.58,46,1.102,47,1.881,49,0.877,60,0.559,61,1.798,65,0.279,69,0.802,70,1.583,71,0.959,76,0.799,79,1.065,80,1.421,81,1.178,82,0.665,89,1.102,91,0.893,92,0.824,93,0.592,118,0.931,137,0.245,139,0.864,147,0.884,148,0.089,149,0.094,186,1.654,193,1.879,196,1.083,207,2.238,208,1.994,209,1.802,211,1.788,232,1.749,244,1.029,295,1.47,320,0.003,321,0.003,341,2.129,345,0.946,349,0.79,353,2.477,354,1.839,357,0.543,362,1.223,398,2.122,400,2.316,405,4.21,406,3.577,433,2.748,434,2.605,436,1.364,444,2.318,492,4.664,531,3.279,557,2.187,570,1.283,594,1.516,601,0.987,602,2.793,689,2.748,706,3.858,787,2.271,794,3.577,796,3.577,798,3.577,802,4.138,803,3.649,824,2.551,896,2.783,924,2.388,937,2.572,938,2.367,940,3.581,974,1.47,1047,2.466,1060,2.388,1066,1.619,1074,2.988,1090,1.819,1098,1.679,1104,1.819,1133,2.551,1157,2.644,1170,2.644,1171,2.865,1172,2.122,1179,5.71,1186,3.155,1191,3.696,1209,2.748,1210,2.003,1216,5.556,1227,4.815,1250,5.061,1390,2.999,1595,1.904,1608,1.904,1626,4.648,1627,6.039,1628,6.58,1632,6.193,1633,2.388,1671,4.21,1674,2.748,1695,2.999,1716,4.648,1754,2.999,1791,6.061,1814,2.551,1815,5.879,2047,2.129,2202,7.057,2224,5.845,2324,3.892,2465,2.122,2474,2.271,2487,3.892,3033,2.271,3066,5.71,3068,2.644,3739,3.892,4328,4.369,4329,4.369,4330,7.685,4331,6.133,4332,4.369,4333,6.133,4334,2.774,4335,2.774,4336,4.369,4337,2.774,4338,4.369,4339,4.369,4340,2.774,4341,2.774,4342,4.369,4343,2.774,4344,2.774,4345,4.369,4346,4.369,4347,4.369,4348,7.685,4349,7.685,4350,7.087,4351,7.087,4352,4.369,4353,4.369,4354,4.369,4355,4.369,4356,4.369,4357,4.369,4358,8.393,4359,4.369,4360,4.369,4361,4.369,4362,6.672,4363,6.133,4364,4.369,4365,4.369,4366,4.369,4367,2.271,4368,4.369,4369,2.774,4370,2.774,4371,2.774,4372,2.774,4373,2.774,4374,2.471,4375,2.774,4376,2.774,4377,2.774,4378,2.774,4379,2.774]],["title/modules/UiModule.html",[322,1.092,621,2.944]],["body/modules/UiModule.html",[2,0.297,3,0.307,9,0.194,24,1.701,25,0.007,63,1.935,65,0.341,137,0.509,146,2.178,147,1.166,148,0.286,149,0.194,177,1.071,320,0.005,321,0.005,322,1.599,324,2.372,328,3.109,329,2.092,330,1.935,333,2.011,621,5.858,1877,6.628,1886,6.332,1887,5.844,1888,6.332,1889,6.332,1892,4.719,1898,4.719,1899,4.162,1902,4.719,2574,6.628,2580,6.628,2582,5.134,2583,5.134,3263,6.973,3979,6.973,3986,5.134,4380,5.134,4381,5.763,4382,5.134,4383,5.763,4384,5.763,4385,5.763,4386,5.763,4387,5.763]],["title/interfaces/Update.html",[337,1.436,494,2.171]],["body/interfaces/Update.html",[0,0.16,2,0.206,3,0.213,9,0.135,11,0.455,25,0.007,30,1.517,37,0.411,38,0.909,43,1.516,44,1.106,46,1.006,48,1.667,60,0.944,61,2.366,65,0.309,69,0.804,70,1.809,75,2.528,76,1.348,77,1.967,80,2.058,81,1.215,84,2.509,89,2.241,93,0.858,117,1.243,119,2.18,121,2.656,131,1.642,137,0.353,147,1.364,148,0.185,149,0.135,164,1.177,188,1.535,196,1.482,209,1.087,274,2.152,277,1.96,320,0.004,321,0.005,337,1.638,338,2.329,341,1.944,345,1.597,349,1.136,353,1.177,355,4.597,362,2.064,404,4.24,411,2.366,413,2.366,416,1.801,436,1.7,446,3.684,447,1.221,448,1.894,488,3.142,492,4.506,494,4.133,498,3.508,504,3.119,523,5.063,536,3.935,537,3.804,546,2.616,549,2.881,586,2.509,596,3.684,597,2.054,601,1.419,626,1.846,647,2.738,685,3.143,703,2.509,705,1.944,726,4.24,740,4.464,741,4.837,816,1.997,850,2.115,879,3.573,902,3.284,924,2.18,947,2.895,956,3.77,1042,1.893,1050,3.357,1054,2.738,1055,2.616,1069,3.48,1071,2.616,1072,2.881,1073,2.415,1074,1.944,1075,2.738,1076,2.329,1081,3.267,1083,2.252,1084,3.267,1086,2.415,1092,3.267,1094,2.881,1095,3.77,1098,2.415,1115,3.357,1126,5.519,1127,3.267,1128,3.267,1129,3.267,1132,4.707,1133,2.329,1137,3.267,1138,3.267,1139,3.267,1140,3.267,1141,6.402,1142,2.329,1143,3.267,1245,2.738,1523,4.707,1559,3.48,1650,4.398,1727,3.77,1739,3.052,3069,4.707,3531,2.616,3608,2.881,3799,3.267,3835,3.554,3838,5.121,3839,5.121,3841,3.554,3843,3.554,3846,3.554,3848,3.052,3849,3.554,3851,3.554,3852,3.554,3855,3.554,3856,5.121,3857,5.121,3858,5.121,3859,6.402,3860,3.554,3861,6.57,3862,3.554,3863,3.554,3864,3.554,3865,3.554,3866,3.554,3867,3.554,3868,3.554,3869,3.554,3870,3.554,3871,3.554,3872,3.554,3873,3.554,3874,3.554,3875,3.554,3876,3.554,3877,3.554,3878,6.004,3879,3.554,3880,5.121,3881,3.554,3882,3.554,3883,3.554,3884,3.554]],["title/interfaces/Upload.html",[303,1.229,337,1.436]],["body/interfaces/Upload.html",[0,0.134,2,0.173,3,0.178,9,0.245,11,0.381,25,0.007,30,1.402,37,0.344,38,0.587,44,1.723,46,0.844,48,2.702,49,0.479,60,0.867,65,0.306,69,0.748,70,1.553,71,0.397,75,1.633,76,1.621,77,1.728,80,1.409,81,1.236,84,2.105,89,1.834,92,0.359,93,0.896,108,1.265,117,1.574,118,0.42,121,3.128,123,3.301,131,1.377,137,0.296,147,1.653,148,0.196,149,0.113,164,1.795,188,0.762,193,2.195,196,1.443,209,1.15,231,0.83,232,1.325,274,1.339,277,0.75,303,2.272,320,0.003,321,0.005,337,1.93,338,1.954,340,2.851,341,2.461,342,1.829,345,1.467,349,0.953,353,2,362,2.035,404,4.574,407,2.105,411,2.503,413,2.079,416,1.511,431,4.892,436,1.534,446,1.829,447,1.024,448,2.396,452,1.319,467,6.038,468,2.417,476,2.297,481,2.74,488,3.325,494,2.917,498,2.347,502,1.215,518,2.746,523,4.65,536,1.954,546,2.195,554,2.105,555,5.676,576,2.74,586,2.105,594,1.829,600,0.789,601,1.191,602,2.397,626,1.549,681,2.693,704,2.195,705,2.461,740,3.682,748,2.74,755,2.297,850,1.774,868,2.461,902,1.631,907,3.974,909,1.723,924,1.829,941,1.762,947,2.252,1029,4.65,1039,2.74,1042,1.588,1052,1.723,1058,1.954,1061,3.057,1069,3.057,1071,2.195,1072,2.417,1073,2.026,1074,1.631,1075,2.297,1076,3.551,1083,2.851,1105,2.297,1110,2.74,1115,4.463,1135,4.654,1157,3.057,1179,2.417,1475,2.297,1559,3.057,1633,2.76,1719,2.981,1720,5.418,1721,4.499,1722,5.418,1723,4.499,1724,4.499,1725,4.499,1726,2.74,1727,2.195,1728,2.561,1729,2.026,1730,2.981,1731,4.499,1732,2.981,1733,4.654,1734,2.561,1735,2.981,1736,2.981,1737,2.981,1738,2.981,1739,2.561,1740,2.981,1741,2.981,1742,5.418,1743,2.981,1744,5.418,1745,2.981,1746,2.981,1747,2.981,1748,2.981,1749,2.981,1750,2.981,1751,1.774,1752,2.981,1753,4.892,1754,2.297,1755,2.981,1756,4.499,1757,2.981,1758,4.499,1759,4.499,1760,2.981,1761,2.981,1762,2.981,1763,2.981,1764,4.499,1765,3.826,1766,2.981,1767,2.561,1768,2.74,1769,2.417,1770,2.981,1771,6.81,1772,2.981,1773,2.981,1774,2.981,1775,2.981,1776,2.981,1777,5.418,1778,2.74,1779,2.981,1780,2.981,1781,4.499,1782,2.981,1783,4.499,1784,4.499,1785,4.499,1786,4.499,1787,4.499,1788,4.499,1789,4.499,1790,4.499,1791,2.417,1792,2.74,1793,3.864,1794,2.981,1795,2.981,1796,2.981,1797,4.499,1798,2.981,1799,2.981,1800,2.981,1801,2.981,1802,2.981,1803,2.417,1804,2.981,1805,5.418,1806,2.981,1807,2.981,1808,4.499,1809,2.981,1810,2.981,1811,2.981,1812,2.561,1813,2.981,1814,1.954,1815,2.561,1816,2.981,1817,2.981,1818,2.981,1819,2.981,1820,2.981,1821,2.981,1822,2.981,1823,2.981,1824,2.981,1825,2.981,1826,2.981,1827,2.981,1828,2.297,1829,2.981,1830,2.981,1831,2.981,1832,2.74,1833,2.981,1834,2.981,1835,2.981]],["title/components/UploadComponent.html",[0,0.202,300,1.294]],["body/components/UploadComponent.html",[0,0.3,1,0.733,2,0.147,3,0.152,4,0.608,6,0.772,7,0.745,9,0.305,11,0.325,16,1.108,20,0.72,23,0.639,25,0.007,30,0.973,31,2.154,32,1.904,35,1.09,37,0.294,38,0.52,40,1.769,43,1.096,44,1.059,46,1.127,47,3.342,49,0.639,60,0.918,65,0.239,69,0.764,70,1.323,71,1.095,76,1.139,79,1.519,81,1.11,82,1.32,89,1.389,91,1.045,92,0.93,93,0.828,109,2.814,110,1.725,113,1.678,115,0.72,118,1.002,121,2.171,126,1.445,136,1.289,137,0.252,139,0.89,148,0.092,149,0.096,167,4.115,177,0.531,178,1.187,179,0.92,181,1.655,182,0.772,183,0.772,184,0.708,185,1.489,186,0.708,187,0.745,188,2.047,189,0.733,190,0.72,191,2.027,192,0.733,193,1.863,194,1.684,195,0.745,196,1.267,197,2.098,198,0.745,199,0.745,200,0.772,201,0.733,202,1.208,203,0.745,204,0.772,205,0.733,206,0.772,207,0.72,208,0.72,209,1.418,210,1.489,211,0.72,212,0.733,213,0.733,214,0.708,215,0.772,216,0.745,217,1.828,218,0.745,219,0.733,220,0.745,221,0.745,222,0.745,223,0.733,224,0.772,225,0.733,226,0.745,227,0.772,228,0.733,229,0.772,230,0.733,231,0.708,232,1.219,233,0.772,234,0.733,235,0.772,236,0.72,237,0.733,238,0.772,239,0.733,240,0.772,241,1.468,242,0.772,243,0.733,244,1.298,245,0.772,246,0.72,247,0.772,248,0.733,249,0.772,250,0.708,251,0.772,252,0.733,253,0.708,254,0.733,255,0.684,256,0.772,257,0.733,258,0.772,259,0.772,260,0.733,261,0.772,262,0.733,263,0.772,264,0.708,265,0.772,266,0.72,267,0.733,268,0.772,269,0.733,270,0.745,271,0.772,272,1.706,273,0.733,274,1.709,275,0.733,276,0.745,277,1.234,278,0.745,279,0.745,280,0.733,281,0.745,282,0.745,283,0.745,284,0.772,285,0.72,286,0.733,287,0.772,288,0.733,289,0.745,290,0.733,291,0.772,292,0.733,293,0.772,294,0.745,295,0.684,296,0.733,297,0.772,298,0.733,299,0.772,300,1.599,301,0.772,302,0.733,303,2.324,304,0.708,305,0.772,306,0.72,307,0.772,308,0.72,309,0.772,310,0.72,311,0.772,312,0.72,313,0.772,314,0.72,315,0.758,316,0.772,317,0.72,318,0.758,319,0.772,320,0.003,321,0.003,343,1.84,345,0.968,357,0.559,411,1.84,412,1.561,413,2.565,416,1.289,434,2.07,437,3.66,438,3.612,447,2.375,448,2.47,469,1.873,474,1.667,476,4.925,496,3.305,511,2.523,513,2.121,554,4.717,555,3.612,557,3.386,559,4.51,569,2.062,570,2.068,572,2.705,583,1.612,584,1.999,590,3.912,591,3.036,601,1.016,602,2.456,726,1.796,755,1.96,773,2.705,827,1.873,907,2.443,918,2.37,922,3.011,923,3.465,933,4.539,936,3.109,937,3.111,938,2.405,941,2.36,947,2.308,966,3.777,1004,2.705,1005,2.121,1006,3.978,1009,1.96,1011,1.796,1029,3.781,1038,2.705,1047,2.523,1095,2.931,1115,2.61,1142,4.378,1302,2.338,1422,2.338,1475,1.96,1506,2.338,1646,3.66,1765,1.796,1778,2.338,1792,3.66,1920,2.61,2183,2.543,2203,5.103,2258,2.61,2336,3.228,2371,5.938,2758,3.92,2970,3.982,3294,3.982,4374,2.543,4388,2.855,4389,4.47,4390,6.232,4391,6.232,4392,6.232,4393,3.982,4394,4.47,4395,4.47,4396,2.855,4397,2.855,4398,2.855,4399,2.855,4400,3.982,4401,2.855,4402,2.855,4403,2.855,4404,3.982,4405,2.855,4406,4.47,4407,2.855,4408,2.855,4409,3.982,4410,2.855,4411,4.47,4412,2.855,4413,4.47,4414,2.855,4415,2.855,4416,2.855,4417,4.47,4418,2.855,4419,4.47,4420,2.855,4421,4.47,4422,2.855,4423,2.855,4424,4.47,4425,2.855,4426,2.855,4427,2.543,4428,2.855,4429,2.855,4430,2.855,4431,2.855,4432,2.855,4433,2.855,4434,2.855,4435,2.855,4436,2.855,4437,2.855,4438,2.855,4439,2.855,4440,5.508,4441,2.855,4442,2.855,4443,2.855,4444,2.855,4445,2.855,4446,2.855,4447,2.855,4448,2.855,4449,2.855,4450,2.855,4451,2.855,4452,2.855,4453,4.47,4454,4.47,4455,4.47,4456,4.47,4457,4.47,4458,4.47]],["title/components/UploadSelectComponent.html",[0,0.202,302,1.294]],["body/components/UploadSelectComponent.html",[0,0.315,1,0.836,2,0.168,3,0.174,4,0.694,6,0.88,7,0.85,9,0.11,16,1.227,20,0.822,21,2.576,23,0.73,25,0.007,31,2.167,32,1.916,35,1.206,37,0.335,38,0.575,40,1.73,43,1.082,44,1.558,47,3.258,49,0.708,52,3.017,65,0.286,69,0.783,70,1.307,71,1.11,76,1.313,79,1.629,81,0.92,82,1.722,91,0.973,92,0.922,93,0.759,110,1.257,113,1.227,115,0.822,118,0.95,136,1.471,137,0.288,139,1.542,148,0.105,149,0.11,167,3.542,177,0.606,178,1.314,179,1.018,181,1.775,182,0.88,183,0.88,184,0.808,185,1.617,186,0.808,187,0.85,188,0.742,189,0.836,190,0.822,191,2.125,192,0.836,193,1.609,194,1.806,195,0.85,196,1.336,197,2.19,198,0.85,199,0.85,200,0.88,201,0.836,202,1.337,203,0.85,204,0.88,205,0.836,206,0.88,207,0.822,208,0.822,209,1.487,210,1.617,211,0.822,212,0.836,213,0.836,214,0.808,215,0.88,216,0.85,217,1.942,218,0.85,219,0.836,220,0.85,221,0.85,222,0.85,223,0.836,224,0.88,225,0.836,226,0.85,227,0.88,228,0.836,229,0.88,230,0.836,231,0.808,232,1.307,233,0.88,234,0.836,235,0.88,236,0.822,237,0.836,238,0.88,239,0.836,240,0.88,241,1.574,242,0.88,243,0.836,244,1.41,245,0.88,246,0.822,247,0.88,248,0.836,249,0.88,250,0.808,251,0.88,252,0.836,253,0.808,254,0.836,255,0.781,256,0.88,257,0.836,258,0.88,259,0.88,260,0.836,261,0.88,262,0.836,263,0.88,264,0.808,265,0.88,266,0.822,267,0.836,268,0.88,269,0.836,270,0.85,271,0.88,272,0.822,273,0.836,274,1.784,275,0.836,276,0.85,277,0.73,278,0.85,279,0.85,280,0.836,281,0.85,282,0.85,283,0.85,284,0.88,285,0.822,286,0.836,287,0.88,288,0.836,289,0.85,290,0.836,291,0.88,292,0.836,293,0.88,294,0.85,295,0.781,296,0.836,297,0.88,298,0.836,299,0.88,300,1.844,301,0.88,302,1.715,303,2.308,304,0.808,305,0.88,306,0.822,307,0.88,308,0.822,309,0.88,310,0.822,311,0.88,312,0.822,313,0.88,314,0.822,315,0.865,316,0.88,317,0.822,318,0.865,319,0.88,320,0.003,321,0.003,345,1.638,353,1.766,357,0.637,362,1.675,392,2.136,418,1.507,434,2.315,447,2.199,448,2.963,467,2.352,468,2.352,496,2.637,552,2.902,553,4.408,554,5.485,555,3.924,558,3.764,559,4.899,561,2.902,566,2.902,567,2.902,568,2.902,569,2.352,907,2.705,937,3.313,938,2.919,940,3.493,941,2.088,947,2.474,959,2.477,966,2.29,974,1.727,1029,4.107,1047,4.438,1060,2.705,1165,3.573,1595,2.236,1608,2.236,1645,4.052,1733,2.492,1734,2.492,1850,2.902,1851,8.377,1856,5.952,2203,2.667,2355,4.052,4393,4.408,4400,4.408,4404,4.408,4409,4.408,4427,2.902,4459,9.405,4460,6.682,4461,6.682,4462,6.682,4463,4.948,4464,4.948,4465,5.983,4466,5.33,4467,4.948,4468,3.258,4469,3.258,4470,3.258,4471,3.258,4472,3.258,4473,3.258,4474,3.258,4475,3.258,4476,3.258,4477,4.948,4478,3.258,4479,4.948,4480,3.258,4481,4.948,4482,3.258,4483,4.948,4484,3.258,4485,3.258,4486,5.983,4487,3.258,4488,3.258,4489,3.258,4490,3.258,4491,3.258,4492,4.948,4493,6.682,4494,4.948,4495,4.948,4496,4.948]],["title/modules/UtilityModule.html",[322,1.092,2580,3.461]],["body/modules/UtilityModule.html",[2,0.301,3,0.311,9,0.197,24,2.198,25,0.007,63,1.959,65,0.343,137,0.516,138,2.349,146,3.1,147,1.181,148,0.287,149,0.197,177,1.085,252,2.482,253,1.447,257,2.482,288,2.482,289,1.523,290,2.482,292,2.482,312,2.44,320,0.005,321,0.005,322,1.612,324,2.401,328,3.134,329,2.118,330,1.959,332,3.293,333,2.036,595,3.407,627,3.534,628,2.634,630,5.922,631,5.629,1162,7.305,1174,5.377,1885,6.367,1895,5.198,2580,6.844,2787,4.778,4015,5.198,4185,5.198,4207,5.198,4497,5.198,4498,5.198,4499,5.835,4500,5.198,4501,5.835,4502,5.835,4503,5.835,4504,5.835,4505,5.835]],["title/pipes/VisibleFieldsPipe.html",[1213,2.596,1884,3.857]],["body/pipes/VisibleFieldsPipe.html",[2,0.34,3,0.351,9,0.222,11,0.75,16,1.632,23,1.474,25,0.007,38,0.765,44,1.266,46,2.372,49,0.941,65,0.306,69,0.694,71,0.952,79,1.957,81,1.027,91,0.959,92,0.929,93,0.636,117,3.062,137,0.582,148,0.212,149,0.222,320,0.005,321,0.005,330,2.696,349,1.875,362,2.247,418,3.046,492,4.643,518,3.625,681,3.424,1055,5.265,1191,3.164,1213,4.46,1217,3.844,1223,5.798,1884,6.9,1890,6.876,1893,5.864,3848,6.142,4506,8.663,4507,6.584,4508,8.029,4509,8.029,4510,6.584,4511,8.029,4512,6.584,4513,6.584,4514,6.584,4515,6.584]],["title/interfaces/WithLoader.html",[337,1.436,922,2.756]],["body/interfaces/WithLoader.html",[0,0.341,2,0.374,3,0.386,9,0.244,11,0.825,25,0.007,37,0.745,38,0.988,60,1.191,65,0.256,69,0.626,148,0.233,241,2.193,320,0.006,321,0.006,337,2.652,427,3.423,496,4.308,526,5.575,922,4.646,2609,5.835,2645,5.931,4516,7.243,4517,7.243,4518,8.501]],["title/interfaces/WithNotifications.html",[337,1.436,923,3.171]],["body/interfaces/WithNotifications.html",[0,0.332,2,0.358,3,0.37,9,0.234,11,0.791,25,0.007,30,1.464,37,0.714,38,0.963,60,1.175,61,3.411,65,0.245,69,0.716,93,0.886,148,0.223,320,0.006,321,0.006,337,2.615,345,1.919,584,3.008,590,4.612,923,5.214,947,3.069,1045,5.016,1440,7.517,1629,5.016,2051,6.301,2056,7.383,3347,8.177,4519,6.94,4520,6.94]],["title/changelog.html",[1192,2.583,3194,2.929,4521,1.682]],["body/changelog.html",[14,3.638,25,0.006,89,1.933,139,2.388,320,0.006,321,0.006,349,2.183,1074,3.734,1211,4.326,2094,4.063,4521,3.021,4522,2.897,4523,4.639,4524,4.822,4525,5.027,4526,5.027,4527,4.822,4528,5.027]],["title/dependencies.html",[63,2.025,4522,1.613]],["body/dependencies.html",[13,4.425,14,3.868,25,0.007,63,2.266,137,0.596,138,2.717,139,2.103,214,1.673,255,1.617,320,0.005,321,0.005,349,1.922,504,3.122,595,3.94,597,3.474,628,3.046,633,6.235,634,6.011,646,4.425,1164,4.873,1165,4.873,1209,4.245,1210,4.873,1211,3.809,1843,5.885,1844,5.345,1992,5.525,2751,6.011,3691,4.084,4229,4.245,4523,4.084,4524,4.245,4525,4.425,4526,4.425,4527,4.245,4528,4.425,4529,8.15,4530,6.748,4531,6.011,4532,8.599,4533,6.011,4534,6.011,4535,5.525,4536,6.011,4537,6.011,4538,6.011,4539,6.011,4540,6.011,4541,6.011,4542,6.011,4543,6.748,4544,6.748,4545,6.748,4546,6.748,4547,6.748,4548,5.525,4549,6.748,4550,6.748,4551,6.748,4552,6.748,4553,6.748,4554,6.748,4555,6.748,4556,6.748,4557,6.748,4558,6.748]],["title/miscellaneous/functions.html",[531,2.791,4559,3.265]],["body/miscellaneous/functions.html",[25,0.006,37,0.752,70,1.429,91,1.318,92,0.971,93,0.874,320,0.006,321,0.006,345,1.582,427,2.941,444,2.761,531,3.38,622,7.414,624,6.507,632,6.507,752,6.955,1690,5.696,4056,6.507,4060,7.61,4061,7.61,4062,7.61,4070,6.507,4075,6.507,4077,6.507,4078,6.507,4559,5.589,4560,7.305,4561,9.055]],["title/index.html",[37,0.439,1192,2.583,3194,2.929]],["body/index.html",[0,0.375,2,0.281,3,0.29,5,2.587,9,0.184,12,4.752,13,3.575,14,3.996,15,4.147,25,0.006,39,2.952,60,1.198,61,2.243,63,1.83,66,3.567,67,3.669,75,2.304,76,1.597,89,1.375,92,0.585,93,0.526,118,0.684,139,1.699,149,0.184,232,1.066,244,1.284,255,1.306,320,0.005,321,0.005,330,1.83,340,3.543,349,1.553,409,3.936,425,2.535,494,2.347,502,1.978,504,3.896,511,3.076,513,2.587,515,4.463,571,1.83,572,4.313,587,3.382,594,2.979,646,3.575,657,4.16,738,3.299,773,4.313,781,3.299,803,2.806,834,2.979,873,3.575,909,2.806,943,4.916,956,3.575,967,2.587,1023,5.146,1042,2.587,1119,5.835,1192,3.299,1209,3.429,1211,3.076,1236,2.656,1261,6.894,1674,3.429,1679,5.482,1690,3.429,1704,3.429,1751,3.777,1910,2.89,1968,3.742,2051,3.742,2259,6.501,2392,5.146,2597,3.742,3013,4.17,3114,4.17,3194,3.742,3198,3.742,3214,4.17,3216,3.575,3679,3.567,3691,5.424,3994,5.146,4069,7.154,4104,4.635,4131,4.17,4189,5.452,4229,3.429,4238,5.452,4521,2.148,4522,3.5,4523,3.299,4524,3.429,4525,3.575,4526,3.575,4527,3.429,4528,3.575,4548,6.501,4562,3.974,4563,4.855,4564,4.855,4565,6.348,4566,4.855,4567,4.855,4568,6.348,4569,4.855,4570,4.17,4571,4.855,4572,6.441,4573,6.348,4574,4.855,4575,4.855,4576,4.855,4577,4.17,4578,5.835,4579,4.855,4580,7.072,4581,4.855,4582,6.894,4583,4.855,4584,4.855,4585,4.855,4586,2.979,4587,4.463,4588,4.855,4589,4.463,4590,4.463,4591,4.855,4592,4.855,4593,5.835,4594,4.855,4595,3.076,4596,3.076,4597,4.855,4598,6.074,4599,4.463,4600,6.267,4601,3.936,4602,4.463,4603,4.855,4604,4.855,4605,4.855,4606,4.855,4607,4.463,4608,4.463,4609,4.463,4610,6.348,4611,6.348,4612,4.855,4613,4.855,4614,4.855,4615,4.17,4616,4.855,4617,4.855]],["title/modules.html",[322,1.465]],["body/modules.html",[25,0.005,320,0.005,321,0.005,322,1.461,323,4.873,615,4.873,621,3.94,775,4.425,1057,6.889,1147,4.632,1153,4.873,1154,4.632,1155,4.425,1844,6.582,1877,4.632,1885,4.632,1886,4.425,1887,4.084,1888,4.425,1889,4.425,2574,4.632,2580,4.632,2682,4.873,2911,4.873,3263,4.873,3979,4.873,4308,4.873,4466,8.94,4618,10.036]],["title/overview.html",[4619,3.819]],["body/overview.html",[0,0.094,1,1.779,20,1.219,24,2.047,25,0.007,26,3.712,27,3.712,28,3.712,29,4.338,30,1.357,63,0.788,115,1.749,146,0.887,148,0.076,149,0.079,164,0.693,177,0.436,179,0.483,184,1.719,186,1.199,187,1.81,189,1.779,192,1.779,195,1.81,198,1.81,199,1.81,201,1.779,203,1.81,205,1.779,207,1.219,208,1.219,211,1.219,212,1.779,213,1.779,216,1.81,218,1.81,219,1.779,220,1.81,221,1.81,222,1.81,223,1.779,225,1.779,226,1.81,228,1.779,230,1.779,234,1.779,236,1.749,237,1.779,239,1.779,241,1.634,243,1.779,246,1.749,248,1.779,250,1.719,252,1.779,254,2.126,257,1.779,260,1.779,262,1.779,264,1.719,266,1.749,267,1.779,269,1.779,272,1.749,273,1.779,275,1.779,276,1.81,278,1.81,279,1.81,280,1.779,281,1.81,282,1.81,283,1.81,285,2.09,286,1.779,288,1.779,290,1.779,292,1.779,294,1.81,296,1.779,298,1.779,300,1.779,302,1.779,304,1.719,306,1.749,308,1.749,310,1.749,312,1.749,314,1.749,317,1.749,320,0.003,321,0.003,322,0.827,323,4.43,324,0.966,325,2.09,326,2.09,327,2.09,328,1.608,329,0.852,330,0.788,337,0.668,413,1.989,436,0.592,488,2.642,541,3.17,554,3.041,577,1.921,591,2.355,615,6.438,616,2.09,617,2.09,618,2.09,619,2.09,620,2.09,621,5.538,622,3.958,623,2.926,775,5.679,776,2.09,777,2.09,778,2.09,779,5.305,840,1.476,933,2.926,935,2.822,938,1.865,1069,2.926,1076,2.822,1147,6.672,1148,2.09,1149,2.09,1150,2.09,1151,2.09,1152,2.09,1153,6.949,1154,6.567,1155,5.504,1156,3.698,1157,2.926,1213,1.208,1215,5.008,1545,2.926,1695,1.611,1836,2.09,1837,2.09,1839,2.09,1840,2.09,1877,6.567,1878,2.09,1879,2.09,1880,2.09,1881,2.09,1882,2.09,1883,5.305,1884,5.305,1885,6.248,1886,5.81,1887,5.139,1888,5.433,1889,5.433,1890,3.491,1966,3.318,2087,3.491,2114,2.09,2115,2.09,2116,2.09,2117,2.09,2315,2.09,2316,2.09,2317,2.09,2401,2.09,2574,6.497,2575,2.09,2576,2.09,2577,2.09,2578,2.09,2579,2.09,2580,6.3,2640,2.09,2641,2.09,2642,2.09,2643,2.09,2682,6.061,2683,2.09,2684,2.09,2686,2.09,2687,2.09,2911,4.43,2912,2.09,2913,2.09,2914,2.09,2915,2.09,3263,6.306,3264,2.09,3265,2.09,3267,2.09,3268,2.09,3505,2.09,3506,2.09,3508,2.09,3509,2.09,3825,2.09,3826,2.09,3828,2.09,3829,2.09,3891,2.09,3892,2.09,3979,6.253,3980,2.09,3981,2.09,3982,2.09,3984,2.09,4098,2.09,4099,2.09,4100,2.09,4101,2.09,4102,5.305,4308,4.43,4309,2.09,4310,2.09,4311,2.09,4380,2.09,4382,2.09,4497,2.09,4498,2.09,4500,2.09,4619,1.324,4620,1.37,4621,2.346,4622,2.346,4623,2.346]],["title/miscellaneous/typealiases.html",[4559,3.265,4624,6.033]],["body/miscellaneous/typealiases.html",[25,0.006,37,0.795,69,0.667,320,0.006,321,0.006,339,6.323,344,7.086,531,3.573,4559,5.908,4625,7.723,4626,7.723]],["title/additional-documentation/angular-7-upgrade-guide.html",[15,1.387,600,0.688,840,1.838,2806,0.962,4570,2.235,4627,2.922]],["body/additional-documentation/angular-7-upgrade-guide.html",[0,0.228,2,0.293,9,0.247,15,4.632,25,0.007,38,0.661,39,1.873,40,1.094,60,1.16,65,0.326,66,3.666,67,2.928,75,1.839,76,1.039,89,2.286,93,0.707,123,3.947,147,1.151,164,1.678,320,0.005,321,0.005,322,1.754,342,4.003,353,1.678,380,4.276,456,3.729,494,3.684,571,1.909,583,4.829,584,3.347,594,3.108,657,4.276,700,4.134,738,3.442,781,3.442,802,3.32,824,3.32,840,5.382,850,4.536,941,2.827,1050,3.32,1066,4.73,1098,3.442,1115,4.276,1173,5.065,1186,4.106,1211,3.209,1213,2.928,1641,5.289,1679,3.209,1702,4.35,1910,3.014,2110,5.17,2126,4.35,2226,3.442,2227,3.442,2336,4.106,2612,3.577,2707,5.065,2837,4.35,2911,4.106,3024,3.729,3194,3.903,3233,4.35,3593,5.065,3679,4.056,3691,4.433,4189,5.603,4244,6.524,4522,2.768,4523,3.442,4527,3.577,4532,5.065,4570,6.199,4577,4.35,4587,3.014,4599,4.656,4601,4.106,4607,4.656,4615,4.35,4628,5.687,4629,5.687,4630,5.687,4631,5.687,4632,5.687,4633,5.687,4634,5.687,4635,5.687,4636,5.687,4637,5.687,4638,5.687,4639,4.656,4640,7.324,4641,5.687,4642,5.687,4643,5.687,4644,5.687,4645,5.687,4646,5.687,4647,5.687,4648,5.687,4649,5.687,4650,5.687,4651,5.065,4652,5.687,4653,5.687,4654,5.065,4655,7.324,4656,8.556,4657,7.622,4658,7.324,4659,5.687,4660,5.687,4661,5.687,4662,5.687,4663,5.687,4664,8.102,4665,5.687,4666,8.556,4667,8.102,4668,8.102,4669,7.324,4670,5.687,4671,5.687,4672,4.656,4673,5.687,4674,5.687,4675,7.324,4676,5.687,4677,5.687,4678,5.687,4679,5.687,4680,5.687,4681,5.687,4682,5.687,4683,5.687,4684,5.687,4685,5.065,4686,5.065,4687,5.687]],["title/additional-documentation/project-setup-tutorial.html",[600,0.769,2806,1.076,4104,1.906,4562,1.634,4688,2.358]],["body/additional-documentation/project-setup-tutorial.html",[0,0.31,2,0.267,5,4.077,9,0.175,15,2.457,24,2.033,25,0.007,30,1.216,32,1.652,39,1.705,49,0.985,60,1.099,61,2.13,63,1.738,65,0.336,67,2.665,76,1.57,79,1.679,90,3.738,92,0.555,93,0.5,107,2.665,108,1.956,118,0.65,137,0.457,138,2.084,146,1.956,147,1.394,148,0.249,149,0.175,164,1.528,214,1.283,320,0.005,321,0.005,322,1.121,324,2.13,333,1.806,340,2.898,362,1.449,409,4.973,489,3.764,498,1.997,504,2.395,511,3.887,515,2.744,571,3.143,585,3.022,590,3.187,595,3.022,626,2.395,628,2.337,647,6.596,650,5.269,652,5.639,653,5.958,655,5.589,656,5.639,657,4.519,676,3.553,700,2.921,772,6.894,773,4.684,824,3.022,825,2.665,839,3.96,840,3.256,873,3.395,937,1.879,943,4.021,960,3.022,967,2.457,1008,3.022,1042,3.269,1047,2.921,1050,3.022,1098,3.133,1113,5.639,1147,5.663,1159,4.611,1191,2.04,1192,4.168,1257,2.084,1657,3.395,1678,3.133,1679,4.656,1703,4.611,1769,3.738,1842,3.96,1843,4.973,1844,4.517,1910,3.651,1986,4.238,2048,4.238,2110,4.021,2227,3.133,2399,4.238,2531,3.738,2610,5.269,2612,4.332,3024,3.395,3085,4.611,3091,3.395,3167,5.269,3190,4.517,3216,3.395,3452,4.611,3679,3.874,3691,3.133,4104,3.022,4107,5.639,4131,3.96,4522,2.925,4523,4.684,4524,3.256,4531,4.611,4533,6.135,4562,4.584,4572,5.269,4582,6.755,4586,4.509,4587,3.651,4589,4.238,4598,5.269,4600,5.663,4601,3.738,4602,4.238,4608,6.337,4609,6.337,4615,3.96,4639,4.238,4657,4.611,4688,5.589,4689,5.176,4690,4.611,4691,5.176,4692,6.887,4693,6.887,4694,9.44,4695,5.176,4696,5.176,4697,5.176,4698,5.176,4699,5.176,4700,5.176,4701,4.611,4702,5.176,4703,5.176,4704,5.176,4705,5.176,4706,5.176,4707,5.176,4708,5.176,4709,5.176,4710,5.176,4711,6.887,4712,5.176,4713,5.176,4714,5.176,4715,5.176,4716,5.176,4717,5.176,4718,5.176,4719,4.021,4720,5.176,4721,6.887,4722,5.176,4723,3.96,4724,5.176,4725,5.176,4726,5.176,4727,5.176,4728,5.176,4729,5.176,4730,5.176,4731,5.176,4732,5.176]],["title/additional-documentation/project-setup-tutorial/routes.html",[489,2.332,600,1.005,2806,1.406]],["body/additional-documentation/project-setup-tutorial/routes.html",[0,0.379,4,1.523,25,0.007,65,0.253,75,2.728,76,1.542,147,1.447,164,2.111,320,0.006,321,0.006,342,4.612,452,2.819,489,5.291,515,4.758,571,2.401,824,4.176,825,3.682,834,3.909,924,3.909,1045,4.329,1679,4.037,2110,4.176,2227,4.329,2258,4.176,3091,5.534,3922,6.371,4600,4.909,4688,6.093,4733,7.152,4734,7.152,4735,7.152,4736,7.152,4737,7.152,4738,7.152,4739,7.516,4740,7.152,4741,7.152,4742,7.152]],["title/additional-documentation/project-setup-tutorial/authorization.html",[600,1.005,2806,1.406,4723,3.265]],["body/additional-documentation/project-setup-tutorial/authorization.html",[0,0.292,4,1.816,25,0.006,60,0.932,66,3.646,67,3.75,75,2.758,76,1.331,79,1.776,164,2.15,250,1.806,253,2.243,320,0.006,321,0.006,418,3.371,452,2.871,489,5.097,571,2.863,588,6.159,824,4.253,825,3.75,927,5.593,1042,3.457,1257,2.933,1679,4.111,1910,3.861,2110,4.253,2258,4.253,2760,5.964,4104,4.253,4562,3.646,4688,6.531,4723,6.525,4743,6.489,4744,6.489,4745,6.489,4746,6.489]],["title/additional-documentation/project-setup-tutorial/localization.html",[600,1.005,2460,2.583,2806,1.406]],["body/additional-documentation/project-setup-tutorial/localization.html",[0,0.336,3,0.378,4,1.787,25,0.006,35,1.729,60,1.075,65,0.25,92,0.761,118,0.891,144,4.462,148,0.228,149,0.239,320,0.006,321,0.006,355,4.003,380,4.141,460,4.652,587,3.366,601,2.524,681,2.627,802,4.141,832,4.869,937,3.534,938,3.24,1042,3.366,1213,3.652,1403,5.427,1729,4.293,1828,4.869,1910,3.76,2047,3.456,2110,4.141,2460,5.414,2612,4.462,2627,5.808,3190,4.652,3392,5.427,4104,4.141,4105,6.843,4106,5.808,4107,5.808,4108,6.318,4109,6.318,4110,6.318,4111,6.318,4112,6.318,4113,6.318,4114,7.479,4115,6.875,4116,5.427]],["title/additional-documentation/project-setup-tutorial/custom-fields-config.html",[46,0.823,353,0.964,600,0.769,941,1.139,2806,1.076]],["body/additional-documentation/project-setup-tutorial/custom-fields-config.html",[0,0.242,8,2.193,25,0.007,30,1.067,32,1.162,38,0.885,43,1.591,46,2.323,47,3.767,48,1.752,60,0.773,61,2.486,69,0.522,76,1.104,79,1.856,81,1.178,92,0.894,108,2.877,117,2.869,118,0.956,148,0.194,149,0.204,196,1.472,209,1.142,320,0.005,321,0.005,348,3.202,353,2.46,354,3.796,362,1.691,401,4.296,434,1.848,444,2.283,498,2.937,502,2.763,508,3.202,531,2.795,573,5.466,601,2.149,872,4.788,896,4.291,924,3.302,934,3.962,935,4.444,941,2.108,967,3.613,1005,2.867,1045,3.656,1050,3.527,1052,3.11,1058,4.866,1060,3.302,1095,3.962,1191,2.381,1209,3.8,1217,3.527,1243,4.622,1247,5.381,1257,2.432,1263,4.444,1633,4.555,1657,5.466,1679,3.41,1690,3.8,1695,4.147,1698,4.622,1765,3.8,1872,3.656,2307,4.363,2456,5.381,2460,3.656,2947,6.233,3068,3.656,3091,3.962,3120,5.381,3233,4.622,3428,4.622,4739,5.381,4747,6.041,4748,4.947,4749,6.041,4750,6.041,4751,6.041,4752,6.041,4753,6.041,4754,5.381,4755,4.947,4756,6.041,4757,6.041,4758,7.612,4759,6.041,4760,6.041,4761,6.041]],["title/additional-documentation/project-setup-tutorial/custom-entry-list.html",[196,0.577,209,0.617,600,0.769,941,1.139,2806,1.076]],["body/additional-documentation/project-setup-tutorial/custom-entry-list.html",[0,0.333,4,1.005,19,1.784,25,0.007,31,1.022,32,1.244,38,1.069,39,1.555,40,0.908,43,1.452,46,2.343,47,3.584,48,2.552,49,1.19,60,1.147,69,0.686,71,0.767,75,1.526,79,1.8,80,1.093,81,1.147,89,2.004,108,2.445,117,2.301,118,1.08,123,4.055,126,1.526,128,2.362,148,0.152,149,0.159,164,1.393,196,1.555,209,1.502,266,1.632,320,0.005,321,0.004,330,1.584,340,1.986,348,2.502,353,2.742,354,1.986,362,1.321,401,3.652,407,2.969,427,2.973,434,2.694,452,2.55,492,4.855,496,2.08,498,1.821,502,2.348,515,2.502,518,2.131,526,4.243,547,2.755,558,4.07,573,4.243,583,2.664,584,1.713,586,2.969,587,3.77,590,2.184,685,1.821,827,3.095,840,4.07,868,2.299,872,2.969,904,4.204,932,4.07,935,2.755,941,3.268,948,4.035,956,3.095,960,2.755,966,2.994,967,3.071,1038,2.856,1045,2.856,1051,3.864,1054,3.239,1055,3.095,1057,4.441,1058,2.755,1061,3.916,1063,3.778,1066,2.755,1074,2.299,1098,2.856,1133,2.755,1191,3.584,1217,4.859,1243,6.577,1257,2.973,1263,3.778,1409,2.43,1573,3.611,1627,4.441,1630,4.95,1641,4.672,1642,3.408,1657,3.095,1674,2.969,1678,3.916,1684,3.095,1690,4.644,1698,3.611,1704,2.969,1828,3.239,1872,2.856,2047,3.597,2110,2.755,2206,3.864,2227,3.916,2260,6.01,2307,3.408,2351,4.07,2660,4.204,3014,5.649,3068,2.856,3070,3.611,3091,5.458,3190,3.095,3214,3.611,3216,3.095,3321,3.864,3428,4.95,3430,4.035,3848,3.611,4240,3.611,4748,7.039,4754,7.658,4755,7.34,4762,6.47,4763,4.719,4764,4.719,4765,4.719,4766,5.763,4767,4.719,4768,6.47,4769,6.47,4770,4.719,4771,4.719,4772,4.719,4773,4.719,4774,4.719,4775,4.719,4776,4.719,4777,7.383,4778,4.719,4779,4.719,4780,4.719,4781,4.95,4782,6.47,4783,4.719,4784,4.719,4785,4.719,4786,4.719,4787,4.719,4788,4.719,4789,4.719,4790,4.719]],["title/additional-documentation/project-setup-tutorial/custom-entry-forms.html",[117,1.017,209,0.617,600,0.769,941,1.139,2806,1.076]],["body/additional-documentation/project-setup-tutorial/custom-entry-forms.html",[0,0.374,4,1.674,12,3.278,15,1.92,16,1.685,17,4.945,19,2.806,21,1.742,24,2.005,25,0.007,26,3.278,27,2.284,28,3.278,29,2.284,30,0.715,31,1.471,32,1.794,33,3.809,35,1.656,38,0.914,39,1.913,40,1.854,41,4.274,43,1.397,45,3.31,46,2.32,48,1.173,49,0.579,54,2.545,57,3.515,58,2.922,60,1.124,61,1.665,63,1.358,65,0.304,66,4.096,67,4.047,69,0.587,75,2.726,76,1.061,78,2.777,80,0.937,86,2.545,89,1.983,92,0.434,93,0.391,94,2.545,104,2.545,107,2.083,108,2.195,113,1.44,115,2.175,117,2.953,118,0.932,119,2.211,126,1.308,127,3.391,137,0.6,138,2.338,139,2.117,144,2.545,145,4.755,146,1.529,148,0.219,149,0.229,162,3.809,164,1.194,173,3.653,209,1.547,214,1.685,295,0.97,320,0.004,321,0.004,322,0.876,330,1.358,332,3.834,333,1.412,341,1.971,343,2.39,348,2.145,353,2.663,354,3.309,380,2.362,399,3.095,407,2.545,410,4.443,424,2.449,427,1.629,434,2.079,444,1.529,446,2.211,452,2.677,460,3.809,496,2.56,498,1.561,502,2.466,511,3.278,515,3.936,571,2.747,573,3.809,584,2.466,586,3.653,587,2.756,590,2.687,599,3.986,657,3.967,738,2.449,803,2.083,816,2.025,824,2.362,825,2.083,834,2.211,850,3.079,868,1.971,872,2.545,896,2.99,907,2.211,908,2.653,918,3.601,920,3.095,934,2.653,935,2.362,941,3.332,948,3.174,1008,4.335,1037,3.095,1038,4.112,1041,2.777,1045,4.112,1046,4.443,1047,3.278,1052,2.99,1057,2.777,1058,3.967,1066,4.59,1099,3.604,1112,4.194,1170,2.449,1219,3.095,1250,3.936,1257,1.629,1390,2.777,1496,3.604,1565,2.777,1633,2.211,1642,2.922,1663,2.653,1671,3.986,1695,2.777,1698,4.443,1699,5.173,1812,3.095,1872,2.449,1875,5.68,1920,4.59,1932,4.755,1999,3.986,2047,2.829,2081,2.449,2164,3.095,2227,5.102,2260,4.194,2266,3.313,2300,3.604,2307,4.194,2335,3.604,2460,2.449,2531,4.194,2594,3.095,2765,3.313,2821,2.922,3014,6.261,3024,2.653,3039,3.313,3068,2.449,3070,3.095,3091,2.653,3098,3.313,3197,3.604,3198,2.777,3232,4.443,3233,3.095,3274,3.095,3404,3.604,3430,3.713,3994,2.922,4115,3.313,4238,3.095,4240,4.443,4600,2.777,4601,2.922,4686,3.604,4690,3.604,4719,2.362,4748,3.313,4755,4.755,4791,4.046,4792,4.046,4793,4.046,4794,4.046,4795,4.046,4796,4.046,4797,5.808,4798,4.046,4799,4.046,4800,4.046,4801,5.808,4802,4.046,4803,4.046,4804,4.046,4805,4.046,4806,5.808,4807,4.046,4808,4.046,4809,4.046,4810,4.046,4811,4.046,4812,4.046,4813,8.183,4814,4.046,4815,4.046,4816,4.046,4817,4.046,4818,5.808,4819,4.046,4820,4.046,4821,4.046,4822,4.046,4823,4.046,4824,4.046,4825,4.046,4826,4.046,4827,4.046,4828,4.046,4829,4.046,4830,4.046,4831,4.046,4832,4.046,4833,4.046,4834,4.046,4835,4.046,4836,4.046,4837,4.046,4838,4.046]],["title/additional-documentation/readme.html",[425,1.518,600,1.005,2806,1.406]],["body/additional-documentation/readme.html",[0,0.375,2,0.281,3,0.29,5,2.587,9,0.184,12,4.752,13,3.575,14,3.996,15,4.147,25,0.006,39,2.952,60,1.198,61,2.243,63,1.83,66,3.567,67,3.669,75,2.304,76,1.597,89,1.375,92,0.585,93,0.526,118,0.684,139,1.699,149,0.184,232,1.066,244,1.284,255,1.306,320,0.005,321,0.005,330,1.83,340,3.543,349,1.553,409,3.936,425,2.535,494,2.347,502,1.978,504,3.896,511,3.076,513,2.587,515,4.463,571,1.83,572,4.313,587,3.382,594,2.979,646,3.575,657,4.16,738,3.299,773,4.313,781,3.299,803,2.806,834,2.979,873,3.575,909,2.806,943,4.916,956,3.575,967,2.587,1023,5.146,1042,2.587,1119,5.835,1192,3.299,1209,3.429,1211,3.076,1236,2.656,1261,6.894,1674,3.429,1679,5.482,1690,3.429,1704,3.429,1751,3.777,1910,2.89,1968,3.742,2051,3.742,2259,6.501,2392,5.146,2597,3.742,3013,4.17,3114,4.17,3194,3.742,3198,3.742,3214,4.17,3216,3.575,3679,3.567,3691,5.424,3994,5.146,4069,7.154,4104,4.635,4131,4.17,4189,5.452,4229,3.429,4238,5.452,4521,2.148,4522,3.5,4523,3.299,4524,3.429,4525,3.575,4526,3.575,4527,3.429,4528,3.575,4548,6.501,4562,3.974,4563,4.855,4564,4.855,4565,6.348,4566,4.855,4567,4.855,4568,6.348,4569,4.855,4570,4.17,4571,4.855,4572,6.441,4573,6.348,4574,4.855,4575,4.855,4576,4.855,4577,4.17,4578,5.835,4579,4.855,4580,7.072,4581,4.855,4582,6.894,4583,4.855,4584,4.855,4585,4.855,4586,2.979,4587,4.463,4588,4.855,4589,4.463,4590,4.463,4591,4.855,4592,4.855,4593,5.835,4594,4.855,4595,3.076,4596,3.076,4597,4.855,4598,6.074,4599,4.463,4600,6.267,4601,3.936,4602,4.463,4603,4.855,4604,4.855,4605,4.855,4606,4.855,4607,4.463,4608,4.463,4609,4.463,4610,6.348,4611,6.348,4612,4.855,4613,4.855,4614,4.855,4615,4.17,4616,4.855,4617,4.855]],["title/additional-documentation/readme/data-readme.html",[340,1.557,425,1.316,600,0.872,2806,1.219]],["body/additional-documentation/readme/data-readme.html",[0,0.34,7,1.883,19,2.726,25,0.007,39,2.376,60,0.923,65,0.299,75,2.332,148,0.232,149,0.304,164,2.129,320,0.006,321,0.006,322,1.95,333,2.516,498,2.783,504,3.337,571,2.422,600,1.699,773,4.365,908,4.73,1147,5.821,1645,5.906,1674,4.537,2397,6.425,3332,5.208,4521,2.842,4522,3.205,4523,5.452,4586,4.923,4587,3.823,4619,4.786,4719,4.211,4781,5.518,4839,5.906,4840,5.906,4841,6.943,4842,7.213,4843,4.73]],["title/additional-documentation/readme/ui-readme.html",[425,1.316,600,0.872,943,2.16,2806,1.219]],["body/additional-documentation/readme/ui-readme.html",[0,0.291,7,1.896,15,3.447,25,0.007,39,2.393,65,0.301,139,2.815,148,0.234,149,0.287,164,2.144,320,0.006,321,0.006,322,1.844,333,2.534,349,2.069,571,2.439,600,1.711,621,4.971,908,4.764,2258,4.241,3094,6.47,3274,5.557,3332,5.245,4367,5.947,4521,2.863,4522,3.414,4586,4.937,4587,3.85,4619,4.806,4719,4.241,4781,5.557,4839,5.947,4840,5.947,4841,6.972,4843,4.764,4844,7.264]],["title/additional-documentation/readme/core-readme.html",[425,1.316,504,1.712,600,0.872,2806,1.219]],["body/additional-documentation/readme/core-readme.html",[15,3.537,25,0.006,39,2.848,48,2.161,76,1.362,147,1.508,149,0.292,320,0.006,321,0.006,349,2.462,504,3.449,738,4.511,873,4.888,908,4.888,1828,5.116,2258,4.352,2332,6.639,2334,5.702,3274,5.702,4521,2.937,4522,2.817,4586,4.074,4587,3.951,4619,4.207,4781,5.702,4839,6.103,4840,6.103,4841,6.103,4845,7.454,4846,7.454,4847,7.454]],["title/additional-documentation/readme/style-readme.html",[5,1.756,425,1.316,600,0.872,2806,1.219]],["body/additional-documentation/readme/style-readme.html",[5,4.595,25,0.006,39,2.356,49,1.207,60,1.149,65,0.327,164,2.111,320,0.006,321,0.006,353,2.49,425,2.545,571,3.013,583,4.037,752,5.165,825,3.682,941,2.495,1052,3.682,1910,3.791,2096,5.472,2260,6.093,3013,7.093,3691,4.329,4104,4.176,4521,2.819,4522,3.392,4524,5.308,4586,5.067,4587,3.791,4619,4.037,4651,8.258,4701,6.371,4848,7.152,4849,8.438,4850,7.152,4851,7.152,4852,7.152,4853,7.152]],["title/additional-documentation/readme/calendar-readme.html",[425,1.316,600,0.872,781,2.239,2806,1.219]],["body/additional-documentation/readme/calendar-readme.html",[0,0.296,24,2.181,25,0.007,60,0.946,65,0.304,148,0.238,149,0.249,164,2.181,320,0.006,321,0.006,322,1.862,333,2.578,571,2.481,600,1.741,775,5.64,781,4.472,802,4.314,825,3.804,953,4.314,1211,5.135,1910,3.917,4521,2.912,4522,3.25,4586,4.972,4587,3.917,4619,4.854,4719,4.314,4843,4.846]],["title/additional-documentation/readme/location-readme.html",[244,0.872,425,1.316,600,0.872,2806,1.219]],["body/additional-documentation/readme/location-readme.html",[12,4.094,15,3.442,25,0.007,40,1.636,46,1.83,60,0.928,65,0.3,117,2.26,118,0.911,148,0.234,149,0.245,164,2.141,244,1.709,246,1.83,320,0.006,321,0.006,322,1.842,333,2.531,571,2.435,600,1.709,601,2.581,825,3.734,909,3.734,1157,4.39,1682,6.461,1754,4.979,1968,4.979,2682,6.144,4521,2.858,4522,3.215,4526,5.921,4586,4.935,4587,3.845,4619,4.802,4719,4.235,4843,4.757,4854,7.253]],["title/additional-documentation/readme/ace-readme.html",[13,2.426,425,1.316,600,0.872,2806,1.219]],["body/additional-documentation/readme/ace-readme.html",[0,0.287,12,4.048,13,5.893,14,3.404,15,3.404,25,0.006,60,1.082,65,0.339,140,6.389,148,0.231,149,0.242,164,2.117,320,0.006,321,0.006,322,1.83,323,6.103,333,2.502,571,3.017,600,1.69,825,3.692,1066,4.188,2096,5.487,2126,5.487,2260,5.179,3024,4.704,3691,4.341,4240,5.487,4521,2.827,4522,3.194,4525,5.893,4586,4.912,4587,3.802,4619,4.77,4719,4.188,4843,4.704,4855,8.452,4856,7.172,4857,7.172,4858,7.172]],["title/additional-documentation/readme/medium-editor-readme.html",[14,1.549,255,0.782,425,1.162,600,0.769,2806,1.076]],["body/additional-documentation/readme/medium-editor-readme.html",[12,4.158,14,4.442,15,3.497,25,0.007,60,0.943,65,0.303,148,0.237,149,0.249,164,2.175,179,1.516,255,1.766,320,0.006,321,0.006,322,1.859,333,2.571,571,2.474,600,1.736,825,3.793,4521,2.904,4522,3.245,4527,5.716,4586,4.967,4587,3.906,4619,4.846,4654,7.648,4719,4.302,4843,4.832]],["title/additional-documentation/readme/tinymce-readme.html",[425,1.316,600,0.872,2806,1.219,4229,2.327]],["body/additional-documentation/readme/tinymce-readme.html",[0,0.293,5,4.055,9,0.246,12,4.123,14,3.467,15,3.467,25,0.007,60,0.935,65,0.302,148,0.235,149,0.246,164,2.156,320,0.006,321,0.006,322,1.85,333,2.549,571,2.868,600,1.721,825,3.761,3024,4.791,4229,4.595,4308,6.169,4521,2.879,4522,3.229,4528,5.938,4586,4.949,4587,3.872,4619,4.822,4672,5.981,4719,4.265,4843,4.791,4859,7.305,4860,7.305]],["title/additional-documentation/changelog.html",[600,1.005,2806,1.406,4521,1.682]],["body/additional-documentation/changelog.html",[14,3.638,25,0.006,89,1.933,139,2.388,320,0.006,321,0.006,349,2.183,1074,3.734,1211,4.326,2094,4.063,4521,3.021,4522,2.897,4523,4.639,4524,4.822,4525,5.027,4526,5.027,4527,4.822,4528,5.027]],["title/additional-documentation/changelog/data-changelog.html",[340,1.557,600,0.872,2806,1.219,4521,1.458]],["body/additional-documentation/changelog/data-changelog.html",[0,0.275,9,0.232,14,2.449,25,0.006,32,0.993,37,0.531,43,0.836,46,1.302,47,3.328,49,0.738,60,0.88,65,0.182,69,0.668,71,0.612,75,2.222,76,0.943,79,1.258,81,0.66,89,2.079,99,3.948,117,2.142,118,0.648,148,0.166,190,1.302,193,2.017,196,1.516,209,1.769,232,1.79,274,1.702,303,1.258,320,0.005,321,0.005,342,2.821,353,2.533,411,2.124,427,2.078,447,1.579,452,2.034,494,2.222,498,1.991,502,1.873,513,2.449,515,2.736,518,2.33,519,2.388,547,4.013,570,2.388,571,1.733,572,3.123,581,2.449,584,1.873,594,2.821,600,1.216,626,2.388,636,3.948,653,4.963,685,1.991,803,2.657,816,3.44,827,3.384,834,2.821,850,2.736,935,3.013,940,3.013,941,2.398,966,3.813,1008,3.013,1046,3.948,1047,2.913,1052,2.657,1060,2.821,1061,3.123,1112,3.727,1142,3.013,1170,3.123,1236,2.514,1238,3.727,1365,3.948,1467,4.225,1472,4.597,1546,5.404,1627,3.542,1628,3.727,1751,2.736,1753,3.727,1803,3.727,1854,3.727,1860,4.225,1872,3.123,2047,2.514,2094,2.736,2224,4.963,2226,4.988,2227,4.16,2258,4.013,2451,3.948,2452,4.225,2828,3.948,3012,3.948,3232,3.948,3326,5.011,3430,5.114,3547,4.597,3679,4.684,3859,5.628,3901,4.597,3927,6.122,4367,4.225,4522,3.537,4523,5.664,4537,4.597,4562,2.583,4595,2.913,4596,4.362,4620,4.512,4766,4.597,4861,3.123,4862,3.123,4863,5.161,4864,5.784,4865,5.784,4866,5.194,4867,5.664,4868,5.161,4869,5.161,4870,5.161,4871,6.373,4872,4.597,4873,4.597,4874,5.161,4875,4.597,4876,5.161,4877,5.161,4878,5.161,4879,5.161,4880,5.161,4881,5.161,4882,5.161,4883,5.161,4884,4.597,4885,5.161,4886,4.597,4887,5.161,4888,5.161,4889,5.161,4890,5.161,4891,5.161,4892,5.161,4893,4.597,4894,4.597,4895,4.597,4896,5.161,4897,5.161,4898,5.161,4899,5.161,4900,5.161,4901,4.597,4902,4.597,4903,5.161,4904,5.161,4905,4.225,4906,5.161,4907,5.161,4908,4.597,4909,4.597,4910,5.161,4911,5.161,4912,5.161,4913,4.597,4914,5.161,4915,5.161,4916,5.161,4917,5.161,4918,5.161,4919,5.161,4920,5.161,4921,5.161,4922,4.597,4923,4.597,4924,4.225,4925,4.597,4926,4.597,4927,5.161,4928,5.161,4929,4.597]],["title/additional-documentation/changelog/ui-changelog.html",[600,0.872,943,2.16,2806,1.219,4521,1.458]],["body/additional-documentation/changelog/ui-changelog.html",[0,0.23,9,0.194,25,0.006,32,1.106,40,1.106,44,1.106,45,3.594,47,3.176,50,3.048,65,0.26,66,2.878,69,0.637,75,1.859,76,1.051,89,2.167,92,0.617,99,5.644,118,0.722,139,2.881,148,0.262,193,2.036,196,1.303,209,1.395,214,1.426,232,1.738,320,0.005,321,0.005,353,1.697,419,4.152,436,1.45,447,1.759,452,2.266,477,3.617,502,2.087,570,2.661,571,1.931,584,3.118,816,2.878,834,3.143,943,3.357,966,3.769,1060,3.143,1086,3.48,1142,3.357,1170,4.465,1236,2.801,1257,2.315,1447,4.399,1546,5.635,1627,3.947,1628,4.152,1751,3.048,1803,4.152,1814,3.357,1854,4.152,1860,4.708,2094,3.048,2226,5.503,2227,4.465,2451,4.399,2452,4.708,2828,4.399,3012,4.399,3232,4.399,3326,5.017,3332,4.152,3430,5.053,3679,4.628,4105,4.399,4116,4.399,4171,4.399,4522,3.539,4542,5.122,4562,2.878,4595,3.245,4596,4.163,4620,4.755,4685,5.122,4861,3.48,4862,3.48,4864,5.842,4865,5.842,4866,5.378,4867,5.596,4871,6.565,4872,5.122,4873,5.122,4875,5.122,4886,5.122,4893,5.122,4894,5.122,4895,5.122,4901,5.122,4902,5.122,4905,4.708,4908,5.122,4909,5.122,4913,5.122,4922,5.122,4923,5.122,4924,4.708,4926,5.122,4929,5.122,4930,5.75,4931,5.75,4932,5.75,4933,5.75,4934,5.75,4935,5.75,4936,5.75,4937,5.75,4938,5.75,4939,5.75,4940,5.75,4941,5.75,4942,5.75,4943,5.75,4944,5.75,4945,5.75,4946,5.75,4947,5.75,4948,5.75,4949,5.75,4950,5.75,4951,5.75,4952,5.122,4953,5.75,4954,5.122,4955,5.75,4956,5.75,4957,5.75]],["title/additional-documentation/changelog/core-changelog.html",[504,1.712,600,0.872,2806,1.219,4521,1.458]],["body/additional-documentation/changelog/core-changelog.html",[9,0.23,25,0.006,43,1.104,60,0.873,81,0.873,89,2.219,232,1.334,320,0.005,321,0.005,349,2.701,502,2.475,513,3.237,518,3.079,519,3.156,570,3.156,573,4.472,584,2.475,685,2.631,947,2.525,1751,3.615,2094,3.615,2224,5.923,2226,4.128,2258,3.982,2374,6.075,3326,3.982,3430,5.183,3679,4.747,4522,3.584,4536,6.075,4562,3.414,4595,3.849,4596,4.629,4620,4.789,4861,4.128,4862,4.128,4864,5.805,4865,5.805,4866,5.524,4867,5.74,4871,4.925,4884,6.075,4905,5.584,4924,5.584,4925,6.075,4954,6.075,4958,6.82,4959,6.82,4960,6.82,4961,6.82,4962,6.82,4963,6.82,4964,6.82,4965,6.82,4966,6.82]],["title/additional-documentation/changelog/style-changelog.html",[5,1.756,600,0.872,2806,1.219,4521,1.458]],["body/additional-documentation/changelog/style-changelog.html",[9,0.237,25,0.006,89,2.104,93,0.677,320,0.006,321,0.006,502,2.546,834,3.834,1751,3.719,1871,5.367,2094,3.719,2226,4.246,3326,4.096,3430,5.217,3679,4.778,4522,3.607,4524,6.004,4540,6.249,4562,3.512,4595,3.959,4596,4.708,4620,4.87,4861,4.246,4862,4.246,4864,5.837,4865,5.837,4866,5.576,4867,5.777,4871,5.066,4967,7.015,4968,7.015,4969,7.015,4970,7.015,4971,7.015,4972,7.015,4973,7.015,4974,7.015]],["title/additional-documentation/changelog/calendar-changelog.html",[600,0.872,781,2.239,2806,1.219,4521,1.458]],["body/additional-documentation/changelog/calendar-changelog.html",[9,0.236,25,0.006,89,2.101,320,0.006,321,0.006,502,2.539,1211,5.44,1751,3.709,2094,3.709,3326,4.085,3430,5.268,3679,4.825,4522,3.643,4535,5.729,4562,3.502,4595,3.949,4596,4.7,4620,5.192,4861,4.235,4862,4.235,4864,5.881,4865,5.881,4866,5.571,4867,5.834,4975,6.996,4976,6.996,4977,6.996,4978,6.996,4979,6.996,4980,6.996,4981,6.996]],["title/additional-documentation/changelog/location-changelog.html",[244,0.872,600,0.872,2806,1.219,4521,1.458]],["body/additional-documentation/changelog/location-changelog.html",[9,0.239,25,0.006,89,2.116,320,0.006,321,0.006,502,2.571,1751,3.755,2094,3.755,3326,4.136,3430,5.228,3679,4.788,4522,3.615,4526,6.273,4538,6.309,4562,3.546,4595,3.998,4596,4.735,4620,4.898,4861,4.287,4862,4.287,4864,5.848,4865,5.848,4866,5.594,4867,5.79,4982,7.083,4983,7.083,4984,7.083,4985,7.083,4986,7.083,4987,7.083]],["title/additional-documentation/changelog/ace-changelog.html",[13,2.426,600,0.872,2806,1.219,4521,1.458]],["body/additional-documentation/changelog/ace-changelog.html",[9,0.239,25,0.006,89,2.116,320,0.006,321,0.006,502,2.571,1751,3.755,2094,3.755,3326,4.136,3430,5.228,3679,4.788,4522,3.615,4525,6.273,4534,6.309,4562,3.546,4595,3.998,4596,4.735,4620,4.898,4861,4.287,4862,4.287,4864,5.848,4865,5.848,4866,5.594,4867,5.79,4988,7.083,4989,7.083,4990,7.083,4991,7.083,4992,7.083,4993,7.083]],["title/additional-documentation/changelog/medium-editor-changelog.html",[14,1.549,255,0.782,600,0.769,2806,1.076,4521,1.287]],["body/additional-documentation/changelog/medium-editor-changelog.html",[9,0.237,14,4.532,25,0.006,89,2.106,320,0.006,321,0.006,502,2.55,1751,3.724,2094,3.724,3326,4.102,3430,5.219,3679,4.779,4522,3.609,4527,6.006,4539,6.258,4562,3.516,4595,3.965,4596,4.712,4620,4.874,4861,4.252,4862,4.252,4864,5.839,4865,5.839,4866,5.579,4867,5.779,4994,7.025,4995,7.025,4996,7.025,4997,7.025,4998,7.025,4999,7.025]],["title/additional-documentation/changelog/tinymce-changelog.html",[600,0.872,2806,1.219,4229,2.327,4521,1.458]],["body/additional-documentation/changelog/tinymce-changelog.html",[0,0.274,9,0.231,15,3.25,25,0.005,50,3.63,57,4.144,89,2.074,121,2.698,320,0.005,321,0.005,502,2.485,513,3.25,584,2.485,1751,3.63,2094,3.63,2226,5.333,3326,4.8,3430,5.188,3679,4.804,4229,5.172,4522,3.587,4528,6.225,4541,6.099,4562,3.427,4595,3.864,4596,4.64,4620,4.8,4861,4.144,4862,4.144,4864,5.858,4865,5.858,4866,5.531,4867,5.745,4871,5.937,5000,6.847,5001,6.847,5002,6.847,5003,6.847,5004,6.847,5005,6.847,5006,6.847,5007,6.847,5008,6.847,5009,6.847,5010,6.847,5011,6.847,5012,6.847]],["title/additional-documentation/adding-new-packages.html",[76,0.597,600,0.769,834,1.784,2806,1.076,4522,1.234]],["body/additional-documentation/adding-new-packages.html",[8,2.298,9,0.214,25,0.007,43,1.025,61,2.606,63,2.632,65,0.333,66,3.169,67,3.26,75,2.047,76,1.671,89,1.597,92,0.841,164,1.869,320,0.005,321,0.005,340,3.745,342,3.461,380,4.971,502,2.298,515,4.513,571,3.07,584,2.298,590,3.627,596,4.284,597,3.26,600,1.492,646,4.152,692,5.64,700,4.424,815,5.64,824,3.697,825,3.26,834,3.461,839,4.844,840,3.983,923,4.931,1066,3.697,1113,6.418,1365,4.844,1657,5.141,1679,3.574,1695,4.346,1910,4.155,2052,5.184,2110,3.697,2126,4.844,2226,5.153,2523,6.418,2594,4.844,2703,7.584,3024,4.152,3162,6.982,3428,5.997,3679,3.169,3691,4.744,4521,2.495,4522,3.456,4572,4.844,4577,4.844,4578,5.184,4590,5.184,4598,4.844,4600,5.844,4639,6.971,4672,5.184,4952,5.64,5013,6.332,5014,6.332,5015,6.332,5016,6.332,5017,6.332,5018,6.332,5019,6.332,5020,6.332,5021,6.332,5022,6.332,5023,6.332,5024,6.332,5025,6.332,5026,6.332,5027,7.839,5028,7.839,5029,6.332,5030,6.332,5031,6.332,5032,6.332,5033,6.332,5034,6.332,5035,6.332,5036,6.332,5037,6.332,5038,7.839,5039,7.839,5040,6.332]],["title/additional-documentation/stackblitz.html",[600,1.005,2806,1.406,5041,3.801]],["body/additional-documentation/stackblitz.html",[0,0.294,5,3.487,15,3.487,25,0.007,60,0.94,65,0.33,75,2.375,148,0.237,149,0.248,320,0.006,321,0.006,322,1.591,333,2.563,571,2.467,572,4.447,775,5.621,1211,4.838,1910,3.895,2096,5.621,4106,6.016,4535,6.016,4719,4.289,5041,7.635,5042,7.347,5043,7.347,5044,7.347]],["title/additional-documentation/publishing.html",[600,1.005,2806,1.406,4593,3.494]],["body/additional-documentation/publishing.html",[0,0.292,4,1.816,25,0.006,60,0.932,66,3.646,67,3.75,75,2.758,76,1.331,79,1.776,164,2.15,250,1.806,253,2.243,320,0.006,321,0.006,418,3.371,452,2.871,489,5.097,571,2.863,588,6.159,824,4.253,825,3.75,927,5.593,1042,3.457,1257,2.933,1679,4.111,1910,3.861,2110,4.253,2258,4.253,2760,5.964,4104,4.253,4562,3.646,4688,6.531,4723,6.525,4743,6.489,4744,6.489,4745,6.489,4746,6.489]]],"invertedIndex":[["",{"_index":25,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"changelog.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"modules.html":{},"overview.html":{},"miscellaneous/typealiases.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["0",{"_index":868,"title":{},"body":{"classes/Collection.html":{},"interfaces/Day.html":{},"interfaces/FileOptions.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["0.12.3\",in",{"_index":4671,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["0.17.18",{"_index":4546,"title":{},"body":{"dependencies.html":{}}}],["0.18.3",{"_index":4987,"title":{},"body":{"additional-documentation/changelog/location-changelog.html":{}}}],["0.18.4",{"_index":4986,"title":{},"body":{"additional-documentation/changelog/location-changelog.html":{}}}],["0.18.5",{"_index":4538,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/location-changelog.html":{}}}],["0.18.6",{"_index":4985,"title":{},"body":{"additional-documentation/changelog/location-changelog.html":{}}}],["0.18.7",{"_index":4984,"title":{},"body":{"additional-documentation/changelog/location-changelog.html":{}}}],["0.18.8",{"_index":4983,"title":{},"body":{"additional-documentation/changelog/location-changelog.html":{}}}],["0.18.9",{"_index":4982,"title":{},"body":{"additional-documentation/changelog/location-changelog.html":{}}}],["0.19.10",{"_index":4960,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["0.19.11",{"_index":4959,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["0.19.12",{"_index":4958,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["0.19.6",{"_index":4963,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["0.19.7",{"_index":4962,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["0.19.8",{"_index":4536,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["0.19.9",{"_index":4961,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["0.2.10",{"_index":4975,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.2.3",{"_index":4981,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.2.4",{"_index":4980,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.2.5",{"_index":4979,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.2.6",{"_index":4535,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/stackblitz.html":{}}}],["0.2.7",{"_index":4978,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.2.8",{"_index":4977,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.2.9",{"_index":4976,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.21.0",{"_index":4972,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["0.21.1",{"_index":4971,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["0.21.2",{"_index":4540,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/style-changelog.html":{}}}],["0.21.3",{"_index":4970,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["0.21.4",{"_index":4969,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["0.21.5",{"_index":4968,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["0.21.6",{"_index":4967,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["0.36.10",{"_index":4934,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.11",{"_index":4542,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.12",{"_index":4933,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.13",{"_index":4932,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.14",{"_index":4931,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.15",{"_index":4930,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.4",{"_index":4943,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.5",{"_index":4942,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.6",{"_index":4941,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.7",{"_index":4940,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.8",{"_index":4937,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.9",{"_index":4935,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.4.3",{"_index":4999,"title":{},"body":{"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.4.4",{"_index":4998,"title":{},"body":{"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.4.5",{"_index":4539,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.4.6",{"_index":4997,"title":{},"body":{"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.4.7",{"_index":4996,"title":{},"body":{"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.4.8",{"_index":4995,"title":{},"body":{"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.4.9",{"_index":4994,"title":{},"body":{"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.42.10",{"_index":4876,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.11",{"_index":4874,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.12",{"_index":4537,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.13",{"_index":4870,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.14",{"_index":4869,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.15",{"_index":4868,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.16",{"_index":4863,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.4",{"_index":4882,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.5",{"_index":4881,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.6",{"_index":4880,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.7",{"_index":4879,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.8",{"_index":4878,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.9",{"_index":4877,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.5.10",{"_index":5000,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.3",{"_index":5010,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.4",{"_index":5009,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.5",{"_index":5008,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.6",{"_index":4541,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.7",{"_index":5003,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.8",{"_index":5002,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.9",{"_index":5001,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.6.3",{"_index":4993,"title":{},"body":{"additional-documentation/changelog/ace-changelog.html":{}}}],["0.6.4",{"_index":4992,"title":{},"body":{"additional-documentation/changelog/ace-changelog.html":{}}}],["0.6.5",{"_index":4534,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/ace-changelog.html":{}}}],["0.6.6",{"_index":4991,"title":{},"body":{"additional-documentation/changelog/ace-changelog.html":{}}}],["0.6.7",{"_index":4990,"title":{},"body":{"additional-documentation/changelog/ace-changelog.html":{}}}],["0.6.8",{"_index":4989,"title":{},"body":{"additional-documentation/changelog/ace-changelog.html":{}}}],["0.6.9",{"_index":4988,"title":{},"body":{"additional-documentation/changelog/ace-changelog.html":{}}}],["0.8.26",{"_index":4558,"title":{},"body":{"dependencies.html":{}}}],["00a2e2",{"_index":5011,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["00dbf0",{"_index":2941,"title":{},"body":{"components/MenuComponent.html":{}}}],["01",{"_index":4865,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["020e689",{"_index":4904,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["04fffbd",{"_index":4909,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["06b615c",{"_index":4892,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0b433be",{"_index":4890,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["1",{"_index":164,"title":{},"body":{"components/AceComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"interfaces/FileOptions.html":{},"components/ListComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"injectables/PopService.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"overview.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["1&&!pagination?.isfirst",{"_index":3408,"title":{},"body":{"components/PaginationComponent.html":{}}}],["1&&!pagination?.islast",{"_index":3412,"title":{},"body":{"components/PaginationComponent.html":{}}}],["1)[0",{"_index":894,"title":{},"body":{"classes/Collection.html":{}}}],["1.0.0",{"_index":4529,"title":{},"body":{"dependencies.html":{}}}],["1.1.0",{"_index":4552,"title":{},"body":{"dependencies.html":{}}}],["1.12.0",{"_index":4547,"title":{},"body":{"dependencies.html":{}}}],["1.3.2",{"_index":4693,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["1.4.2",{"_index":4543,"title":{},"body":{"dependencies.html":{}}}],["1.9.0",{"_index":4556,"title":{},"body":{"dependencies.html":{}}}],["10",{"_index":1657,"title":{},"body":{"classes/Field.html":{},"components/ListComponent.html":{},"classes/Pagination.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/adding-new-packages.html":{}}}],["100",{"_index":1815,"title":{},"body":{"interfaces/FileOptions.html":{},"classes/Pagination.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{}}}],["10004",{"_index":1388,"title":{},"body":{"components/DefaultOutputComponent.html":{}}}],["10m",{"_index":2405,"title":{},"body":{"components/ListComponent.html":{}}}],["11",{"_index":5038,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["12",{"_index":1714,"title":{},"body":{"classes/Field.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{}}}],["121566c",{"_index":4921,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["14",{"_index":4623,"title":{},"body":{"overview.html":{}}}],["18",{"_index":4622,"title":{},"body":{"overview.html":{}}}],["187",{"_index":4896,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["1].id",{"_index":382,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["1].indexof(tab.rout",{"_index":4214,"title":{},"body":{"components/TabsComponent.html":{}}}],["1c382d1",{"_index":4913,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["1cb8b1c",{"_index":4953,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["1cfc328",{"_index":4886,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["1d9e231",{"_index":4946,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["2",{"_index":824,"title":{},"body":{"classes/Collection.html":{},"classes/PaginationConfig.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["2.0.1",{"_index":4551,"title":{},"body":{"dependencies.html":{}}}],["2.4.2",{"_index":4697,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["2.5.4",{"_index":4545,"title":{},"body":{"dependencies.html":{}}}],["2.html",{"_index":4829,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["20",{"_index":2401,"title":{},"body":{"components/ListComponent.html":{},"overview.html":{}}}],["200",{"_index":2133,"title":{},"body":{"directives/ImageDirective.html":{},"components/TinymceComponent.html":{}}}],["2000",{"_index":2621,"title":{},"body":{"components/LoaderComponent.html":{}}}],["2019",{"_index":4864,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["21",{"_index":4620,"title":{},"body":{"overview.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["24868b9",{"_index":4902,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["25",{"_index":3326,"title":{},"body":{"classes/Pagination.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["27",{"_index":3523,"title":{},"body":{"injectables/PopService.html":{}}}],["28",{"_index":4866,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["2826ac4",{"_index":4918,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["29a9e1",{"_index":2940,"title":{},"body":{"components/MenuComponent.html":{}}}],["3",{"_index":825,"title":{},"body":{"classes/Collection.html":{},"classes/PaginationConfig.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["3.10.5",{"_index":4549,"title":{},"body":{"dependencies.html":{}}}],["300px",{"_index":2680,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["364482b",{"_index":4917,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["373bebf",{"_index":4974,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["39;muffin",{"_index":3110,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["3fb8f47",{"_index":4951,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["4",{"_index":3024,"title":{},"body":{"components/ModalComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["4.3.6",{"_index":4694,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["4.7.4",{"_index":5004,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["4.9.2",{"_index":4554,"title":{},"body":{"dependencies.html":{}}}],["400",{"_index":2171,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["42",{"_index":1343,"title":{},"body":{"interfaces/Day.html":{}}}],["431e3fd",{"_index":4899,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["43c7da5",{"_index":4888,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["47a7930",{"_index":4923,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["48.8093253",{"_index":2661,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["4[0",{"_index":3617,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["4a14246",{"_index":4891,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["4a5ea9",{"_index":2942,"title":{},"body":{"components/MenuComponent.html":{}}}],["5",{"_index":1695,"title":{},"body":{"classes/Field.html":{},"injectables/TypeConfigService.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/adding-new-packages.html":{}}}],["5.0.0",{"_index":1952,"title":{},"body":{"injectables/FormService.html":{}}}],["5.23.2",{"_index":4550,"title":{},"body":{"dependencies.html":{}}}],["50",{"_index":2947,"title":{},"body":{"components/MenuComponent.html":{},"classes/Pagination.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["500",{"_index":2954,"title":{},"body":{"components/MenuComponent.html":{}}}],["5000",{"_index":3290,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["500px",{"_index":176,"title":{},"body":{"components/AceComponent.html":{}}}],["50e2d98",{"_index":4947,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["5892365",{"_index":4903,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["5see",{"_index":3361,"title":{},"body":{"classes/Pagination.html":{}}}],["5the",{"_index":1697,"title":{},"body":{"classes/Field.html":{}}}],["6",{"_index":839,"title":{},"body":{"classes/Collection.html":{},"components/ImageSelectPopComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/adding-new-packages.html":{}}}],["6.3.3",{"_index":4553,"title":{},"body":{"dependencies.html":{}}}],["68",{"_index":4621,"title":{},"body":{"overview.html":{}}}],["6e961b8",{"_index":4875,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["7",{"_index":840,"title":{"additional-documentation/angular-7-upgrade-guide.html":{}},"body":{"classes/Collection.html":{},"interfaces/Day.html":{},"overview.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/adding-new-packages.html":{}}}],["7.2.0",{"_index":4532,"title":{},"body":{"dependencies.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["7.2.1",{"_index":4599,"title":{},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{}}}],["70d5e24",{"_index":4954,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["7580583",{"_index":4919,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["7733151",{"_index":4936,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["789e7ca",{"_index":4889,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["7a88da8",{"_index":4956,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["8",{"_index":2399,"title":{},"body":{"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["8236caf",{"_index":4929,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["83cc6374",{"_index":651,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["89ab][0",{"_index":3619,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["8fab72f",{"_index":5012,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["9",{"_index":1769,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["9.159388100000001",{"_index":2662,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["96a29d70d11b",{"_index":3017,"title":{},"body":{"components/ModalComponent.html":{}}}],["9776",{"_index":2544,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["9a",{"_index":3164,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["9bf067d",{"_index":4924,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["9e671b9",{"_index":4901,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["_",{"_index":119,"title":{},"body":{"components/AceComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["_'@ec.components/$1'_",{"_index":4650,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["_'@ec.components/(\\w+).*'_",{"_index":4649,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["_]{22",{"_index":3621,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["_]{22}$/.test(id",{"_index":1770,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["_]{7,14",{"_index":3166,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["_api",{"_index":712,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["_api.login(email",{"_index":716,"title":{},"body":{"injectables/AuthService.html":{}}}],["_api.resetpassword(email",{"_index":762,"title":{},"body":{"injectables/AuthService.html":{}}}],["_cre",{"_index":3106,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["_creat",{"_index":3120,"title":{},"body":{"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["_creator",{"_index":3127,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["_entri",{"_index":1125,"title":{},"body":{"injectables/CrudService.html":{}}}],["_entrytitl",{"_index":3168,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["_item",{"_index":4083,"title":{},"body":{"classes/Sorter.html":{}}}],["_item.id",{"_index":1517,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["_items.indexof(item",{"_index":4084,"title":{},"body":{"classes/Sorter.html":{}}}],["_method",{"_index":759,"title":{},"body":{"injectables/AuthService.html":{}}}],["_methods.filter(x",{"_index":757,"title":{},"body":{"injectables/AuthService.html":{}}}],["_modifi",{"_index":3125,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["_moment",{"_index":1355,"title":{},"body":{"interfaces/Day.html":{}}}],["_resourc",{"_index":3878,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["_toggl",{"_index":3490,"title":{},"body":{"components/PopComponent.html":{}}}],["_upload",{"_index":4448,"title":{},"body":{"components/UploadComponent.html":{}}}],["a.path",{"_index":3567,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["a.then(r",{"_index":753,"title":{},"body":{"injectables/AuthService.html":{}}}],["a08a9d6",{"_index":4912,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["a992381",{"_index":4895,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["abov",{"_index":1698,"title":{},"body":{"classes/Field.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["abstract",{"_index":908,"title":{},"body":{"classes/Config.html":{},"interfaces/ItemConfig.html":{},"classes/Sorter.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["abstractcontrol",{"_index":1938,"title":{},"body":{"injectables/FormService.html":{},"components/InputComponent.html":{}}}],["ac",{"_index":13,"title":{"additional-documentation/readme/ace-readme.html":{},"additional-documentation/changelog/ace-changelog.html":{}},"body":{"components/AceComponent.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/ace-readme.html":{}}}],["acc:edit",{"_index":3654,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["acc:list",{"_index":3653,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["accept",{"_index":3304,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["access",{"_index":1045,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"interfaces/Symbol.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["access=publ",{"_index":4594,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["accessor",{"_index":3590,"title":{},"body":{"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{}}}],["accord",{"_index":3355,"title":{},"body":{"classes/Pagination.html":{}}}],["account",{"_index":405,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/AuthService.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"injectables/TypeConfigService.html":{}}}],["accountid",{"_index":3652,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["accountresourc",{"_index":2775,"title":{},"body":{"components/LoginComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{}}}],["accounts(environment.environ",{"_index":3960,"title":{},"body":{"injectables/SdkService.html":{}}}],["ace'},{'nam",{"_index":183,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ace.compon",{"_index":334,"title":{},"body":{"modules/AceModule.html":{}}}],["ace.component.html",{"_index":36,"title":{},"body":{"components/AceComponent.html":{}}}],["ace.component.scss",{"_index":34,"title":{},"body":{"components/AceComponent.html":{}}}],["ace.edit(this.container.nativeel",{"_index":155,"title":{},"body":{"components/AceComponent.html":{}}}],["ace/mod",{"_index":100,"title":{},"body":{"components/AceComponent.html":{}}}],["ace/them",{"_index":103,"title":{},"body":{"components/AceComponent.html":{}}}],["acecompon",{"_index":1,"title":{"components/AceComponent.html":{}},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["acemodul",{"_index":323,"title":{"modules/AceModule.html":{}},"body":{"modules/AceModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/readme/ace-readme.html":{}}}],["acemoduleconfig",{"_index":335,"title":{},"body":{"modules/AceModule.html":{}}}],["act",{"_index":1403,"title":{},"body":{"directives/DropzoneDirective.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["action",{"_index":338,"title":{"interfaces/Action.html":{}},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"components/LoaderComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["action(item.getbody().data",{"_index":3542,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actionbar",{"_index":350,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/ResourceActionbarState.html":{}}}],["actionbar'},{'nam",{"_index":185,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["actionbar.compon",{"_index":3833,"title":{},"body":{"modules/ResourceModule.html":{}}}],["actionbar.component.t",{"_index":3533,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actionbar.dropdownload",{"_index":3561,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actionbar.dropdownloader.wait(load",{"_index":3562,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actionbar.loadactions(act",{"_index":3560,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actionbar/actionbar.compon",{"_index":3987,"title":{},"body":{"modules/SelectModule.html":{}}}],["actionbar/api",{"_index":3834,"title":{},"body":{"modules/ResourceModule.html":{}}}],["actionbar/resourc",{"_index":3532,"title":{},"body":{"interfaces/ResourceActionbarState.html":{},"modules/ResourceModule.html":{}}}],["actionbarcompon",{"_index":184,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["actionbarconfig",{"_index":351,"title":{"interfaces/ActionbarConfig.html":{}},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["actionfunct",{"_index":344,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/ResourceActionbarState.html":{},"miscellaneous/typealiases.html":{}}}],["actions.length",{"_index":3577,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actions.push",{"_index":3545,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actionsbefor",{"_index":373,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["actionstack",{"_index":356,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["activ",{"_index":581,"title":{},"body":{"guards/AuthGuard.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ListConfig.html":{},"components/LoaderComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"components/TabComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["activatedrout",{"_index":544,"title":{},"body":{"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{},"components/TabsComponent.html":{}}}],["active>a",{"_index":3009,"title":{},"body":{"components/MenuComponent.html":{}}}],["activi",{"_index":2629,"title":{},"body":{"components/LoaderComponent.html":{}}}],["actual",{"_index":2547,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["actual_compon",{"_index":319,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ad",{"_index":834,"title":{"additional-documentation/adding-new-packages.html":{}},"body":{"classes/Collection.html":{},"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["ad58c68",{"_index":4928,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["add",{"_index":571,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"classes/Collection.html":{},"components/EntryListPopComponent.html":{},"injectables/FormService.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["add(item",{"_index":831,"title":{},"body":{"classes/Collection.html":{}}}],["addal",{"_index":812,"title":{},"body":{"classes/Collection.html":{}}}],["addall(item",{"_index":836,"title":{},"body":{"classes/Collection.html":{}}}],["addfield",{"_index":1911,"title":{},"body":{"injectables/FormService.html":{}}}],["addfield(field",{"_index":1918,"title":{},"body":{"injectables/FormService.html":{}}}],["addimagebyurl",{"_index":4233,"title":{},"body":{"components/TinymceComponent.html":{}}}],["addimagebyurl(url",{"_index":4251,"title":{},"body":{"components/TinymceComponent.html":{}}}],["addit",{"_index":2806,"title":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}},"body":{"components/LoginFormComponent.html":{},"components/ModalComponent.html":{},"components/SignupFormComponent.html":{}}}],["addregist",{"_index":3740,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["address",{"_index":1985,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationPickerComponent.html":{}}}],["addtostack",{"_index":387,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["addunregist",{"_index":3742,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["admin",{"_index":409,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/AuthService.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["adminentryinputcompon",{"_index":186,"title":{"components/AdminEntryInputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["adress",{"_index":3443,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["advanc",{"_index":3227,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["advantag",{"_index":2624,"title":{},"body":{"components/LoaderComponent.html":{}}}],["affect",{"_index":4776,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["aftercontentinit",{"_index":4191,"title":{},"body":{"components/TabsComponent.html":{}}}],["afterviewinit",{"_index":2742,"title":{},"body":{"components/LocationSearchComponent.html":{},"components/TinymceComponent.html":{}}}],["afterward",{"_index":3036,"title":{},"body":{"components/ModalComponent.html":{}}}],["agm",{"_index":2681,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["agm/cor",{"_index":1992,"title":{},"body":{"injectables/GeocodeService.html":{},"modules/LocationModule.html":{},"dependencies.html":{}}}],["agmcoremodul",{"_index":2693,"title":{},"body":{"modules/LocationModule.html":{}}}],["agmcoremodule.forroot",{"_index":2699,"title":{},"body":{"modules/LocationModule.html":{}}}],["agnost",{"_index":4841,"title":{},"body":{"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["aizasyadgeue1yxo1f",{"_index":2701,"title":{},"body":{"modules/LocationModule.html":{}}}],["al",{"_index":4758,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["algorithm",{"_index":4066,"title":{},"body":{"classes/Sorter.html":{}}}],["algorithm(a.resolv",{"_index":4090,"title":{},"body":{"classes/Sorter.html":{}}}],["algorithm(a.sort(properti",{"_index":4092,"title":{},"body":{"classes/Sorter.html":{}}}],["alias",{"_index":4625,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["allow",{"_index":682,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/CrudConfig.html":{}}}],["along",{"_index":4720,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["alreadi",{"_index":3284,"title":{},"body":{"injectables/NotificationsService.html":{},"classes/Pagination.html":{}}}],["alt",{"_index":2188,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["alter",{"_index":3890,"title":{},"body":{"interfaces/SdkField.html":{}}}],["alter(valu",{"_index":1366,"title":{},"body":{"interfaces/Day.html":{}}}],["altern",{"_index":2164,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["alway",{"_index":1037,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"components/ListComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["alwaysloadentri",{"_index":1019,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["alwaysshowhead",{"_index":2445,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["amaz",{"_index":4755,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["amazement_factor",{"_index":4754,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["amazement_factor>=5",{"_index":4790,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["amount",{"_index":3202,"title":{},"body":{"classes/Notification.html":{}}}],["angezeigt",{"_index":609,"title":{},"body":{"guards/AuthGuard.html":{}}}],["angular",{"_index":15,"title":{"additional-documentation/angular-7-upgrade-guide.html":{}},"body":{"components/AceComponent.html":{},"injectables/FormService.html":{},"components/MenuComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/stackblitz.html":{}}}],["angular.json",{"_index":4672,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["angular/anim",{"_index":4531,"title":{},"body":{"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["angular/cli",{"_index":4692,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["angular/clith",{"_index":4691,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["angular/common",{"_index":628,"title":{},"body":{"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/UtilityModule.html":{},"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["angular/compil",{"_index":4533,"title":{},"body":{"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["angular/cor",{"_index":137,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["angular/core/src/metadata/lifecycle_hook",{"_index":2569,"title":{},"body":{"components/ListItemsComponent.html":{},"components/PaginationComponent.html":{}}}],["angular/datamanag",{"_index":4566,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["angular/form",{"_index":138,"title":{},"body":{"components/AceComponent.html":{},"modules/AuthModule.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultInputComponent.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"modules/ResourceModule.html":{},"components/SignupFormComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"modules/UtilityModule.html":{},"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["angular/http",{"_index":4695,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["angular/languag",{"_index":4696,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["angular/platform",{"_index":1843,"title":{},"body":{"modules/FilesModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["angular/rout",{"_index":595,"title":{},"body":{"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"injectables/HistoryService.html":{},"components/MenuComponent.html":{},"components/ResourceCrudComponent.html":{},"components/TabsComponent.html":{},"modules/UtilityModule.html":{},"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["angular7",{"_index":4628,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["anim",{"_index":3020,"title":{},"body":{"components/ModalComponent.html":{}}}],["anoth",{"_index":599,"title":{},"body":{"guards/AuthGuard.html":{},"components/IconComponent.html":{},"interfaces/ItemConfig.html":{},"components/LoginComponent.html":{},"components/SignupComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["anweisungen",{"_index":3460,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["anyth",{"_index":4644,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["anywher",{"_index":1648,"title":{},"body":{"classes/Field.html":{},"components/PopComponent.html":{}}}],["api",{"_index":188,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/GeocodeService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["api(api",{"_index":3949,"title":{},"body":{"injectables/SdkService.html":{}}}],["api.asset(this.assetid",{"_index":480,"title":{},"body":{"directives/AssetDirective.html":{}}}],["api.checkpermission(permiss",{"_index":730,"title":{},"body":{"injectables/AuthService.html":{}}}],["api.create(rel",{"_index":3882,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["api.createdmassets(assetgroupid",{"_index":1782,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["api.getschema(model",{"_index":3975,"title":{},"body":{"injectables/SdkService.html":{}}}],["api.logout",{"_index":763,"title":{},"body":{"injectables/AuthService.html":{}}}],["api.me().then((account",{"_index":724,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["api.resourcelist",{"_index":516,"title":{},"body":{"components/AssetListComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["api.resourcelist(rel",{"_index":3557,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["api.signup(email",{"_index":719,"title":{},"body":{"injectables/AuthService.html":{}}}],["apiactionbarcompon",{"_index":187,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["apikey",{"_index":2700,"title":{},"body":{"modules/LocationModule.html":{}}}],["apiresolv",{"_index":3900,"title":{},"body":{"injectables/SdkService.html":{}}}],["app",{"_index":3216,"title":{},"body":{"components/NotificationsComponent.html":{},"injectables/ResourceConfig.html":{},"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{}}}],["app.compon",{"_index":4732,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["app.component.html",{"_index":4106,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/stackblitz.html":{}}}],["app.modul",{"_index":4856,"title":{},"body":{"additional-documentation/readme/ace-readme.html":{}}}],["app::delet",{"_index":3682,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["app::edit",{"_index":3683,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["appcompon",{"_index":4107,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["appear",{"_index":1646,"title":{},"body":{"classes/Field.html":{},"components/PopComponent.html":{},"components/UploadComponent.html":{}}}],["append",{"_index":1475,"title":{},"body":{"directives/EntriesDirective.html":{},"interfaces/FileOptions.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["appid",{"_index":3681,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["appletre",{"_index":2396,"title":{},"body":{"components/ListComponent.html":{}}}],["appli",{"_index":1252,"title":{},"body":{"interfaces/Day.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ModalComponent.html":{}}}],["applic",{"_index":4238,"title":{},"body":{"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["applicationref",{"_index":4236,"title":{},"body":{"components/TinymceComponent.html":{}}}],["applyconfig",{"_index":2467,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["applyconfig(list",{"_index":2471,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["applyfilt",{"_index":2511,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["applyfilter(properti",{"_index":2519,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["appmodul",{"_index":4719,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["approutingmodul",{"_index":4717,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["arbitrari",{"_index":3358,"title":{},"body":{"classes/Pagination.html":{},"classes/Sorter.html":{}}}],["architect",{"_index":4673,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["area",{"_index":3469,"title":{},"body":{"components/PopComponent.html":{}}}],["argument",{"_index":1410,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["around",{"_index":3404,"title":{},"body":{"components/PaginationComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["array",{"_index":681,"title":{},"body":{"injectables/AuthService.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"interfaces/FileOptions.html":{},"pipes/GroupPipe.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MenuComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"interfaces/Upload.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["array(42",{"_index":1325,"title":{},"body":{"interfaces/Day.html":{}}}],["array(math.ceil(this.tot",{"_index":3376,"title":{},"body":{"classes/Pagination.html":{}}}],["array.from(new",{"_index":3363,"title":{},"body":{"classes/Pagination.html":{}}}],["array.isarray(asset",{"_index":1762,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["array.isarray(pattern",{"_index":1231,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["array.slice(start",{"_index":2870,"title":{},"body":{"pipes/MaxItemsPipe.html":{}}}],["artifact",{"_index":4606,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["ask",{"_index":3283,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["asobserv",{"_index":4281,"title":{},"body":{"components/TinymceComponent.html":{}}}],["asset",{"_index":193,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["asset.assetid",{"_index":1766,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["asset.file.resolut",{"_index":2212,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["asset.getfilevariant(this.s",{"_index":2156,"title":{},"body":{"directives/ImageDirective.html":{}}}],["asset.getimagethumburl(this.s",{"_index":2158,"title":{},"body":{"directives/ImageDirective.html":{}}}],["asset.getimageurl(200",{"_index":3696,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["asset.getimageurl(s",{"_index":2193,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["asset.getimageurl(this.s",{"_index":2159,"title":{},"body":{"directives/ImageDirective.html":{}}}],["asset.getoriginalfil",{"_index":2207,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["asset.id",{"_index":2154,"title":{},"body":{"directives/ImageDirective.html":{}}}],["asset.reduc",{"_index":1763,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["asset.thumbnail",{"_index":3715,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["asset.thumbnails.length",{"_index":3716,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["asset.thumbnails[0].url",{"_index":3717,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["asset.titl",{"_index":2210,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["asset.typ",{"_index":2152,"title":{},"body":{"directives/ImageDirective.html":{},"injectables/ResourceConfig.html":{}}}],["asset/asset.direct",{"_index":1847,"title":{},"body":{"modules/FilesModule.html":{},"directives/ImageDirective.html":{}}}],["assetdirect",{"_index":304,"title":{"directives/AssetDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["assetgroup",{"_index":190,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["assetgroup#definitions/condit",{"_index":3711,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["assetgroupid",{"_index":555,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"interfaces/FileOptions.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["assetgrouplist",{"_index":1737,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assetgrouplist(forcereload",{"_index":1823,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assetgrouplistpromis",{"_index":1738,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assetgroupselectcompon",{"_index":189,"title":{"components/AssetgroupSelectComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["assetid",{"_index":431,"title":{},"body":{"directives/AssetDirective.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{}}}],["assetlist.getallitem",{"_index":1784,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assetlistcompon",{"_index":192,"title":{"components/AssetListComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["assetlistpopcompon",{"_index":195,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["assets.map((asset",{"_index":1820,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assets.map(asset",{"_index":1787,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assets.reduce((id",{"_index":1806,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assets/asset",{"_index":428,"title":{},"body":{"directives/AssetDirective.html":{}}}],["assets[0",{"_index":1785,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assetselectcompon",{"_index":198,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["assign",{"_index":1133,"title":{},"body":{"injectables/CrudService.html":{},"classes/Field.html":{},"directives/ImageDirective.html":{},"injectables/ModelConfigService.html":{},"classes/PaginationConfig.html":{},"classes/ResourceForm.html":{},"injectables/ResourceService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["associ",{"_index":1650,"title":{},"body":{"classes/Field.html":{},"injectables/ResourceService.html":{},"components/TabsComponent.html":{},"interfaces/Update.html":{}}}],["assum",{"_index":4727,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["attempt",{"_index":3242,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["audio",{"_index":1749,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["auth",{"_index":625,"title":{},"body":{"modules/AuthModule.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{}}}],["auth.servic",{"_index":636,"title":{},"body":{"modules/AuthModule.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["auth/auth.modul",{"_index":1166,"title":{},"body":{"modules/DataModule.html":{}}}],["auth/auth.servic",{"_index":976,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["authent",{"_index":659,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["authguard",{"_index":578,"title":{"guards/AuthGuard.html":{}},"body":{"guards/AuthGuard.html":{},"modules/AuthModule.html":{}}}],["authmodul",{"_index":615,"title":{"modules/AuthModule.html":{}},"body":{"modules/AuthModule.html":{},"modules/DataModule.html":{},"modules.html":{},"overview.html":{}}}],["author",{"_index":4723,"title":{"additional-documentation/project-setup-tutorial/authorization.html":{}},"body":{"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["authservic",{"_index":623,"title":{"injectables/AuthService.html":{}},"body":{"modules/AuthModule.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"overview.html":{}}}],["auto",{"_index":2125,"title":{},"body":{"directives/ImageDirective.html":{},"injectables/ModelConfigService.html":{}}}],["autocomplet",{"_index":1981,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{}}}],["autocomplete.addlistener('place_chang",{"_index":1997,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["autocomplete.getplac",{"_index":2000,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["autocompleteaddress",{"_index":1970,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["autocompleteaddress(el",{"_index":1979,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["autofocusfirst",{"_index":2350,"title":{},"body":{"components/ListComponent.html":{}}}],["autoload",{"_index":432,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"directives/ImageDirective.html":{},"interfaces/ListConfig.html":{}}}],["autoload=fals",{"_index":453,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntryDirective.html":{}}}],["automat",{"_index":1704,"title":{},"body":{"classes/Field.html":{},"interfaces/ListConfig.html":{},"classes/Notification.html":{},"classes/ResourceForm.html":{},"injectables/SdkService.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{}}}],["avail",{"_index":738,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/CrudConfig.html":{},"interfaces/ListConfig.html":{},"components/NotificationsComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["availab",{"_index":68,"title":{},"body":{"components/AceComponent.html":{}}}],["availables",{"_index":2446,"title":{},"body":{"interfaces/ListConfig.html":{},"classes/Pagination.html":{}}}],["avatar",{"_index":4348,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["b",{"_index":752,"title":{},"body":{"injectables/AuthService.html":{},"classes/Pagination.html":{},"classes/Sorter.html":{},"miscellaneous/functions.html":{},"additional-documentation/readme/style-readme.html":{}}}],["b(r",{"_index":754,"title":{},"body":{"injectables/AuthService.html":{}}}],["b.resolv",{"_index":4091,"title":{},"body":{"classes/Sorter.html":{}}}],["b.sort(properti",{"_index":4093,"title":{},"body":{"classes/Sorter.html":{}}}],["b365847",{"_index":5007,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["b3e8115",{"_index":4966,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["b4d03eb",{"_index":4906,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["b7460e6",{"_index":4945,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["b760780",{"_index":4957,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["back",{"_index":1055,"title":{},"body":{"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/ModalComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["backdrop",{"_index":1580,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["backend",{"_index":4781,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["background",{"_index":1253,"title":{},"body":{"interfaces/Day.html":{}}}],["bake",{"_index":3236,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["baken",{"_index":3238,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["bakery:bakeryservic",{"_index":3235,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["ball",{"_index":3228,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["bar",{"_index":3541,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["barrel",{"_index":4938,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["base",{"_index":1671,"title":{},"body":{"classes/Field.html":{},"injectables/FormService.html":{},"interfaces/ItemConfig.html":{},"classes/Sorter.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["base64",{"_index":3594,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["base64uuid",{"_index":3585,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["basi",{"_index":1358,"title":{},"body":{"interfaces/Day.html":{}}}],["basic",{"_index":1379,"title":{},"body":{"components/DefaultInputComponent.html":{},"components/ListComponent.html":{}}}],["bcbefd1",{"_index":4900,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["be",{"_index":3332,"title":{},"body":{"classes/Pagination.html":{},"components/TinymceComponent.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["befor",{"_index":513,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/CrudConfig.html":{},"classes/Field.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"components/MenuComponent.html":{},"classes/Pagination.html":{},"classes/PaginationConfig.html":{},"classes/ResourceForm.html":{},"injectables/SdkService.html":{},"components/UploadComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["beforehand",{"_index":4773,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["begin",{"_index":1322,"title":{},"body":{"interfaces/Day.html":{}}}],["begin.clone().add(index",{"_index":1328,"title":{},"body":{"interfaces/Day.html":{}}}],["behaviour",{"_index":3068,"title":{},"body":{"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Pagination.html":{},"components/ResourceCrudComponent.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["beim",{"_index":3464,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["belong",{"_index":2241,"title":{},"body":{"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["below",{"_index":3197,"title":{},"body":{"classes/Notification.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["beneath",{"_index":2301,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["beschreibung",{"_index":3223,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["beta.3",{"_index":4530,"title":{},"body":{"dependencies.html":{}}}],["better",{"_index":2628,"title":{},"body":{"components/LoaderComponent.html":{}}}],["between",{"_index":1909,"title":{},"body":{"injectables/FormService.html":{}}}],["bilder",{"_index":4750,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["bind",{"_index":4685,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["birch",{"_index":2400,"title":{},"body":{"components/ListComponent.html":{}}}],["blur",{"_index":1951,"title":{},"body":{"injectables/FormService.html":{}}}],["bobbi",{"_index":1692,"title":{},"body":{"classes/Field.html":{}}}],["bodi",{"_index":1678,"title":{},"body":{"classes/Field.html":{},"interfaces/ItemConfig.html":{},"components/ModalComponent.html":{},"injectables/NotificationsService.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"classes/ResourceForm.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["body.accountid",{"_index":3671,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["body.amazement_factor",{"_index":4775,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["body.amazement_factor*body.flavour/body.pric",{"_index":4779,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["body.email",{"_index":3670,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["body.value.nam",{"_index":1686,"title":{},"body":{"classes/Field.html":{}}}],["boolean",{"_index":345,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"components/TabComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"interfaces/WithNotifications.html":{},"miscellaneous/functions.html":{}}}],["bootstrap",{"_index":324,"title":{},"body":{"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["both",{"_index":692,"title":{},"body":{"injectables/AuthService.html":{},"additional-documentation/adding-new-packages.html":{}}}],["bound",{"_index":1408,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["box",{"_index":920,"title":{},"body":{"components/CrudComponent.html":{},"components/ErrorComponent.html":{},"components/ResourceCrudComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["break",{"_index":4244,"title":{},"body":{"components/TinymceComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["broadcast",{"_index":3859,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["broken",{"_index":4920,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["brows",{"_index":4466,"title":{},"body":{"components/UploadSelectComponent.html":{},"modules.html":{}}}],["browser",{"_index":1844,"title":{},"body":{"modules/FilesModule.html":{},"injectables/NotificationsService.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"dependencies.html":{},"modules.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["browsermodul",{"_index":1842,"title":{},"body":{"modules/FilesModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["btn._clear",{"_index":4973,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["bubbl",{"_index":4922,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["buchstaben",{"_index":1689,"title":{},"body":{"classes/Field.html":{}}}],["bug",{"_index":4871,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["build",{"_index":3691,"title":{},"body":{"injectables/ResourceConfig.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["builder",{"_index":4666,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["builders/custom",{"_index":4667,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["builders/dev",{"_index":4668,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["builds/blob/master/src/ext",{"_index":151,"title":{},"body":{"components/AceComponent.html":{}}}],["builds/src",{"_index":140,"title":{},"body":{"components/AceComponent.html":{},"additional-documentation/readme/ace-readme.html":{}}}],["builds/webpack",{"_index":142,"title":{},"body":{"components/AceComponent.html":{}}}],["built",{"_index":4567,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["bump",{"_index":4867,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["button",{"_index":1041,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/FormConfig.html":{},"components/LoginFormComponent.html":{},"components/ResourceCrudComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["buttonclass",{"_index":2795,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["buttonlabel",{"_index":2796,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["c",{"_index":4809,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["c89591a",{"_index":4925,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["c950461",{"_index":4939,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["c9c8d4",{"_index":2943,"title":{},"body":{"components/MenuComponent.html":{}}}],["cach",{"_index":3913,"title":{},"body":{"injectables/SdkService.html":{}}}],["calculc",{"_index":3351,"title":{},"body":{"classes/Pagination.html":{}}}],["calendar",{"_index":781,"title":{"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/changelog/calendar-changelog.html":{}},"body":{"modules/CalendarModule.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/calendar-readme.html":{}}}],["calendar'},{'nam",{"_index":200,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["calendar/calendar.compon",{"_index":789,"title":{},"body":{"modules/CalendarModule.html":{}}}],["calendar/month.compon",{"_index":792,"title":{},"body":{"modules/CalendarModule.html":{}}}],["calendarcompon",{"_index":199,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["calendarish",{"_index":1246,"title":{},"body":{"interfaces/Day.html":{}}}],["calendarmodul",{"_index":775,"title":{"modules/CalendarModule.html":{}},"body":{"modules/CalendarModule.html":{},"modules/FormModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["calendarmoduleconfig",{"_index":793,"title":{},"body":{"modules/CalendarModule.html":{}}}],["call",{"_index":452,"title":{},"body":{"directives/AssetDirective.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/LoaderComponent.html":{},"components/LoginFormComponent.html":{},"components/ModalComponent.html":{},"classes/Pagination.html":{},"components/ResourceCrudComponent.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"injectables/SymbolPipe.html":{},"components/TinymceComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/publishing.html":{}}}],["callback",{"_index":90,"title":{},"body":{"components/AceComponent.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["callbackurl",{"_index":3729,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["can't",{"_index":4656,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["canactiv",{"_index":589,"title":{},"body":{"guards/AuthGuard.html":{}}}],["canalter(valu",{"_index":1361,"title":{},"body":{"interfaces/Day.html":{}}}],["cancel",{"_index":2957,"title":{},"body":{"components/MenuComponent.html":{}}}],["canceltimeout",{"_index":2926,"title":{},"body":{"components/MenuComponent.html":{}}}],["cand",{"_index":2673,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["caption",{"_index":3719,"title":{},"body":{"injectables/ResourceConfig.html":{},"components/TinymceComponent.html":{}}}],["case",{"_index":2266,"title":{},"body":{"components/InputComponent.html":{},"components/NotificationsComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["catch",{"_index":721,"title":{},"body":{"injectables/AuthService.html":{},"components/LoaderComponent.html":{}}}],["catch((err",{"_index":726,"title":{},"body":{"injectables/AuthService.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/NotificationsComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{},"components/UploadComponent.html":{}}}],["catch((error",{"_index":2781,"title":{},"body":{"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"components/SignupComponent.html":{}}}],["catch(err",{"_index":750,"title":{},"body":{"injectables/AuthService.html":{}}}],["catch(error",{"_index":1509,"title":{},"body":{"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"components/NotificationsComponent.html":{},"interfaces/ResourceActionbarState.html":{}}}],["caution",{"_index":3858,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["ccc",{"_index":1259,"title":{},"body":{"interfaces/Day.html":{}}}],["cd",{"_index":4700,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["cdn",{"_index":4855,"title":{},"body":{"additional-documentation/readme/ace-readme.html":{}}}],["cdr",{"_index":358,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceListPopComponent.html":{}}}],["cell",{"_index":1243,"title":{},"body":{"interfaces/Day.html":{},"classes/Field.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["center",{"_index":2659,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["certain",{"_index":2324,"title":{},"body":{"interfaces/ItemConfig.html":{},"injectables/TypeConfigService.html":{}}}],["chang",{"_index":89,"title":{},"body":{"components/AceComponent.html":{},"components/AssetListComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"changelog.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["change(",{"_index":4406,"title":{},"body":{"components/UploadComponent.html":{}}}],["change(filt",{"_index":1081,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["change)=\"updatesize($event.target.valu",{"_index":3419,"title":{},"body":{"components/PaginationComponent.html":{}}}],["change.broadcast",{"_index":3862,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["change.color",{"_index":1317,"title":{},"body":{"interfaces/Day.html":{}}}],["change.d",{"_index":1314,"title":{},"body":{"interfaces/Day.html":{}}}],["change.heatmap",{"_index":1318,"title":{},"body":{"interfaces/Day.html":{}}}],["change.select",{"_index":1312,"title":{},"body":{"interfaces/Day.html":{}}}],["change.timespan",{"_index":1316,"title":{},"body":{"interfaces/Day.html":{}}}],["change[key",{"_index":3865,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["changedetect",{"_index":2083,"title":{},"body":{"components/IconComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/OutputComponent.html":{},"components/PopComponent.html":{}}}],["changedetectionstrategi",{"_index":2103,"title":{},"body":{"components/IconComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/OutputComponent.html":{},"components/PopComponent.html":{}}}],["changedetectionstrategy.onpush",{"_index":2084,"title":{},"body":{"components/IconComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/OutputComponent.html":{},"components/PopComponent.html":{}}}],["changedetectorref",{"_index":346,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceListPopComponent.html":{}}}],["changelog",{"_index":4521,"title":{"changelog.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}},"body":{"changelog.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["changelog.md",{"_index":5039,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["changesenviron",{"_index":3901,"title":{},"body":{"injectables/SdkService.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["changespan",{"_index":1267,"title":{},"body":{"interfaces/Day.html":{}}}],["check",{"_index":594,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"interfaces/FileOptions.html":{},"components/ListItemsComponent.html":{},"components/ResourceCrudComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["checkbox",{"_index":2457,"title":{},"body":{"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/ToggleComponent.html":{}}}],["checkpermiss",{"_index":661,"title":{},"body":{"injectables/AuthService.html":{}}}],["checkpermission(permiss",{"_index":673,"title":{},"body":{"injectables/AuthService.html":{}}}],["child",{"_index":2970,"title":{},"body":{"components/MenuComponent.html":{},"components/UploadComponent.html":{}}}],["child.data?.titl",{"_index":3006,"title":{},"body":{"components/MenuComponent.html":{}}}],["child.path",{"_index":3007,"title":{},"body":{"components/MenuComponent.html":{}}}],["children",{"_index":4741,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["class",{"_index":149,"title":{"classes/Collection.html":{},"classes/Config.html":{},"classes/Field.html":{},"classes/Notification.html":{},"classes/Pagination.html":{},"classes/PaginationConfig.html":{},"classes/ResourceForm.html":{},"classes/Sorter.html":{}},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"directives/FocusDirective.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"index.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["class.i",{"_index":1396,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["class=\"input",{"_index":3420,"title":{},"body":{"components/PaginationComponent.html":{}}}],["clean",{"_index":1077,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{}}}],["clean(valu",{"_index":1084,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["clear",{"_index":1142,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/Day.html":{},"components/LocationSearchComponent.html":{},"components/LoginFormComponent.html":{},"injectables/ResourceService.html":{},"components/SignupFormComponent.html":{},"interfaces/Update.html":{},"components/UploadComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["clearer",{"_index":4770,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["clearselect",{"_index":1357,"title":{},"body":{"interfaces/Day.html":{}}}],["cleartimeout(this.timeout",{"_index":3001,"title":{},"body":{"components/MenuComponent.html":{}}}],["cli",{"_index":4598,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["cli/issues/11041",{"_index":5006,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["click",{"_index":948,"title":{},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["clickedoutside($ev",{"_index":3492,"title":{},"body":{"components/PopComponent.html":{}}}],["clickev",{"_index":1547,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["client",{"_index":772,"title":{},"body":{"injectables/AuthService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["clientid",{"_index":653,"title":{},"body":{"injectables/AuthService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["clone",{"_index":4584,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["close",{"_index":2041,"title":{},"body":{"injectables/HistoryService.html":{},"components/ListHeaderComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{}}}],["clubapp",{"_index":4811,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["clunki",{"_index":4787,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["cluster_acemodul",{"_index":325,"title":{},"body":{"modules/AceModule.html":{},"overview.html":{}}}],["cluster_acemodule_declar",{"_index":326,"title":{},"body":{"modules/AceModule.html":{},"overview.html":{}}}],["cluster_acemodule_export",{"_index":327,"title":{},"body":{"modules/AceModule.html":{},"overview.html":{}}}],["cluster_authmodul",{"_index":616,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_declar",{"_index":617,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_export",{"_index":619,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_import",{"_index":618,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_provid",{"_index":620,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_calendarmodul",{"_index":776,"title":{},"body":{"modules/CalendarModule.html":{},"overview.html":{}}}],["cluster_calendarmodule_declar",{"_index":777,"title":{},"body":{"modules/CalendarModule.html":{},"overview.html":{}}}],["cluster_calendarmodule_export",{"_index":778,"title":{},"body":{"modules/CalendarModule.html":{},"overview.html":{}}}],["cluster_datamodul",{"_index":1148,"title":{},"body":{"modules/DataModule.html":{},"overview.html":{}}}],["cluster_datamodule_declar",{"_index":1149,"title":{},"body":{"modules/DataModule.html":{},"overview.html":{}}}],["cluster_datamodule_export",{"_index":1151,"title":{},"body":{"modules/DataModule.html":{},"overview.html":{}}}],["cluster_datamodule_import",{"_index":1150,"title":{},"body":{"modules/DataModule.html":{},"overview.html":{}}}],["cluster_datamodule_provid",{"_index":1152,"title":{},"body":{"modules/DataModule.html":{},"overview.html":{}}}],["cluster_filesmodul",{"_index":1836,"title":{},"body":{"modules/FilesModule.html":{},"overview.html":{}}}],["cluster_filesmodule_declar",{"_index":1837,"title":{},"body":{"modules/FilesModule.html":{},"overview.html":{}}}],["cluster_filesmodule_export",{"_index":1839,"title":{},"body":{"modules/FilesModule.html":{},"overview.html":{}}}],["cluster_filesmodule_import",{"_index":1838,"title":{},"body":{"modules/FilesModule.html":{}}}],["cluster_filesmodule_provid",{"_index":1840,"title":{},"body":{"modules/FilesModule.html":{},"overview.html":{}}}],["cluster_formmodul",{"_index":1878,"title":{},"body":{"modules/FormModule.html":{},"overview.html":{}}}],["cluster_formmodule_declar",{"_index":1879,"title":{},"body":{"modules/FormModule.html":{},"overview.html":{}}}],["cluster_formmodule_export",{"_index":1881,"title":{},"body":{"modules/FormModule.html":{},"overview.html":{}}}],["cluster_formmodule_import",{"_index":1880,"title":{},"body":{"modules/FormModule.html":{},"overview.html":{}}}],["cluster_formmodule_provid",{"_index":1882,"title":{},"body":{"modules/FormModule.html":{},"overview.html":{}}}],["cluster_iconmodul",{"_index":2114,"title":{},"body":{"modules/IconModule.html":{},"overview.html":{}}}],["cluster_iconmodule_declar",{"_index":2115,"title":{},"body":{"modules/IconModule.html":{},"overview.html":{}}}],["cluster_iconmodule_export",{"_index":2116,"title":{},"body":{"modules/IconModule.html":{},"overview.html":{}}}],["cluster_iconmodule_provid",{"_index":2117,"title":{},"body":{"modules/IconModule.html":{},"overview.html":{}}}],["cluster_iomodul",{"_index":2315,"title":{},"body":{"modules/IoModule.html":{},"overview.html":{}}}],["cluster_iomodule_declar",{"_index":2316,"title":{},"body":{"modules/IoModule.html":{},"overview.html":{}}}],["cluster_iomodule_export",{"_index":2317,"title":{},"body":{"modules/IoModule.html":{},"overview.html":{}}}],["cluster_listmodul",{"_index":2575,"title":{},"body":{"modules/ListModule.html":{},"overview.html":{}}}],["cluster_listmodule_declar",{"_index":2576,"title":{},"body":{"modules/ListModule.html":{},"overview.html":{}}}],["cluster_listmodule_export",{"_index":2578,"title":{},"body":{"modules/ListModule.html":{},"overview.html":{}}}],["cluster_listmodule_import",{"_index":2577,"title":{},"body":{"modules/ListModule.html":{},"overview.html":{}}}],["cluster_listmodule_provid",{"_index":2579,"title":{},"body":{"modules/ListModule.html":{},"overview.html":{}}}],["cluster_loadermodul",{"_index":2640,"title":{},"body":{"modules/LoaderModule.html":{},"overview.html":{}}}],["cluster_loadermodule_declar",{"_index":2641,"title":{},"body":{"modules/LoaderModule.html":{},"overview.html":{}}}],["cluster_loadermodule_export",{"_index":2642,"title":{},"body":{"modules/LoaderModule.html":{},"overview.html":{}}}],["cluster_loadermodule_provid",{"_index":2643,"title":{},"body":{"modules/LoaderModule.html":{},"overview.html":{}}}],["cluster_locationmodul",{"_index":2683,"title":{},"body":{"modules/LocationModule.html":{},"overview.html":{}}}],["cluster_locationmodule_declar",{"_index":2684,"title":{},"body":{"modules/LocationModule.html":{},"overview.html":{}}}],["cluster_locationmodule_export",{"_index":2686,"title":{},"body":{"modules/LocationModule.html":{},"overview.html":{}}}],["cluster_locationmodule_import",{"_index":2685,"title":{},"body":{"modules/LocationModule.html":{}}}],["cluster_locationmodule_provid",{"_index":2687,"title":{},"body":{"modules/LocationModule.html":{},"overview.html":{}}}],["cluster_mediumeditormodul",{"_index":2912,"title":{},"body":{"modules/MediumEditorModule.html":{},"overview.html":{}}}],["cluster_mediumeditormodule_declar",{"_index":2913,"title":{},"body":{"modules/MediumEditorModule.html":{},"overview.html":{}}}],["cluster_mediumeditormodule_export",{"_index":2915,"title":{},"body":{"modules/MediumEditorModule.html":{},"overview.html":{}}}],["cluster_mediumeditormodule_mediumeditorcomponent_provid",{"_index":2914,"title":{},"body":{"modules/MediumEditorModule.html":{},"overview.html":{}}}],["cluster_notificationsmodul",{"_index":3264,"title":{},"body":{"modules/NotificationsModule.html":{},"overview.html":{}}}],["cluster_notificationsmodule_declar",{"_index":3265,"title":{},"body":{"modules/NotificationsModule.html":{},"overview.html":{}}}],["cluster_notificationsmodule_export",{"_index":3267,"title":{},"body":{"modules/NotificationsModule.html":{},"overview.html":{}}}],["cluster_notificationsmodule_import",{"_index":3266,"title":{},"body":{"modules/NotificationsModule.html":{}}}],["cluster_notificationsmodule_provid",{"_index":3268,"title":{},"body":{"modules/NotificationsModule.html":{},"overview.html":{}}}],["cluster_popmodul",{"_index":3505,"title":{},"body":{"modules/PopModule.html":{},"overview.html":{}}}],["cluster_popmodule_declar",{"_index":3506,"title":{},"body":{"modules/PopModule.html":{},"overview.html":{}}}],["cluster_popmodule_export",{"_index":3508,"title":{},"body":{"modules/PopModule.html":{},"overview.html":{}}}],["cluster_popmodule_import",{"_index":3507,"title":{},"body":{"modules/PopModule.html":{}}}],["cluster_popmodule_provid",{"_index":3509,"title":{},"body":{"modules/PopModule.html":{},"overview.html":{}}}],["cluster_resourcemodul",{"_index":3825,"title":{},"body":{"modules/ResourceModule.html":{},"overview.html":{}}}],["cluster_resourcemodule_declar",{"_index":3826,"title":{},"body":{"modules/ResourceModule.html":{},"overview.html":{}}}],["cluster_resourcemodule_export",{"_index":3828,"title":{},"body":{"modules/ResourceModule.html":{},"overview.html":{}}}],["cluster_resourcemodule_import",{"_index":3827,"title":{},"body":{"modules/ResourceModule.html":{}}}],["cluster_resourcemodule_provid",{"_index":3829,"title":{},"body":{"modules/ResourceModule.html":{},"overview.html":{}}}],["cluster_sdkmodul",{"_index":3891,"title":{},"body":{"modules/SdkModule.html":{},"overview.html":{}}}],["cluster_sdkmodule_provid",{"_index":3892,"title":{},"body":{"modules/SdkModule.html":{},"overview.html":{}}}],["cluster_selectmodul",{"_index":3980,"title":{},"body":{"modules/SelectModule.html":{},"overview.html":{}}}],["cluster_selectmodule_declar",{"_index":3981,"title":{},"body":{"modules/SelectModule.html":{},"overview.html":{}}}],["cluster_selectmodule_export",{"_index":3984,"title":{},"body":{"modules/SelectModule.html":{},"overview.html":{}}}],["cluster_selectmodule_import",{"_index":3983,"title":{},"body":{"modules/SelectModule.html":{}}}],["cluster_selectmodule_selectcomponent_provid",{"_index":3982,"title":{},"body":{"modules/SelectModule.html":{},"overview.html":{}}}],["cluster_symbolmodul",{"_index":4098,"title":{},"body":{"modules/SymbolModule.html":{},"overview.html":{}}}],["cluster_symbolmodule_declar",{"_index":4099,"title":{},"body":{"modules/SymbolModule.html":{},"overview.html":{}}}],["cluster_symbolmodule_export",{"_index":4100,"title":{},"body":{"modules/SymbolModule.html":{},"overview.html":{}}}],["cluster_symbolmodule_provid",{"_index":4101,"title":{},"body":{"modules/SymbolModule.html":{},"overview.html":{}}}],["cluster_tinymcemodul",{"_index":4309,"title":{},"body":{"modules/TinymceModule.html":{},"overview.html":{}}}],["cluster_tinymcemodule_declar",{"_index":4310,"title":{},"body":{"modules/TinymceModule.html":{},"overview.html":{}}}],["cluster_tinymcemodule_export",{"_index":4311,"title":{},"body":{"modules/TinymceModule.html":{},"overview.html":{}}}],["cluster_uimodul",{"_index":4380,"title":{},"body":{"modules/UiModule.html":{},"overview.html":{}}}],["cluster_uimodule_export",{"_index":4382,"title":{},"body":{"modules/UiModule.html":{},"overview.html":{}}}],["cluster_uimodule_import",{"_index":4381,"title":{},"body":{"modules/UiModule.html":{}}}],["cluster_utilitymodul",{"_index":4497,"title":{},"body":{"modules/UtilityModule.html":{},"overview.html":{}}}],["cluster_utilitymodule_declar",{"_index":4498,"title":{},"body":{"modules/UtilityModule.html":{},"overview.html":{}}}],["cluster_utilitymodule_export",{"_index":4500,"title":{},"body":{"modules/UtilityModule.html":{},"overview.html":{}}}],["cluster_utilitymodule_import",{"_index":4499,"title":{},"body":{"modules/UtilityModule.html":{}}}],["cmd+click",{"_index":4814,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["code",{"_index":3994,"title":{},"body":{"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["codesourc",{"_index":3744,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["codesourceid",{"_index":3745,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["codesourcetyp",{"_index":3746,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["col",{"_index":1670,"title":{},"body":{"classes/Field.html":{},"components/ModalComponent.html":{}}}],["collat",{"_index":4071,"title":{},"body":{"classes/Sorter.html":{}}}],["collator.compare(a",{"_index":4076,"title":{},"body":{"classes/Sorter.html":{}}}],["collect",{"_index":808,"title":{"classes/Collection.html":{}},"body":{"classes/Collection.html":{},"components/ListComponent.html":{},"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"injectables/PopService.html":{},"injectables/SdkService.html":{},"modules/SymbolModule.html":{}}}],["collection([1",{"_index":823,"title":{},"body":{"classes/Collection.html":{}}}],["collection.add(4",{"_index":865,"title":{},"body":{"classes/Collection.html":{}}}],["collection.addall([10,11,12",{"_index":869,"title":{},"body":{"classes/Collection.html":{}}}],["collection.has(1",{"_index":863,"title":{},"body":{"classes/Collection.html":{}}}],["collection.has(4",{"_index":864,"title":{},"body":{"classes/Collection.html":{}}}],["collection.hasall([1,10,11",{"_index":870,"title":{},"body":{"classes/Collection.html":{}}}],["collection.index(1",{"_index":867,"title":{},"body":{"classes/Collection.html":{}}}],["collection.remove(4",{"_index":866,"title":{},"body":{"classes/Collection.html":{}}}],["collection.removeall();it",{"_index":871,"title":{},"body":{"classes/Collection.html":{}}}],["color",{"_index":1249,"title":{},"body":{"interfaces/Day.html":{},"components/MenuComponent.html":{},"injectables/ResourceConfig.html":{}}}],["column",{"_index":1063,"title":{},"body":{"interfaces/CrudConfig.html":{},"classes/Field.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/PopService.html":{},"interfaces/SdkField.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["columnclick",{"_index":932,"title":{},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["columnclick(item",{"_index":2368,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{}}}],["combin",{"_index":3214,"title":{},"body":{"components/NotificationsComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{}}}],["come",{"_index":407,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"interfaces/FileOptions.html":{},"injectables/NotificationsService.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["command",{"_index":5017,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["comment",{"_index":2626,"title":{},"body":{"components/LoaderComponent.html":{}}}],["commit",{"_index":4596,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["commonmodul",{"_index":627,"title":{},"body":{"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/UtilityModule.html":{}}}],["commun",{"_index":2770,"title":{},"body":{"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{}}}],["complain",{"_index":3295,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["complet",{"_index":4404,"title":{},"body":{"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["complex",{"_index":4802,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["compliant",{"_index":5016,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["compon",{"_index":0,"title":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"modules/SymbolModule.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"overview.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["component(",{"_index":5044,"title":{},"body":{"additional-documentation/stackblitz.html":{}}}],["component_templ",{"_index":182,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["componentfactori",{"_index":1459,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["componentfactoryresolv",{"_index":1437,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["componentinst",{"_index":2236,"title":{},"body":{"components/InputComponent.html":{}}}],["componentref",{"_index":1454,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["componentref.inst",{"_index":2280,"title":{},"body":{"components/InputComponent.html":{}}}],["componentref.instance.control",{"_index":2282,"title":{},"body":{"components/InputComponent.html":{}}}],["componentref.instance.control.valuechang",{"_index":2283,"title":{},"body":{"components/InputComponent.html":{}}}],["components.entrecode.d",{"_index":4571,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["concat",{"_index":3547,"title":{},"body":{"interfaces/ResourceActionbarState.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["concat(this.config.availables",{"_index":3365,"title":{},"body":{"classes/Pagination.html":{}}}],["concat(this.getresourcelistactions(list",{"_index":3553,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["concat(this.timespan",{"_index":1287,"title":{},"body":{"interfaces/Day.html":{}}}],["concept",{"_index":1701,"title":{},"body":{"classes/Field.html":{}}}],["condit",{"_index":3709,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config",{"_index":353,"title":{"classes/Config.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"injectables/ModelConfigService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["config.filt",{"_index":1759,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["config.input",{"_index":4372,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.interfac",{"_index":974,"title":{},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"interfaces/FormConfig.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ModelConfigService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadSelectComponent.html":{}}}],["config.interface.t",{"_index":1017,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/FieldConfig.html":{},"interfaces/FormConfig.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"interfaces/ModelConfig.html":{},"classes/PaginationConfig.html":{}}}],["config.interface.ts:11",{"_index":3426,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["config.interface.ts:6",{"_index":1718,"title":{},"body":{"interfaces/FieldConfig.html":{}}}],["config.interface.ts:7",{"_index":3429,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["config.interface.ts:9",{"_index":3427,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["config.output",{"_index":4373,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.servic",{"_index":705,"title":{},"body":{"injectables/AuthService.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"modules/ListModule.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["config.service.t",{"_index":2465,"title":{},"body":{"injectables/ListConfigService.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{}}}],["config.service.ts:10",{"_index":3591,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:100",{"_index":3103,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:121",{"_index":3093,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:14",{"_index":2478,"title":{},"body":{"injectables/ListConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["config.service.ts:15",{"_index":4344,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:17",{"_index":3113,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:179",{"_index":4334,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:18",{"_index":2480,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["config.service.ts:183",{"_index":4340,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:191",{"_index":3081,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:199",{"_index":4343,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:209",{"_index":4337,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:217",{"_index":4335,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:220",{"_index":3100,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:223",{"_index":4341,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:23",{"_index":2474,"title":{},"body":{"injectables/ListConfigService.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{}}}],["config.service.ts:24",{"_index":3596,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:35",{"_index":2482,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["config.service.ts:36",{"_index":3600,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:39",{"_index":3089,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:44",{"_index":2472,"title":{},"body":{"injectables/ListConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["config.service.ts:53",{"_index":3603,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:54",{"_index":3108,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:59",{"_index":3104,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:62",{"_index":3601,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:66",{"_index":3605,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:7",{"_index":2483,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["config.service.ts:70",{"_index":3592,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:75",{"_index":3607,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:9",{"_index":2476,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["config.view",{"_index":4371,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config/field",{"_index":1705,"title":{},"body":{"classes/Field.html":{},"interfaces/ItemConfig.html":{}}}],["config/model",{"_index":979,"title":{},"body":{"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/EntryListPopComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{}}}],["config/resourc",{"_index":704,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/FileOptions.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"interfaces/Upload.html":{}}}],["config/resource.servic",{"_index":1105,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"classes/ResourceForm.html":{},"modules/ResourceModule.html":{},"interfaces/Upload.html":{}}}],["config/resource.service.t",{"_index":3835,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["config/resource.service.ts:103",{"_index":3840,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:121",{"_index":3842,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:132",{"_index":3844,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:35",{"_index":3836,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:38",{"_index":3854,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:47",{"_index":3847,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:53",{"_index":3837,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:64",{"_index":3850,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:82",{"_index":3853,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:97",{"_index":3845,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/sdk",{"_index":3886,"title":{},"body":{"interfaces/SdkField.html":{}}}],["config/typ",{"_index":1179,"title":{},"body":{"modules/DataModule.html":{},"interfaces/FileOptions.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{}}}],["config?.createlabel",{"_index":1015,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["configinput",{"_index":2411,"title":{},"body":{"components/ListComponent.html":{}}}],["configur",{"_index":896,"title":{},"body":{"classes/Config.html":{},"components/CrudComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/ListConfig.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/PaginationConfig.html":{},"injectables/ResourceConfig.html":{},"classes/ResourceForm.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["configuration.interface.t",{"_index":3185,"title":{},"body":{"interfaces/ModelConfiguration.html":{}}}],["configure(key",{"_index":898,"title":{},"body":{"classes/Config.html":{}}}],["configure?(key",{"_index":912,"title":{},"body":{"classes/Config.html":{}}}],["confirm",{"_index":1067,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["connect",{"_index":2291,"title":{},"body":{"components/InputComponent.html":{}}}],["connectcontrol",{"_index":2237,"title":{},"body":{"components/InputComponent.html":{}}}],["connector",{"_index":500,"title":{},"body":{"components/AssetListComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["consid",{"_index":4629,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["consist",{"_index":1346,"title":{},"body":{"interfaces/Day.html":{}}}],["console.error('cannot",{"_index":4374,"title":{},"body":{"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{}}}],["console.error('miss",{"_index":4369,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["console.error(`${relationnam",{"_index":3611,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["console.error(err",{"_index":4449,"title":{},"body":{"components/UploadComponent.html":{}}}],["console.error(notification.error",{"_index":3301,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["console.log('cannot",{"_index":2493,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["console.log('could",{"_index":2784,"title":{},"body":{"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"components/SignupComponent.html":{}}}],["console.log('entry',item.getbody(),item.id",{"_index":4765,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["console.log('error",{"_index":1007,"title":{},"body":{"components/CrudComponent.html":{}}}],["console.log('no",{"_index":3543,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["console.log('raw",{"_index":1228,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["console.log('receiv",{"_index":4838,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["console.log('rout",{"_index":2987,"title":{},"body":{"components/MenuComponent.html":{}}}],["console.log('should",{"_index":2225,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["console.warn('addfield",{"_index":1955,"title":{},"body":{"injectables/FormService.html":{}}}],["console.warn('cannot",{"_index":1502,"title":{},"body":{"directives/EntriesDirective.html":{},"injectables/LoaderService.html":{},"classes/Sorter.html":{}}}],["console.warn('could",{"_index":2290,"title":{},"body":{"components/InputComponent.html":{}}}],["console.warn('field",{"_index":2507,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["console.warn('fileservice#resolveasset",{"_index":1800,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["console.warn('ha",{"_index":880,"title":{},"body":{"classes/Collection.html":{}}}],["console.warn('no",{"_index":1832,"title":{},"body":{"interfaces/FileOptions.html":{},"components/LocationMapComponent.html":{},"interfaces/Upload.html":{}}}],["console.warn('notification.tim",{"_index":3261,"title":{},"body":{"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{}}}],["console.warn('thi",{"_index":3308,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["console.warn('to",{"_index":3503,"title":{},"body":{"components/PopComponent.html":{}}}],["console.warn('tri",{"_index":2419,"title":{},"body":{"components/ListComponent.html":{},"components/NotificationsComponent.html":{}}}],["console.warn('wont",{"_index":1811,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["console.warn(`crudservice.chang",{"_index":1109,"title":{},"body":{"injectables/CrudService.html":{}}}],["console.warn(`ec",{"_index":3057,"title":{},"body":{"components/ModalComponent.html":{}}}],["console.warn(`icon",{"_index":2108,"title":{},"body":{"components/IconComponent.html":{}}}],["console.warn(`rel",{"_index":737,"title":{},"body":{"injectables/AuthService.html":{}}}],["const",{"_index":147,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"injectables/ListConfigService.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"modules/UtilityModule.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/readme/core-readme.html":{}}}],["construct",{"_index":822,"title":{},"body":{"classes/Collection.html":{},"classes/Field.html":{},"components/ModalComponent.html":{},"classes/ResourceForm.html":{}}}],["constructor",{"_index":357,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"directives/SlotHostDirective.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["constructor(@inject('environ",{"_index":3953,"title":{},"body":{"injectables/SdkService.html":{}}}],["constructor(@inject('moment.format.d",{"_index":1225,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["constructor(@inject('usedesktopnotif",{"_index":3296,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["constructor(app",{"_index":4235,"title":{},"body":{"components/TinymceComponent.html":{}}}],["constructor(auth",{"_index":2761,"title":{},"body":{"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{}}}],["constructor(bodi",{"_index":3797,"title":{},"body":{"classes/ResourceForm.html":{}}}],["constructor(cdr",{"_index":2552,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["constructor(componentfactoryresolv",{"_index":1436,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{}}}],["constructor(config",{"_index":3324,"title":{},"body":{"classes/Pagination.html":{},"classes/PaginationConfig.html":{}}}],["constructor(crud",{"_index":3078,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["constructor(el",{"_index":1400,"title":{},"body":{"directives/DropzoneDirective.html":{},"directives/FocusDirective.html":{},"components/TabComponent.html":{}}}],["constructor(environ",{"_index":3907,"title":{},"body":{"injectables/SdkService.html":{}}}],["constructor(fb",{"_index":2802,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["constructor(fileservic",{"_index":560,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["constructor(geocodeservic",{"_index":2712,"title":{},"body":{"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{}}}],["constructor(host",{"_index":2599,"title":{},"body":{"components/LoaderComponent.html":{}}}],["constructor(iconservic",{"_index":2086,"title":{},"body":{"components/IconComponent.html":{}}}],["constructor(item",{"_index":820,"title":{},"body":{"classes/Collection.html":{}}}],["constructor(listconfig",{"_index":2353,"title":{},"body":{"components/ListComponent.html":{},"components/ListHeaderComponent.html":{}}}],["constructor(mapload",{"_index":1974,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["constructor(modelconfig",{"_index":1552,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["constructor(notif",{"_index":3188,"title":{},"body":{"classes/Notification.html":{}}}],["constructor(notificationservic",{"_index":2037,"title":{},"body":{"injectables/HistoryService.html":{},"components/NotificationsComponent.html":{}}}],["constructor(popservic",{"_index":2169,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{}}}],["constructor(priv",{"_index":601,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"directives/EntryDirective.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"directives/FocusDirective.html":{},"injectables/GeocodeService.html":{},"components/IconComponent.html":{},"components/LoaderComponent.html":{},"components/MenuComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/readme/location-readme.html":{}}}],["constructor(properti",{"_index":1636,"title":{},"body":{"classes/Field.html":{}}}],["constructor(protect",{"_index":2845,"title":{},"body":{"components/LoginFormComponent.html":{},"components/PopComponent.html":{}}}],["constructor(publ",{"_index":418,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/DefaultEntryInputComponent.html":{},"components/DynamicSlotComponent.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["constructor(resourceconfig",{"_index":670,"title":{},"body":{"injectables/AuthService.html":{},"components/ResourceListPopComponent.html":{}}}],["constructor(rout",{"_index":2937,"title":{},"body":{"components/MenuComponent.html":{},"components/TabsComponent.html":{}}}],["constructor(sdk",{"_index":412,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DefaultEntryInputComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"directives/ImageDirective.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"components/UploadComponent.html":{}}}],["constructor(symbol",{"_index":1608,"title":{},"body":{"components/ErrorComponent.html":{},"injectables/FormService.html":{},"components/InputErrorsComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"components/UploadSelectComponent.html":{}}}],["constructor(usedesktopnotif",{"_index":3279,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["constructor(viewcontainerref",{"_index":4051,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["consum",{"_index":4763,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["contact",{"_index":4518,"title":{},"body":{"interfaces/WithLoader.html":{}}}],["contain",{"_index":39,"title":{},"body":{"components/AceComponent.html":{},"guards/AuthGuard.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"interfaces/Day.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PaginationComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{}}}],["content",{"_index":2081,"title":{},"body":{"components/IconComponent.html":{},"interfaces/ItemConfig.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["contentchildren",{"_index":3051,"title":{},"body":{"components/ModalComponent.html":{},"components/TabsComponent.html":{}}}],["contentchildren(tabcompon",{"_index":4204,"title":{},"body":{"components/TabsComponent.html":{}}}],["contentchildren(templateref",{"_index":3045,"title":{},"body":{"components/ModalComponent.html":{}}}],["context",{"_index":2335,"title":{},"body":{"interfaces/ItemConfig.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["control",{"_index":45,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LocationPickerComponent.html":{},"classes/Pagination.html":{},"classes/PaginationConfig.html":{},"components/TinymceComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["control'",{"_index":2300,"title":{},"body":{"components/InputErrorsComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["control.reset",{"_index":2539,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["controls[field.properti",{"_index":1948,"title":{},"body":{"injectables/FormService.html":{}}}],["controlvalueaccessor",{"_index":17,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["convent",{"_index":4595,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["cooki",{"_index":634,"title":{},"body":{"modules/AuthModule.html":{},"dependencies.html":{}}}],["cookiefactori",{"_index":622,"title":{},"body":{"modules/AuthModule.html":{},"miscellaneous/functions.html":{},"overview.html":{}}}],["cookiemodul",{"_index":632,"title":{},"body":{"modules/AuthModule.html":{},"miscellaneous/functions.html":{}}}],["cookiemodule.forroot",{"_index":643,"title":{},"body":{"modules/AuthModule.html":{}}}],["coord",{"_index":2003,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{}}}],["coords.lat",{"_index":2677,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["coords.lng",{"_index":2676,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["core",{"_index":504,"title":{"additional-documentation/readme/core-readme.html":{},"additional-documentation/changelog/core-changelog.html":{}},"body":{"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"injectables/FormService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["correct",{"_index":5022,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["correctli",{"_index":4806,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["count",{"_index":3352,"title":{},"body":{"classes/Pagination.html":{},"injectables/ResourceConfig.html":{}}}],["counter",{"_index":4832,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["counter.component.html",{"_index":4833,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["countercompon",{"_index":4834,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["cours",{"_index":1699,"title":{},"body":{"classes/Field.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["creat",{"_index":75,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/ListComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["create(model",{"_index":1087,"title":{},"body":{"injectables/CrudService.html":{}}}],["create(rel",{"_index":3841,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["create/edit/delet",{"_index":919,"title":{},"body":{"components/CrudComponent.html":{},"components/ErrorComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["create/read/update/delet",{"_index":3856,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["createclick",{"_index":3758,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["created(label",{"_index":3595,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["created.otherwis",{"_index":3851,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["createfield",{"_index":3792,"title":{},"body":{"classes/ResourceForm.html":{}}}],["createfield(properti",{"_index":3808,"title":{},"body":{"classes/ResourceForm.html":{}}}],["createlabel",{"_index":1020,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["createlist",{"_index":491,"title":{},"body":{"components/AssetListComponent.html":{}}}],["createnew",{"_index":3580,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["creates/upd",{"_index":535,"title":{},"body":{"components/AssetListComponent.html":{}}}],["creator",{"_index":3112,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["credenti",{"_index":2789,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["crud",{"_index":924,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/ModelConfigService.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["crud'",{"_index":942,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["crud'},{'nam",{"_index":202,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["crud.compon",{"_index":3831,"title":{},"body":{"modules/ResourceModule.html":{}}}],["crud.component.html",{"_index":925,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["crud.component.t",{"_index":3756,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:29",{"_index":3760,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:31",{"_index":3762,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:33",{"_index":3761,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:35",{"_index":3763,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:37",{"_index":3773,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:39",{"_index":3776,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:41",{"_index":3774,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:43",{"_index":3764,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:45",{"_index":3766,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:47",{"_index":3759,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:53",{"_index":3778,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:54",{"_index":3777,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:57",{"_index":3770,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:61",{"_index":3769,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:72",{"_index":3768,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:77",{"_index":3771,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:90",{"_index":3767,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud/crud",{"_index":1595,"title":{},"body":{"components/EntryListPopComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadSelectComponent.html":{}}}],["crud/crud.compon",{"_index":1167,"title":{},"body":{"modules/DataModule.html":{}}}],["crud/crud.servic",{"_index":1168,"title":{},"body":{"modules/DataModule.html":{},"injectables/ModelConfigService.html":{}}}],["crud/resourc",{"_index":3755,"title":{},"body":{"components/ResourceCrudComponent.html":{},"modules/ResourceModule.html":{}}}],["crudcompon",{"_index":201,"title":{"components/CrudComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["crudcomponent#loadentri",{"_index":3784,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crudconfig",{"_index":940,"title":{"interfaces/CrudConfig.html":{}},"body":{"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/EntryListPopComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["crudservic",{"_index":1069,"title":{"injectables/CrudService.html":{}},"body":{"injectables/CrudService.html":{},"modules/DataModule.html":{},"interfaces/FileOptions.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"overview.html":{}}}],["crudservice#chang",{"_index":1117,"title":{},"body":{"injectables/CrudService.html":{}}}],["crypto",{"_index":4682,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["css",{"_index":4849,"title":{},"body":{"additional-documentation/readme/style-readme.html":{}}}],["current",{"_index":126,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"interfaces/Day.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"injectables/PopService.html":{},"classes/ResourceForm.html":{},"injectables/SdkService.html":{},"injectables/SymbolService.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["currentact",{"_index":385,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["currentid",{"_index":377,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["custom",{"_index":941,"title":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}},"body":{"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"components/LoginComponent.html":{},"injectables/ModelConfigService.html":{},"components/OutputComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["customfieldcompon",{"_index":1442,"title":{},"body":{"components/DynamicRackComponent.html":{}}}],["customfieldconfig",{"_index":3080,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["customfieldscompon",{"_index":4830,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["custominputcompon",{"_index":4813,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["customupload",{"_index":1021,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["customwebpackconfig",{"_index":4675,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["d5dc292",{"_index":4885,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["d7fa72b",{"_index":4873,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["da",{"_index":3219,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["darf",{"_index":4760,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["dark",{"_index":3026,"title":{},"body":{"components/ModalComponent.html":{}}}],["data",{"_index":340,"title":{"additional-documentation/readme/data-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/DynamicSlotComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"interfaces/ResourceActionbarState.html":{},"interfaces/SdkField.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["data.entryid",{"_index":2076,"title":{},"body":{"injectables/HistoryService.html":{}}}],["data.modul",{"_index":4914,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["datamanag",{"_index":773,"title":{},"body":{"injectables/AuthService.html":{},"injectables/HistoryService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"components/UploadComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{}}}],["datamanager(environment.environ",{"_index":3966,"title":{},"body":{"injectables/SdkService.html":{}}}],["datamanager.enablehistoryevents(eventsourc",{"_index":2073,"title":{},"body":{"injectables/HistoryService.html":{}}}],["datamanagerid",{"_index":650,"title":{},"body":{"injectables/AuthService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["datamanagerresourc",{"_index":403,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/HistoryService.html":{},"injectables/SdkService.html":{}}}],["datamodul",{"_index":1147,"title":{"modules/DataModule.html":{}},"body":{"modules/DataModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme/data-readme.html":{}}}],["datamodule.forenvironment(environ",{"_index":4718,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["datamoduleconfig",{"_index":1183,"title":{},"body":{"modules/DataModule.html":{}}}],["datarun",{"_index":5036,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["datasourc",{"_index":3748,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["datasourceid",{"_index":3749,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["date",{"_index":802,"title":{},"body":{"modules/CalendarModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"injectables/ResourceConfig.html":{},"modules/SymbolModule.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/readme/calendar-readme.html":{}}}],["date()).format",{"_index":4360,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["date(0",{"_index":4361,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["date.clon",{"_index":1349,"title":{},"body":{"interfaces/Day.html":{}}}],["date.clone().startof('day').issame(this.timespan[0].clone().startof('day",{"_index":1331,"title":{},"body":{"interfaces/Day.html":{}}}],["date.clone().startof('day').issame(this.timespan[1].clone().startof('day",{"_index":1333,"title":{},"body":{"interfaces/Day.html":{}}}],["date.format('dd",{"_index":1340,"title":{},"body":{"interfaces/Day.html":{}}}],["date.format('mm",{"_index":1334,"title":{},"body":{"interfaces/Day.html":{}}}],["date.format(this.monthformat",{"_index":1351,"title":{},"body":{"interfaces/Day.html":{}}}],["date.isbetween(this.timespan[0",{"_index":1336,"title":{},"body":{"interfaces/Day.html":{}}}],["date.now",{"_index":2636,"title":{},"body":{"components/LoaderComponent.html":{},"interfaces/ResourceActionbarState.html":{}}}],["dateformat",{"_index":1226,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["datenschutz",{"_index":4617,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["datepick",{"_index":4111,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["daterange'},{'nam",{"_index":204,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["daterange/daterange.compon",{"_index":791,"title":{},"body":{"modules/CalendarModule.html":{}}}],["daterangecompon",{"_index":203,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["datetim",{"_index":1186,"title":{},"body":{"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["datetime'},{'nam",{"_index":206,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["datetime.component.html",{"_index":1188,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["datetime.pip",{"_index":788,"title":{},"body":{"modules/CalendarModule.html":{}}}],["datetime/datetime.compon",{"_index":1896,"title":{},"body":{"modules/FormModule.html":{}}}],["datetimecompon",{"_index":205,"title":{"components/DatetimeComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FormModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["datetimepip",{"_index":779,"title":{"pipes/DatetimePipe.html":{}},"body":{"modules/CalendarModule.html":{},"pipes/DatetimePipe.html":{},"overview.html":{}}}],["datum",{"_index":4357,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["day",{"_index":1207,"title":{"interfaces/Day.html":{}},"body":{"components/DatetimeComponent.html":{},"interfaces/Day.html":{}}}],["day.clone().startof('month').startof('week",{"_index":1323,"title":{},"body":{"interfaces/Day.html":{}}}],["day.date.clon",{"_index":1289,"title":{},"body":{"interfaces/Day.html":{}}}],["day.first",{"_index":1282,"title":{},"body":{"interfaces/Day.html":{}}}],["day.format('mm",{"_index":1335,"title":{},"body":{"interfaces/Day.html":{}}}],["day.last",{"_index":1284,"title":{},"body":{"interfaces/Day.html":{}}}],["dayclick",{"_index":1265,"title":{},"body":{"interfaces/Day.html":{}}}],["dd.mm.yyyi",{"_index":795,"title":{},"body":{"modules/CalendarModule.html":{}}}],["de",{"_index":4116,"title":{},"body":{"modules/SymbolModule.html":{},"injectables/SymbolService.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["de51159",{"_index":4897,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["deactiv",{"_index":4173,"title":{},"body":{"components/TabComponent.html":{}}}],["debounc",{"_index":2238,"title":{},"body":{"components/InputComponent.html":{},"components/TinymceComponent.html":{}}}],["debouncetim",{"_index":1244,"title":{},"body":{"interfaces/Day.html":{},"components/InputComponent.html":{},"components/TinymceComponent.html":{}}}],["debouncetime(this.debounc",{"_index":2284,"title":{},"body":{"components/InputComponent.html":{}}}],["decid",{"_index":1932,"title":{},"body":{"injectables/FormService.html":{},"components/ListComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["decim",{"_index":4347,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["deck",{"_index":3048,"title":{},"body":{"components/ModalComponent.html":{}}}],["declar",{"_index":146,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"injectables/GeocodeService.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["decor",{"_index":110,"title":{},"body":{"components/AceComponent.html":{},"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListHeaderComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["decrement",{"_index":4837,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["dedupl",{"_index":1720,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["def9084",{"_index":4883,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["default",{"_index":118,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["defaultcolumn",{"_index":3518,"title":{},"body":{"injectables/PopService.html":{}}}],["defaultentryinputcompon",{"_index":207,"title":{"components/DefaultEntryInputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["defaultentryoutputcompon",{"_index":208,"title":{"components/DefaultEntryOutputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["defaultinputcompon",{"_index":20,"title":{"components/DefaultInputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FormModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["defaultinputcomponent:11",{"_index":130,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/LocationPickerComponent.html":{}}}],["defaultinputcomponent:13",{"_index":134,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/LocationPickerComponent.html":{}}}],["defaultinputcomponent:15",{"_index":133,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/LocationPickerComponent.html":{}}}],["defaultinputcomponent:17",{"_index":129,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/LocationPickerComponent.html":{}}}],["defaultlocal",{"_index":3630,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["defaultmonthformat",{"_index":1269,"title":{},"body":{"interfaces/Day.html":{}}}],["defaultopt",{"_index":1740,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["defaultoutputcompon",{"_index":211,"title":{"components/DefaultOutputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FormModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["defaults",{"_index":2168,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["defaulttim",{"_index":3276,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["defin",{"_index":71,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["del",{"_index":1078,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{}}}],["del(model",{"_index":1089,"title":{},"body":{"injectables/CrudService.html":{}}}],["del(rel",{"_index":3843,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["delay",{"_index":2945,"title":{},"body":{"components/MenuComponent.html":{}}}],["delet",{"_index":277,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["deletenullproperti",{"_index":3839,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["deleteonremov",{"_index":1022,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["deliv",{"_index":3097,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["demo",{"_index":572,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"components/IconComponent.html":{},"components/UploadComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/stackblitz.html":{}}}],["demonstr",{"_index":4733,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["deni",{"_index":3307,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["depend",{"_index":63,"title":{"dependencies.html":{}},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"dependencies.html":{},"index.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["deploy",{"_index":3692,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["deprec",{"_index":1110,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["der",{"_index":3221,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["desc",{"_index":2447,"title":{},"body":{"interfaces/ListConfig.html":{},"classes/Sorter.html":{}}}],["descend",{"_index":2455,"title":{},"body":{"interfaces/ListConfig.html":{},"classes/Sorter.html":{}}}],["describ",{"_index":1675,"title":{},"body":{"classes/Field.html":{},"interfaces/ItemConfig.html":{}}}],["descript",{"_index":11,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{}}}],["deselect",{"_index":4183,"title":{},"body":{"components/TabComponent.html":{}}}],["desir",{"_index":2660,"title":{},"body":{"components/LocationMapComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["desktop",{"_index":3275,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["desktopnotif",{"_index":3277,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["desktopnotification(notif",{"_index":3281,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["dest",{"_index":5028,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["destroy",{"_index":2888,"title":{},"body":{"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["detail",{"_index":4851,"title":{},"body":{"additional-documentation/readme/style-readme.html":{}}}],["determin",{"_index":1241,"title":{},"body":{"interfaces/Day.html":{},"interfaces/ItemConfig.html":{},"classes/Notification.html":{},"components/PaginationComponent.html":{},"injectables/SdkService.html":{}}}],["dev",{"_index":4582,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["develop",{"_index":1023,"title":{},"body":{"interfaces/CrudConfig.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["devkit/build",{"_index":4669,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["devth",{"_index":4670,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["dialog",{"_index":2174,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{}}}],["die",{"_index":3222,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["dies",{"_index":605,"title":{},"body":{"guards/AuthGuard.html":{}}}],["differ",{"_index":960,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/Day.html":{},"classes/Field.html":{},"interfaces/ItemConfig.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"injectables/SdkService.html":{},"classes/Sorter.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["direct",{"_index":179,"title":{"directives/AssetDirective.html":{},"directives/DropzoneDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"directives/FocusDirective.html":{},"directives/ImageDirective.html":{},"directives/SlotHostDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{},"additional-documentation/readme/medium-editor-readme.html":{}}}],["directive|pipe|service|class|guard|interface|enum|modul",{"_index":4605,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["directli",{"_index":460,"title":{},"body":{"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"interfaces/CrudConfig.html":{},"directives/EntryDirective.html":{},"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["directori",{"_index":4607,"title":{},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{}}}],["disabl",{"_index":1394,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/LoaderComponent.html":{},"components/ModalComponent.html":{}}}],["disablecolumnfilt",{"_index":2448,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["disablecreatepop",{"_index":1024,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["disabledrag",{"_index":2449,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["disabledragend",{"_index":1262,"title":{},"body":{"interfaces/Day.html":{}}}],["disabledragstart",{"_index":1260,"title":{},"body":{"interfaces/Day.html":{}}}],["disabledrop",{"_index":4465,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["disabledtyp",{"_index":3703,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["disablehead",{"_index":1601,"title":{},"body":{"components/EntryListPopComponent.html":{},"interfaces/ListConfig.html":{},"components/ResourceListPopComponent.html":{}}}],["disablelegaci",{"_index":556,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["disablelistpop",{"_index":1025,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["disablesearchbar",{"_index":1026,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/ListConfig.html":{}}}],["disableselectswitch",{"_index":1027,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["disablestrategi",{"_index":3733,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["disabletim",{"_index":1190,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["disableupd",{"_index":2035,"title":{},"body":{"injectables/HistoryService.html":{}}}],["disableupdates(key",{"_index":2039,"title":{},"body":{"injectables/HistoryService.html":{}}}],["disableurlupload",{"_index":1028,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["display",{"_index":1191,"title":{},"body":{"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"components/IconComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"classes/PaginationConfig.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["displayaccount",{"_index":4331,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["displayd",{"_index":4332,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["displaydate(tim",{"_index":4336,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["dist",{"_index":4578,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["dist/data",{"_index":5037,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["div",{"_index":3397,"title":{},"body":{"components/PaginationComponent.html":{}}}],["dm",{"_index":3623,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["dm::delet",{"_index":3625,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["dm::edit",{"_index":3624,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["dma",{"_index":3154,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["dmaccount",{"_index":3668,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["dmasset",{"_index":1791,"title":{},"body":{"interfaces/FileOptions.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{}}}],["dmassetconfig",{"_index":1741,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["dmassetlist",{"_index":1731,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["dmassetlist.getallitem",{"_index":1817,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["dmassetresourc",{"_index":1733,"title":{},"body":{"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"interfaces/Upload.html":{},"components/UploadSelectComponent.html":{}}}],["dmclient",{"_index":3727,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["dmuser",{"_index":3708,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["dnddraggabl",{"_index":4893,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["dndmodul",{"_index":1163,"title":{},"body":{"modules/DataModule.html":{},"modules/SelectModule.html":{}}}],["doc",{"_index":573,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"classes/Field.html":{},"components/ModalComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["document",{"_index":1751,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["document:click",{"_index":1551,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["document:click($ev",{"_index":1567,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["dom",{"_index":6,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["done",{"_index":5014,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["dont",{"_index":4801,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["dosomethingriski",{"_index":3224,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["doubt",{"_index":1801,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["drag",{"_index":1164,"title":{},"body":{"modules/DataModule.html":{},"interfaces/Day.html":{},"interfaces/ListConfig.html":{},"modules/SelectModule.html":{},"dependencies.html":{}}}],["dragend",{"_index":2670,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["draggabl",{"_index":1235,"title":{},"body":{"interfaces/Day.html":{}}}],["dragleav",{"_index":1398,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["dragleave(",{"_index":1411,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["dragov",{"_index":1399,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["dragover(",{"_index":1414,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["dragstart(day",{"_index":1299,"title":{},"body":{"interfaces/Day.html":{}}}],["drawer",{"_index":3471,"title":{},"body":{"components/PopComponent.html":{}}}],["driven",{"_index":4563,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["drop",{"_index":1165,"title":{},"body":{"modules/DataModule.html":{},"directives/DropzoneDirective.html":{},"modules/SelectModule.html":{},"components/UploadSelectComponent.html":{},"dependencies.html":{}}}],["drop(",{"_index":1416,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["dropday(day",{"_index":1280,"title":{},"body":{"interfaces/Day.html":{}}}],["dropdown",{"_index":1044,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{}}}],["dropzone/dropzone.direct",{"_index":1848,"title":{},"body":{"modules/FilesModule.html":{}}}],["dropzonedirect",{"_index":306,"title":{"directives/DropzoneDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["due",{"_index":5005,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["duplic",{"_index":1728,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/ResourceConfig.html":{},"injectables/SymbolService.html":{},"interfaces/Upload.html":{}}}],["dure",{"_index":2815,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["dynam",{"_index":214,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["dynamicrackcompon",{"_index":212,"title":{"components/DynamicRackComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["dynamicslotcompon",{"_index":213,"title":{"components/DynamicSlotComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["dynamicslotcomponent:11",{"_index":2268,"title":{},"body":{"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["dynamicslotcomponent:14",{"_index":2267,"title":{},"body":{"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["dynamicslotcomponent:18",{"_index":2256,"title":{},"body":{"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["e",{"_index":167,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Day.html":{},"components/EntryListPopComponent.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"components/TinymceComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["e).then",{"_index":4489,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["e.datatransfer.fil",{"_index":1426,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["e.datatransfer.files.length",{"_index":1427,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["e.g",{"_index":61,"title":{},"body":{"components/AceComponent.html":{},"guards/AuthGuard.html":{},"classes/Config.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"classes/Field.html":{},"injectables/FormService.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Symbol.html":{},"components/TabsComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["e.preventdefault",{"_index":1302,"title":{},"body":{"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"components/UploadComponent.html":{}}}],["e.stopimmediatepropag",{"_index":2573,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["e.stoppropag",{"_index":1422,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/ListItemsComponent.html":{},"components/UploadComponent.html":{}}}],["e.target",{"_index":4428,"title":{},"body":{"components/UploadComponent.html":{}}}],["e.target.fil",{"_index":4429,"title":{},"body":{"components/UploadComponent.html":{}}}],["e.target.files.length",{"_index":4430,"title":{},"body":{"components/UploadComponent.html":{}}}],["e.target.localnam",{"_index":4301,"title":{},"body":{"components/TinymceComponent.html":{}}}],["e.toel",{"_index":4303,"title":{},"body":{"components/TinymceComponent.html":{}}}],["e2",{"_index":4613,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["e8b0e49",{"_index":4964,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["each",{"_index":1074,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"components/LoaderComponent.html":{},"interfaces/ModelConfig.html":{},"interfaces/ModelConfiguration.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"changelog.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog.html":{}}}],["easi",{"_index":5013,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["eb506da",{"_index":4907,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["ec",{"_index":32,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["ec.api",{"_index":408,"title":{},"body":{"components/AdminEntryInputComponent.html":{}}}],["ec.asset",{"_index":3693,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["ec.compon",{"_index":1910,"title":{},"body":{"injectables/FormService.html":{},"modules/SymbolModule.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["ec.components/ac",{"_index":4525,"title":{},"body":{"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{}}}],["ec.components/ace@0.6.0",{"_index":4630,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/calendar",{"_index":1211,"title":{},"body":{"components/DatetimeComponent.html":{},"modules/FormModule.html":{},"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/stackblitz.html":{}}}],["ec.components/calendar@0.2.0",{"_index":4631,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/cor",{"_index":349,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"pipes/VisibleFieldsPipe.html":{},"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["ec.components/core@0.19.0",{"_index":4632,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/coreimport",{"_index":4846,"title":{},"body":{"additional-documentation/readme/core-readme.html":{}}}],["ec.components/data",{"_index":4523,"title":{},"body":{"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["ec.components/data/src/entri",{"_index":4641,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/data@0.42.0",{"_index":4633,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/loc",{"_index":4526,"title":{},"body":{"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/location-changelog.html":{}}}],["ec.components/location@0.18.0",{"_index":4634,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/medium",{"_index":4527,"title":{},"body":{"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["ec.components/styl",{"_index":4524,"title":{},"body":{"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/style-changelog.html":{}}}],["ec.components/style/components';new",{"_index":4652,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/style/components.scss\";5",{"_index":4707,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["ec.components/style/scss/compon",{"_index":4853,"title":{},"body":{"additional-documentation/readme/style-readme.html":{}}}],["ec.components/style/scss/components';3",{"_index":4653,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/style@0.21.0",{"_index":4636,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/tinymc",{"_index":4528,"title":{},"body":{"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["ec.components/tinymce@0.5.0",{"_index":4637,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/ui",{"_index":139,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"modules/DataModule.html":{},"components/DefaultEntryInputComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"modules/FilesModule.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LoginComponent.html":{},"injectables/ModelConfigService.html":{},"components/PasswordResetComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["ec.components/ui';8",{"_index":5032,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["ec.components/ui/src/icon/emoji",{"_index":2098,"title":{},"body":{"components/IconComponent.html":{}}}],["ec.components/ui@0.36.0",{"_index":4638,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.datamanag",{"_index":4839,"title":{},"body":{"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["ec.sdk",{"_index":646,"title":{},"body":{"injectables/AuthService.html":{},"classes/Field.html":{},"injectables/SdkService.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["ec.sdk/lib/account",{"_index":3941,"title":{},"body":{"injectables/SdkService.html":{}}}],["ec.sdk/lib/cor",{"_index":703,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{}}}],["ec.sdk/lib/datamanag",{"_index":2060,"title":{},"body":{"injectables/HistoryService.html":{},"injectables/SdkService.html":{}}}],["ec.sdk/lib/publicapi",{"_index":469,"title":{},"body":{"directives/AssetDirective.html":{},"components/LoginComponent.html":{},"injectables/ModelConfigService.html":{},"components/PasswordResetComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{}}}],["ec.sdk/lib/resources/accounts/accountresourc",{"_index":2776,"title":{},"body":{"components/LoginComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{}}}],["ec.sdk/lib/resources/datamanager/datamanagerresourc",{"_index":417,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/HistoryService.html":{},"injectables/SdkService.html":{}}}],["ec.sdk/lib/resources/datamanager/modelresourc",{"_index":2059,"title":{},"body":{"injectables/HistoryService.html":{}}}],["ec.sdk/lib/resources/listresourc",{"_index":1498,"title":{},"body":{"directives/EntriesDirective.html":{},"interfaces/ResourceActionbarState.html":{}}}],["ec.sdk/lib/resources/publicapi/dmassetlist",{"_index":1732,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["ec.sdk/lib/resources/publicapi/dmassetresourc",{"_index":1734,"title":{},"body":{"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"interfaces/Upload.html":{},"components/UploadSelectComponent.html":{}}}],["ec.sdk/lib/resources/publicapi/entrylist",{"_index":1497,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["ec.sdk/lib/resources/publicapi/entryresourc",{"_index":1104,"title":{},"body":{"injectables/CrudService.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"injectables/HistoryService.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{}}}],["ec.sdk/lib/resources/publicapi/publicassetlist",{"_index":1736,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["ec.sdk/lib/resources/publicapi/publicassetresourc",{"_index":468,"title":{},"body":{"directives/AssetDirective.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"interfaces/Upload.html":{},"components/UploadSelectComponent.html":{}}}],["ec.sdk/lib/resources/resourc",{"_index":3608,"title":{},"body":{"injectables/ResourceConfig.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["ec.sdk/lib/sess",{"_index":3942,"title":{},"body":{"injectables/SdkService.html":{}}}],["ecasset",{"_index":430,"title":{},"body":{"directives/AssetDirective.html":{}}}],["ecasset]'},{'nam",{"_index":305,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecdropzon",{"_index":1393,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["ecdropzone]'},{'nam",{"_index":307,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecentri",{"_index":1467,"title":{},"body":{"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["ecentries]'},{'nam",{"_index":309,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecentry]'},{'nam",{"_index":311,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecfocu",{"_index":1860,"title":{},"body":{"directives/FocusDirective.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["ecfocus]'},{'nam",{"_index":313,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecicon",{"_index":2121,"title":{},"body":{"injectables/IconService.html":{}}}],["ecimag",{"_index":2127,"title":{},"body":{"directives/ImageDirective.html":{}}}],["ecimage]'},{'nam",{"_index":316,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecslothost",{"_index":318,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecthi",{"_index":5019,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["edg",{"_index":1296,"title":{},"body":{"interfaces/Day.html":{}}}],["edit",{"_index":1008,"title":{},"body":{"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"injectables/ModelConfigService.html":{},"classes/ResourceForm.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["edit/cr",{"_index":4791,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["editfilt",{"_index":2512,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["editfilter(pop",{"_index":2521,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["editor",{"_index":14,"title":{"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{}},"body":{"components/AceComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["editor#mediumeditor",{"_index":2900,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor'},{'nam",{"_index":256,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["editor.compon",{"_index":2917,"title":{},"body":{"modules/MediumEditorModule.html":{}}}],["editor.component.html",{"_index":2879,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.scss",{"_index":2878,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.t",{"_index":2873,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:35",{"_index":2882,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:37",{"_index":2884,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:39",{"_index":2885,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:41",{"_index":2886,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:43",{"_index":2893,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:45",{"_index":2897,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:47",{"_index":2894,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:49",{"_index":2896,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:52",{"_index":2889,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:63",{"_index":2887,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:68",{"_index":2892,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:75",{"_index":2895,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:78",{"_index":2890,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:82",{"_index":2891,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.getcont",{"_index":4284,"title":{},"body":{"components/TinymceComponent.html":{}}}],["editor.module.t",{"_index":2916,"title":{},"body":{"modules/MediumEditorModule.html":{}}}],["editor.on('chang",{"_index":166,"title":{},"body":{"components/AceComponent.html":{}}}],["editor.scss",{"_index":2910,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.setcontent(this.valu",{"_index":2908,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.setvalue(this.valu",{"_index":172,"title":{},"body":{"components/AceComponent.html":{}}}],["editor/dist/js/medium",{"_index":2898,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor/src/lib/medium",{"_index":2872,"title":{},"body":{"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{}}}],["editor/src/sass/medium",{"_index":2909,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor?e=1",{"_index":2876,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor@0.4.0",{"_index":4635,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["editor[0",{"_index":4298,"title":{},"body":{"components/TinymceComponent.html":{}}}],["editorset",{"_index":4280,"title":{},"body":{"components/TinymceComponent.html":{}}}],["editorsettings.setup(editor",{"_index":4292,"title":{},"body":{"components/TinymceComponent.html":{}}}],["ein",{"_index":3457,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["eingeloggt",{"_index":613,"title":{},"body":{"guards/AuthGuard.html":{}}}],["eject",{"_index":4665,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["el",{"_index":1402,"title":{},"body":{"directives/DropzoneDirective.html":{},"injectables/GeocodeService.html":{},"components/TabComponent.html":{}}}],["element",{"_index":113,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"injectables/GeocodeService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["elementref",{"_index":109,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"directives/FocusDirective.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/LocationSearchComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PaginationComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceListPopComponent.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"components/UploadComponent.html":{}}}],["email",{"_index":689,"title":{},"body":{"injectables/AuthService.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceConfig.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"injectables/TypeConfigService.html":{}}}],["emailavail",{"_index":2850,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["emaillabel",{"_index":2797,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["emailplacehold",{"_index":2798,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["embed",{"_index":1441,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{}}}],["embedd",{"_index":2095,"title":{},"body":{"components/IconComponent.html":{}}}],["emit",{"_index":947,"title":{},"body":{"components/CrudComponent.html":{},"injectables/CrudService.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginFormComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["emit(host",{"_index":3229,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["emit(notif",{"_index":3286,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["emitt",{"_index":2365,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/MediumEditorComponent.html":{},"injectables/NotificationsService.html":{}}}],["emojiicon",{"_index":2097,"title":{},"body":{"components/IconComponent.html":{}}}],["empti",{"_index":850,"title":{},"body":{"classes/Collection.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"interfaces/ListConfig.html":{},"components/MediumEditorComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["empty=tru",{"_index":4798,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["en",{"_index":4105,"title":{},"body":{"modules/SymbolModule.html":{},"injectables/SymbolService.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["enabl",{"_index":771,"title":{},"body":{"injectables/AuthService.html":{},"injectables/HistoryService.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{}}}],["enableupd",{"_index":2036,"title":{},"body":{"injectables/HistoryService.html":{}}}],["enableupdates(resourc",{"_index":2044,"title":{},"body":{"injectables/HistoryService.html":{}}}],["encapsul",{"_index":2340,"title":{},"body":{"components/ListComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["end",{"_index":1261,"title":{},"body":{"interfaces/Day.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["endless",{"_index":1472,"title":{},"body":{"directives/EntriesDirective.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["enforc",{"_index":4725,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["enhanc",{"_index":4139,"title":{},"body":{"injectables/SymbolService.html":{}}}],["enough",{"_index":4709,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["enrich",{"_index":3613,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["ensur",{"_index":3450,"title":{},"body":{"components/PasswordResetComponent.html":{},"components/PopComponent.html":{}}}],["enter",{"_index":4816,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["entiti",{"_index":1062,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/ItemConfig.html":{}}}],["entrecod",{"_index":4565,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["entrecode.github.io/ec.compon",{"_index":4569,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["entri",{"_index":209,"title":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["entries/entries.direct",{"_index":1169,"title":{},"body":{"modules/DataModule.html":{}}}],["entriesdirect",{"_index":308,"title":{"directives/EntriesDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entry.del().then((r",{"_index":1146,"title":{},"body":{"injectables/CrudService.html":{}}}],["entry.getimagethumburl(properti",{"_index":4349,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["entry.gettitle(properti",{"_index":4362,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["entry.sav",{"_index":1121,"title":{},"body":{"injectables/CrudService.html":{},"injectables/SymbolPipe.html":{}}}],["entry.save(safeput).then((_entri",{"_index":1134,"title":{},"body":{"injectables/CrudService.html":{}}}],["entry/entry.direct",{"_index":1177,"title":{},"body":{"modules/DataModule.html":{}}}],["entry[key",{"_index":1130,"title":{},"body":{"injectables/CrudService.html":{}}}],["entrycompon",{"_index":332,"title":{},"body":{"modules/AceModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IoModule.html":{},"modules/LocationModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/TinymceModule.html":{},"modules/UtilityModule.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["entrydirect",{"_index":310,"title":{"directives/EntryDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entryform",{"_index":4640,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["entryformcompon",{"_index":216,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entryid",{"_index":1523,"title":{},"body":{"directives/EntryDirective.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["entrylist",{"_index":540,"title":{},"body":{"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{}}}],["entrylist.model",{"_index":1605,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["entrylistcompon",{"_index":218,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entrylistpopcompon",{"_index":219,"title":{"components/EntryListPopComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entrylistselectcompon",{"_index":220,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entrypop",{"_index":926,"title":{},"body":{"components/CrudComponent.html":{}}}],["entrypopcompon",{"_index":221,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entryresourc",{"_index":1090,"title":{},"body":{"injectables/CrudService.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"injectables/HistoryService.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{}}}],["entryselectcompon",{"_index":222,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["env",{"_index":3927,"title":{},"body":{"injectables/SdkService.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["environ",{"_index":647,"title":{},"body":{"injectables/AuthService.html":{},"modules/DataModule.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["environment.clientid",{"_index":3958,"title":{},"body":{"injectables/SdkService.html":{}}}],["environment.datamanagerid",{"_index":3961,"title":{},"body":{"injectables/SdkService.html":{}}}],["environment.environ",{"_index":3968,"title":{},"body":{"injectables/SdkService.html":{}}}],["environment.init",{"_index":3954,"title":{},"body":{"injectables/SdkService.html":{}}}],["environments/environ",{"_index":4716,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["equal",{"_index":990,"title":{},"body":{"components/CrudComponent.html":{},"classes/Field.html":{}}}],["erhalten",{"_index":3461,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["err",{"_index":1009,"title":{},"body":{"components/CrudComponent.html":{},"components/InputErrorsComponent.html":{},"components/LoginFormComponent.html":{},"components/NotificationsComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadComponent.html":{}}}],["err.messag",{"_index":2852,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["error",{"_index":584,"title":{},"body":{"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/ErrorComponent.html":{},"injectables/FormService.html":{},"injectables/HistoryService.html":{},"components/InputErrorsComponent.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/PasswordResetComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadComponent.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["error'},{'nam",{"_index":224,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["error('cannot",{"_index":478,"title":{},"body":{"directives/AssetDirective.html":{},"injectables/HistoryService.html":{}}}],["error('get",{"_index":3948,"title":{},"body":{"injectables/SdkService.html":{}}}],["error('no",{"_index":3943,"title":{},"body":{"injectables/SdkService.html":{}}}],["error('th",{"_index":4166,"title":{},"body":{"injectables/SymbolService.html":{}}}],["error(`cannot",{"_index":3377,"title":{},"body":{"classes/Pagination.html":{}}}],["error.cod",{"_index":1619,"title":{},"body":{"components/ErrorComponent.html":{}}}],["error.code}}{{error.datapath}}{{error?.message}}{{error.detail}}{{error.verbos",{"_index":1624,"title":{},"body":{"components/ErrorComponent.html":{}}}],["error.component.html",{"_index":1607,"title":{},"body":{"components/ErrorComponent.html":{}}}],["error.datapath",{"_index":1620,"title":{},"body":{"components/ErrorComponent.html":{}}}],["error.detail}}{{error.verbos",{"_index":1622,"title":{},"body":{"components/ErrorComponent.html":{}}}],["error.messag",{"_index":2314,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["error.verbos",{"_index":1623,"title":{},"body":{"components/ErrorComponent.html":{}}}],["error/error.compon",{"_index":3270,"title":{},"body":{"modules/NotificationsModule.html":{}}}],["error?.messag",{"_index":1621,"title":{},"body":{"components/ErrorComponent.html":{}}}],["errorcompon",{"_index":223,"title":{"components/ErrorComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["errormessag",{"_index":2792,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["errors'},{'nam",{"_index":235,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["errors.compon",{"_index":2321,"title":{},"body":{"modules/IoModule.html":{}}}],["errors.component.html",{"_index":2302,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["errors.component.t",{"_index":2299,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["errors.component.ts:12",{"_index":2304,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["errors.component.ts:14",{"_index":2308,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["errors.component.ts:18",{"_index":2305,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["errors/input",{"_index":2298,"title":{},"body":{"components/InputErrorsComponent.html":{},"modules/IoModule.html":{}}}],["errs.push",{"_index":2313,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["erstellen",{"_index":3579,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["erstellt",{"_index":4752,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["es6",{"_index":1210,"title":{},"body":{"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"injectables/TypeConfigService.html":{},"dependencies.html":{}}}],["escap",{"_index":3515,"title":{},"body":{"injectables/PopService.html":{}}}],["etc",{"_index":1642,"title":{},"body":{"classes/Field.html":{},"components/ListItemsComponent.html":{},"interfaces/SdkField.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["even",{"_index":1039,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["event",{"_index":447,"title":{},"body":{"directives/AssetDirective.html":{},"components/AssetgroupSelectComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"directives/DropzoneDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"directives/FocusDirective.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["event.key",{"_index":3524,"title":{},"body":{"injectables/PopService.html":{}}}],["event.keycod",{"_index":3522,"title":{},"body":{"injectables/PopService.html":{}}}],["eventemitt",{"_index":448,"title":{},"body":{"directives/AssetDirective.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["eventemitter.t",{"_index":911,"title":{},"body":{"classes/Config.html":{}}}],["eventsourc",{"_index":2034,"title":{},"body":{"injectables/HistoryService.html":{}}}],["eventsource/lib/eventsourc",{"_index":2061,"title":{},"body":{"injectables/HistoryService.html":{}}}],["eventu",{"_index":4433,"title":{},"body":{"components/UploadComponent.html":{}}}],["everyth",{"_index":3069,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["everytim",{"_index":1739,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["exact",{"_index":1216,"title":{},"body":{"pipes/DatetimePipe.html":{},"classes/Field.html":{},"pipes/GroupPipe.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{}}}],["exactli",{"_index":4789,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["exampl",{"_index":8,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"classes/Field.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"components/ListComponent.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/adding-new-packages.html":{}}}],["execut",{"_index":4611,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["exist",{"_index":1098,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ListConfigService.html":{},"injectables/ResourceService.html":{},"injectables/SymbolService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["existing.hid",{"_index":2502,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["existing.hide.foreach(properti",{"_index":2505,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["expect",{"_index":144,"title":{},"body":{"components/AceComponent.html":{},"components/IconComponent.html":{},"components/InputComponent.html":{},"components/ModalComponent.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["experiment",{"_index":1956,"title":{},"body":{"injectables/FormService.html":{},"interfaces/ListConfig.html":{}}}],["export",{"_index":148,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/stackblitz.html":{}}}],["exporta",{"_index":470,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"directives/ImageDirective.html":{}}}],["expos",{"_index":645,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{}}}],["extend",{"_index":19,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"interfaces/CrudConfig.html":{},"components/DefaultEntryInputComponent.html":{},"components/EntryListPopComponent.html":{},"interfaces/FormConfig.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"interfaces/ListConfig.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/OutputComponent.html":{},"interfaces/ResourceActionbarState.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{}}}],["extens",{"_index":1871,"title":{},"body":{"interfaces/FormConfig.html":{},"components/ModalComponent.html":{},"classes/ResourceForm.html":{},"additional-documentation/changelog/style-changelog.html":{}}}],["extensions/modes/them",{"_index":4858,"title":{},"body":{"additional-documentation/readme/ace-readme.html":{}}}],["extern",{"_index":1053,"title":{},"body":{"interfaces/CrudConfig.html":{},"classes/Pagination.html":{}}}],["extra",{"_index":1043,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["extract",{"_index":1928,"title":{},"body":{"injectables/FormService.html":{}}}],["f.hideinlist).map(f",{"_index":2499,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["f.name",{"_index":4458,"title":{},"body":{"components/UploadComponent.html":{}}}],["f.properti",{"_index":2500,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["f.url",{"_index":1780,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["f3590a7",{"_index":4927,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["f7b65f4",{"_index":4950,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["f]{12}$/i",{"_index":3620,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["f]{3",{"_index":3618,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["f]{4",{"_index":3616,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["f]{8",{"_index":3615,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["factor",{"_index":4797,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["fadein",{"_index":3023,"title":{},"body":{"components/ModalComponent.html":{}}}],["fail",{"_index":598,"title":{},"body":{"guards/AuthGuard.html":{},"classes/Collection.html":{}}}],["failiur",{"_index":3241,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["faktor",{"_index":4756,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["fall",{"_index":1054,"title":{},"body":{"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/ModalComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["fallback",{"_index":2373,"title":{},"body":{"components/ListComponent.html":{},"components/ModalComponent.html":{}}}],["fals",{"_index":362,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/HistoryService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/LoaderComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"modules/NotificationsModule.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["false).then((act",{"_index":3576,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["fancier",{"_index":4317,"title":{},"body":{"components/ToggleComponent.html":{}}}],["fb",{"_index":2805,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["fcfdf32",{"_index":4915,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["fd41ccc",{"_index":4944,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["featur",{"_index":3232,"title":{},"body":{"components/NotificationsComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["fed2c52",{"_index":4898,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["fehler",{"_index":3226,"title":{},"body":{"components/NotificationsComponent.html":{},"components/PasswordResetComponent.html":{}}}],["ffffff",{"_index":3614,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["ffnungszeiten",{"_index":4819,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["field",{"_index":46,"title":{"classes/Field.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"components/OutputComponent.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceConfig.html":{},"classes/ResourceForm.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["field'",{"_index":1661,"title":{},"body":{"classes/Field.html":{}}}],["field('nam",{"_index":1685,"title":{},"body":{"classes/Field.html":{}}}],["field(this.properti",{"_index":2272,"title":{},"body":{"components/InputComponent.html":{}}}],["field.compon",{"_index":1443,"title":{},"body":{"components/DynamicRackComponent.html":{}}}],["field.creat",{"_index":1940,"title":{},"body":{"injectables/FormService.html":{}}}],["field.display(nam",{"_index":1693,"title":{},"body":{"classes/Field.html":{}}}],["field.edit",{"_index":1942,"title":{},"body":{"injectables/FormService.html":{}}}],["field.form",{"_index":1943,"title":{},"body":{"injectables/FormService.html":{}}}],["field.group(nam",{"_index":1694,"title":{},"body":{"classes/Field.html":{}}}],["field.hideinform",{"_index":4515,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["field.hideinlist",{"_index":2504,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["field.label",{"_index":2540,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["field.maxitems||10",{"_index":1386,"title":{},"body":{"components/DefaultOutputComponent.html":{}}}],["field.placehold",{"_index":1383,"title":{},"body":{"components/DefaultInputComponent.html":{}}}],["field.properti",{"_index":2541,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["field.readonli",{"_index":4800,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["field.requir",{"_index":1958,"title":{},"body":{"injectables/FormService.html":{}}}],["field.resolve({value:{name:'bobbi",{"_index":1691,"title":{},"body":{"classes/Field.html":{}}}],["field.sort(nam",{"_index":1696,"title":{},"body":{"classes/Field.html":{}}}],["field.t",{"_index":3887,"title":{},"body":{"interfaces/SdkField.html":{}}}],["field.title).filter(field",{"_index":3640,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["field.typ",{"_index":423,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{}}}],["field.valid",{"_index":1935,"title":{},"body":{"injectables/FormService.html":{}}}],["field.validate(control.valu",{"_index":1961,"title":{},"body":{"injectables/FormService.html":{}}}],["field[0",{"_index":3641,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["fieldconfig",{"_index":1716,"title":{"interfaces/FieldConfig.html":{}},"body":{"interfaces/FieldConfig.html":{},"interfaces/ItemConfig.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"injectables/TypeConfigService.html":{}}}],["fieldconfig[field].inputview",{"_index":3136,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["fieldconfig[field].typ",{"_index":3134,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["fieldconfig[key",{"_index":3179,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["fieldconfig[properti",{"_index":3148,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["fieldconfigproperti",{"_index":1626,"title":{},"body":{"classes/Field.html":{},"interfaces/FieldConfig.html":{},"components/InputComponent.html":{},"interfaces/ModelConfig.html":{},"interfaces/ModelConfiguration.html":{},"classes/ResourceForm.html":{},"injectables/TypeConfigService.html":{}}}],["fieldfilt",{"_index":530,"title":{},"body":{"components/AssetListComponent.html":{}}}],["fieldhost",{"_index":1449,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["fieldhostdirect",{"_index":1457,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["fieldlabel",{"_index":2513,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["fieldlabel(field",{"_index":2524,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["fieldnam",{"_index":1721,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["fields.filter((field",{"_index":4513,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["fields.pip",{"_index":1894,"title":{},"body":{"modules/FormModule.html":{}}}],["fields.pipe.t",{"_index":4507,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["fields.pipe.ts:10",{"_index":4512,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["fields.pipe.ts:12",{"_index":4510,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["fieldvalid",{"_index":2843,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["fieldvalidators.email",{"_index":2849,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["fieldvalidators.uuid",{"_index":4046,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["file",{"_index":9,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["file.servic",{"_index":569,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"modules/FilesModule.html":{},"components/ImageSelectPopComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["fileinput",{"_index":4390,"title":{},"body":{"components/UploadComponent.html":{}}}],["filelist",{"_index":1773,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["filenam",{"_index":1722,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["fileopt",{"_index":1029,"title":{"interfaces/FileOptions.html":{}},"body":{"interfaces/CrudConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["files.length",{"_index":1777,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["files.map(f",{"_index":1779,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["files.split('\\n').map(url",{"_index":4434,"title":{},"body":{"components/UploadComponent.html":{}}}],["files/file.servic",{"_index":1068,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["files/files.modul",{"_index":1178,"title":{},"body":{"modules/DataModule.html":{}}}],["files[0].url",{"_index":1778,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["fileservic",{"_index":554,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["filesmodul",{"_index":1153,"title":{"modules/FilesModule.html":{}},"body":{"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules.html":{},"overview.html":{}}}],["filestoupload",{"_index":4391,"title":{},"body":{"components/UploadComponent.html":{}}}],["fill(0",{"_index":1326,"title":{},"body":{"interfaces/Day.html":{}}}],["filter",{"_index":492,"title":{},"body":{"components/AssetListComponent.html":{},"injectables/CrudService.html":{},"pipes/DatetimePipe.html":{},"classes/Field.html":{},"pipes/GroupPipe.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["filter((item",{"_index":4082,"title":{},"body":{"classes/Sorter.html":{}}}],["filter((valu",{"_index":3568,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["filter(field",{"_index":3133,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["filter(i",{"_index":3551,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["filter(properti",{"_index":524,"title":{},"body":{"components/AssetListComponent.html":{},"components/ListComponent.html":{}}}],["filter(rout",{"_index":2982,"title":{},"body":{"components/MenuComponent.html":{}}}],["filter(v",{"_index":3571,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["filter.model",{"_index":1106,"title":{},"body":{"injectables/CrudService.html":{}}}],["filter.rel",{"_index":1107,"title":{},"body":{"injectables/CrudService.html":{}}}],["filter[key",{"_index":3866,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["filterdropdownlist(listcompon",{"_index":3564,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["filteroper",{"_index":1627,"title":{},"body":{"classes/Field.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["filteropt",{"_index":1480,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["filterpopclass",{"_index":1628,"title":{},"body":{"classes/Field.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["find",{"_index":4131,"title":{},"body":{"injectables/SymbolService.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["finish",{"_index":672,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["fire",{"_index":446,"title":{},"body":{"directives/AssetDirective.html":{},"injectables/CrudService.html":{},"directives/EntryDirective.html":{},"interfaces/FileOptions.html":{},"components/LoginFormComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"injectables/ResourceService.html":{},"components/SignupFormComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["first",{"_index":1236,"title":{},"body":{"interfaces/Day.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["fit",{"_index":3799,"title":{},"body":{"classes/ResourceForm.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["fix",{"_index":2226,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["flag",{"_index":511,"title":{},"body":{"components/AssetListComponent.html":{},"classes/Collection.html":{},"interfaces/Day.html":{},"components/ListComponent.html":{},"injectables/NotificationsService.html":{},"classes/Sorter.html":{},"components/UploadComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["flexibl",{"_index":2394,"title":{},"body":{"components/ListComponent.html":{}}}],["flip",{"_index":1413,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/LoginFormComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{}}}],["flow",{"_index":4743,"title":{},"body":{"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["fn",{"_index":94,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["focu",{"_index":1854,"title":{"interfaces/Focus.html":{}},"body":{"interfaces/Focus.html":{},"components/ListComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["focus",{"_index":2355,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/UploadSelectComponent.html":{}}}],["focus/focus.direct",{"_index":4502,"title":{},"body":{"modules/UtilityModule.html":{}}}],["focusdirect",{"_index":312,"title":{"directives/FocusDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["focusev",{"_index":1856,"title":{},"body":{"interfaces/Focus.html":{},"components/UploadSelectComponent.html":{}}}],["focusfirst",{"_index":2345,"title":{},"body":{"components/ListComponent.html":{}}}],["focusitem",{"_index":2343,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{}}}],["focusnext",{"_index":2346,"title":{},"body":{"components/ListComponent.html":{}}}],["focusprev",{"_index":2347,"title":{},"body":{"components/ListComponent.html":{}}}],["focuss",{"_index":2565,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["folder",{"_index":4577,"title":{},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["follow",{"_index":2110,"title":{},"body":{"components/IconComponent.html":{},"modules/SymbolModule.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["font",{"_index":4096,"title":{},"body":{"interfaces/Symbol.html":{}}}],["footer",{"_index":3021,"title":{},"body":{"components/ModalComponent.html":{},"components/PopComponent.html":{}}}],["forcegroup",{"_index":1745,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["forcereload",{"_index":1824,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["foreach",{"_index":3149,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["foreach((field",{"_index":1946,"title":{},"body":{"injectables/FormService.html":{}}}],["forenviron",{"_index":1159,"title":{},"body":{"modules/DataModule.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["forenvironment(environ",{"_index":1160,"title":{},"body":{"modules/DataModule.html":{}}}],["forev",{"_index":3200,"title":{},"body":{"classes/Notification.html":{}}}],["form",{"_index":117,"title":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListHeaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"injectables/ModelConfigService.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceConfig.html":{},"classes/ResourceForm.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["form'",{"_index":2262,"title":{},"body":{"components/InputComponent.html":{}}}],["form'},{'nam",{"_index":217,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["form.compon",{"_index":1174,"title":{},"body":{"modules/DataModule.html":{},"modules/FormModule.html":{},"modules/ResourceModule.html":{},"components/SignupFormComponent.html":{},"modules/UtilityModule.html":{}}}],["form.component'new",{"_index":4642,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["form.component.html",{"_index":2791,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["form.component.t",{"_index":2788,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["form.component.ts:17",{"_index":4018,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["form.component.ts:18",{"_index":2835,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:19",{"_index":4021,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["form.component.ts:20",{"_index":2838,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:21",{"_index":4019,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["form.component.ts:22",{"_index":2834,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:23",{"_index":4034,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["form.component.ts:24",{"_index":2825,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:26",{"_index":2823,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:28",{"_index":2816,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["form.component.ts:30",{"_index":2822,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:32",{"_index":2812,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:34",{"_index":2814,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:36",{"_index":2818,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:37",{"_index":4032,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["form.component.ts:38",{"_index":2820,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:40",{"_index":2809,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:42",{"_index":2807,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:44",{"_index":2804,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:47",{"_index":2839,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:51",{"_index":2830,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:59",{"_index":2833,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:67",{"_index":2827,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:72",{"_index":2831,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.creat",{"_index":4948,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["form.display('amazement_factor",{"_index":4805,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["form.fields.filter((field",{"_index":1944,"title":{},"body":{"injectables/FormService.html":{}}}],["form.form",{"_index":1962,"title":{},"body":{"injectables/FormService.html":{}}}],["form.form.display",{"_index":1965,"title":{},"body":{"injectables/FormService.html":{}}}],["form.form.isedit",{"_index":1964,"title":{},"body":{"injectables/FormService.html":{}}}],["form.getbodi",{"_index":1941,"title":{},"body":{"injectables/FormService.html":{}}}],["form.getvalue('keepratio",{"_index":2230,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.getvalue('ratio",{"_index":2229,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.group.controls.alt.setvalue(titl",{"_index":2217,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.group.controls.height.setvalue(math.round(valu",{"_index":2231,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.group.controls.ratio.setvalue(ratio",{"_index":2218,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.group.controls.width.setvalue(math.round(valu",{"_index":2233,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.group.controls.width.setvalue(width",{"_index":2216,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.servic",{"_index":1893,"title":{},"body":{"modules/FormModule.html":{},"pipes/VisibleFieldsPipe.html":{}}}],["form.t",{"_index":3791,"title":{},"body":{"classes/ResourceForm.html":{}}}],["form.ts:11",{"_index":3800,"title":{},"body":{"classes/ResourceForm.html":{}}}],["form.ts:12",{"_index":3801,"title":{},"body":{"classes/ResourceForm.html":{}}}],["form.ts:13",{"_index":3802,"title":{},"body":{"classes/ResourceForm.html":{}}}],["form.ts:17",{"_index":3806,"title":{},"body":{"classes/ResourceForm.html":{}}}],["form.ts:8",{"_index":3798,"title":{},"body":{"classes/ResourceForm.html":{}}}],["form/admin",{"_index":398,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"modules/DataModule.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{}}}],["form/default",{"_index":1171,"title":{},"body":{"modules/DataModule.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{},"injectables/TypeConfigService.html":{}}}],["form/entri",{"_index":1173,"title":{},"body":{"modules/DataModule.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["form/form.compon",{"_index":1939,"title":{},"body":{"injectables/FormService.html":{},"components/ListHeaderComponent.html":{}}}],["form/form.modul",{"_index":2582,"title":{},"body":{"modules/ListModule.html":{},"modules/UiModule.html":{}}}],["form/login",{"_index":2787,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{},"modules/UtilityModule.html":{}}}],["form/resourc",{"_index":3790,"title":{},"body":{"classes/ResourceForm.html":{},"modules/ResourceModule.html":{}}}],["form/signup",{"_index":4015,"title":{},"body":{"components/SignupFormComponent.html":{},"modules/UtilityModule.html":{}}}],["form:12",{"_index":3804,"title":{},"body":{"classes/ResourceForm.html":{}}}],["form:14",{"_index":3803,"title":{},"body":{"classes/ResourceForm.html":{}}}],["form:32",{"_index":3809,"title":{},"body":{"classes/ResourceForm.html":{}}}],["form:50",{"_index":3811,"title":{},"body":{"classes/ResourceForm.html":{}}}],["form:55",{"_index":3813,"title":{},"body":{"classes/ResourceForm.html":{}}}],["form:71",{"_index":3815,"title":{},"body":{"classes/ResourceForm.html":{}}}],["form:76",{"_index":3814,"title":{},"body":{"classes/ResourceForm.html":{}}}],["format",{"_index":787,"title":{},"body":{"modules/CalendarModule.html":{},"interfaces/Day.html":{},"injectables/TypeConfigService.html":{}}}],["formats.d",{"_index":805,"title":{},"body":{"modules/CalendarModule.html":{}}}],["formats.month",{"_index":807,"title":{},"body":{"modules/CalendarModule.html":{}}}],["formats.tim",{"_index":806,"title":{},"body":{"modules/CalendarModule.html":{}}}],["formattedtext",{"_index":4345,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["formbuild",{"_index":2803,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["formcompon",{"_index":225,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["formcomponent#input",{"_index":2263,"title":{},"body":{"components/InputComponent.html":{}}}],["formconfig",{"_index":1869,"title":{"interfaces/FormConfig.html":{}},"body":{"interfaces/FormConfig.html":{},"components/ImageSelectPopComponent.html":{},"classes/ResourceForm.html":{}}}],["formcontrol",{"_index":127,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/LocationPickerComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["formcontrol(form.getvalue(field.properti",{"_index":1949,"title":{},"body":{"injectables/FormService.html":{}}}],["formdata",{"_index":1771,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["formdata.append(key",{"_index":1774,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["formgroup",{"_index":132,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["formgroup(control",{"_index":1954,"title":{},"body":{"injectables/FormService.html":{}}}],["formmodul",{"_index":1877,"title":{"modules/FormModule.html":{}},"body":{"modules/FormModule.html":{},"modules/ListModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["formmoduleconfig",{"_index":1903,"title":{},"body":{"modules/FormModule.html":{}}}],["formservic",{"_index":1890,"title":{"injectables/FormService.html":{}},"body":{"modules/FormModule.html":{},"injectables/FormService.html":{},"pipes/VisibleFieldsPipe.html":{},"overview.html":{}}}],["formsmodul",{"_index":631,"title":{},"body":{"modules/AuthModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/ListModule.html":{},"modules/ResourceModule.html":{},"modules/UtilityModule.html":{}}}],["forroot",{"_index":783,"title":{},"body":{"modules/CalendarModule.html":{},"modules/LocationModule.html":{}}}],["forroot(format",{"_index":784,"title":{},"body":{"modules/CalendarModule.html":{}}}],["forroot(undefin",{"_index":2691,"title":{},"body":{"modules/LocationModule.html":{}}}],["forwardref",{"_index":28,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"modules/SelectModule.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["found",{"_index":583,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/ListConfigService.html":{},"components/LoaderComponent.html":{},"injectables/ResourceConfig.html":{},"classes/Sorter.html":{},"components/UploadComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme/style-readme.html":{}}}],["framework",{"_index":4840,"title":{},"body":{"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["freedom",{"_index":4795,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["fresh",{"_index":4583,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["from(this.maploader.load",{"_index":2010,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["fromsearch",{"_index":2719,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["fruit",{"_index":2397,"title":{},"body":{"components/ListComponent.html":{},"additional-documentation/readme/data-readme.html":{}}}],["fs",{"_index":4683,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["full",{"_index":2967,"title":{},"body":{"components/MenuComponent.html":{}}}],["fun",{"_index":4728,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["function",{"_index":531,"title":{"miscellaneous/functions.html":{}},"body":{"components/AssetListComponent.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ResourceCrudComponent.html":{},"classes/Sorter.html":{},"injectables/TypeConfigService.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["fundament",{"_index":811,"title":{},"body":{"classes/Collection.html":{}}}],["further",{"_index":3198,"title":{},"body":{"classes/Notification.html":{},"components/ResourceCrudComponent.html":{},"interfaces/SdkField.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["futur",{"_index":1118,"title":{},"body":{"injectables/CrudService.html":{}}}],["g",{"_index":4690,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["g.name",{"_index":3754,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["gener",{"_index":515,"title":{},"body":{"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"components/InputErrorsComponent.html":{},"injectables/ModelConfigService.html":{},"components/ResourceCrudComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["generateconfig",{"_index":3073,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["generateconfig(model",{"_index":3079,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["geo",{"_index":2722,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["geocod",{"_index":1969,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["geocode.servic",{"_index":2694,"title":{},"body":{"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{}}}],["geocodelatlng",{"_index":1971,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["geocodelatlng(geocod",{"_index":1982,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["geocoder.geocod",{"_index":2015,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["geocodeservic",{"_index":1966,"title":{"injectables/GeocodeService.html":{}},"body":{"injectables/GeocodeService.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"overview.html":{}}}],["get",{"_index":3194,"title":{"changelog.html":{},"index.html":{}},"body":{"classes/Notification.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{}}}],["get(nam",{"_index":4129,"title":{},"body":{"injectables/SymbolService.html":{}}}],["get(properti",{"_index":3088,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["get(relationnam",{"_index":3598,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["get(typ",{"_index":4339,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["getaccount",{"_index":662,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["getaccount(api",{"_index":677,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["getalgorithm",{"_index":4059,"title":{},"body":{"classes/Sorter.html":{}}}],["getalgorithm(item",{"_index":4064,"title":{},"body":{"classes/Sorter.html":{}}}],["getallowedmodelmethod",{"_index":663,"title":{},"body":{"injectables/AuthService.html":{}}}],["getallowedmodelmethods(model",{"_index":679,"title":{},"body":{"injectables/AuthService.html":{}}}],["getallowedresourcemethod",{"_index":664,"title":{},"body":{"injectables/AuthService.html":{}}}],["getallowedresourcemethods(rel",{"_index":683,"title":{},"body":{"injectables/AuthService.html":{}}}],["getapi",{"_index":665,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["getapi(email",{"_index":687,"title":{},"body":{"injectables/AuthService.html":{}}}],["getassetconfig(assetgroupid",{"_index":1755,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["getcolor",{"_index":2927,"title":{},"body":{"components/MenuComponent.html":{}}}],["getcolor(level",{"_index":2958,"title":{},"body":{"components/MenuComponent.html":{}}}],["getcolumn",{"_index":1634,"title":{},"body":{"classes/Field.html":{}}}],["getconfig",{"_index":3606,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["getdaycolor(_mo",{"_index":1306,"title":{},"body":{"interfaces/Day.html":{}}}],["getdayheat(_mo",{"_index":1309,"title":{},"body":{"interfaces/Day.html":{}}}],["geterror",{"_index":2303,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["getfield",{"_index":3793,"title":{},"body":{"classes/ResourceForm.html":{}}}],["getfield(properti",{"_index":3810,"title":{},"body":{"classes/ResourceForm.html":{}}}],["getfieldconfig",{"_index":3074,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getfieldconfig(model",{"_index":3092,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getformdata(fil",{"_index":1772,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["getformlabel",{"_index":1912,"title":{},"body":{"injectables/FormService.html":{}}}],["getformlabel(form",{"_index":1921,"title":{},"body":{"injectables/FormService.html":{}}}],["getgroup",{"_index":1913,"title":{},"body":{"injectables/FormService.html":{}}}],["getgroup(form",{"_index":1924,"title":{},"body":{"injectables/FormService.html":{}}}],["gethead",{"_index":1548,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["getheader(entrylist",{"_index":1570,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["getitemcolor",{"_index":2928,"title":{},"body":{"components/MenuComponent.html":{}}}],["getitemcolor(item",{"_index":2960,"title":{},"body":{"components/MenuComponent.html":{}}}],["getlevel",{"_index":2929,"title":{},"body":{"components/MenuComponent.html":{}}}],["getlevel(level",{"_index":2962,"title":{},"body":{"components/MenuComponent.html":{}}}],["getlightmodel",{"_index":3075,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getlightmodel(model",{"_index":3099,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getminlevel",{"_index":3076,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getminlevel(model",{"_index":3102,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getmonth(day",{"_index":1321,"title":{},"body":{"interfaces/Day.html":{}}}],["getnearestaddress",{"_index":1972,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["getnearestaddress(loc",{"_index":1987,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["getpag",{"_index":3320,"title":{},"body":{"classes/Pagination.html":{}}}],["getpath",{"_index":395,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/MenuComponent.html":{}}}],["getpath(item",{"_index":2965,"title":{},"body":{"components/MenuComponent.html":{}}}],["getpermiss",{"_index":3278,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["getplacehold",{"_index":1635,"title":{},"body":{"classes/Field.html":{}}}],["getresourcelistactions(listresourc",{"_index":3536,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["getroot",{"_index":3936,"title":{},"body":{"injectables/SdkService.html":{}}}],["getschema",{"_index":3904,"title":{},"body":{"injectables/SdkService.html":{}}}],["getschema(model",{"_index":3911,"title":{},"body":{"injectables/SdkService.html":{}}}],["getstoragekey",{"_index":2468,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["getstoragekey(list",{"_index":2473,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["getsystemfield",{"_index":3077,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getter",{"_index":900,"title":{},"body":{"classes/Config.html":{},"injectables/SdkService.html":{}}}],["getvalid",{"_index":1914,"title":{},"body":{"injectables/FormService.html":{}}}],["getvalidators(field",{"_index":1926,"title":{},"body":{"injectables/FormService.html":{}}}],["getvalu",{"_index":3794,"title":{},"body":{"classes/ResourceForm.html":{}}}],["getvalue(properti",{"_index":3812,"title":{},"body":{"classes/ResourceForm.html":{}}}],["ghost",{"_index":4803,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["give",{"_index":3848,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["given",{"_index":80,"title":{},"body":{"components/AceComponent.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LoginFormComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["global",{"_index":2610,"title":{},"body":{"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["globalload",{"_index":2615,"title":{},"body":{"components/LoaderComponent.html":{}}}],["glyph",{"_index":4097,"title":{},"body":{"interfaces/Symbol.html":{}}}],["go",{"_index":4615,"title":{},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["googl",{"_index":1968,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/location-readme.html":{}}}],["google.maps.geocod",{"_index":2022,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["google.maps.places.autocomplete(el",{"_index":1996,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["googlemap",{"_index":2751,"title":{},"body":{"components/LocationSearchComponent.html":{},"dependencies.html":{}}}],["googlemaps.apikey",{"_index":2705,"title":{},"body":{"modules/LocationModule.html":{}}}],["grant",{"_index":3285,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["group",{"_index":47,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"classes/Field.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"components/SignupFormComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["group.addcontrol(field.properti",{"_index":1957,"title":{},"body":{"injectables/FormService.html":{}}}],["group.map(g",{"_index":3753,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["group.nam",{"_index":3666,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["group.pip",{"_index":2584,"title":{},"body":{"modules/ListModule.html":{}}}],["group.valu",{"_index":548,"title":{},"body":{"components/AssetListComponent.html":{}}}],["groupchang",{"_index":559,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["groupdat",{"_index":4333,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["groupid",{"_index":3752,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["grouppip",{"_index":1215,"title":{"pipes/GroupPipe.html":{}},"body":{"pipes/DatetimePipe.html":{},"pipes/GroupPipe.html":{},"modules/ListModule.html":{},"overview.html":{}}}],["grow",{"_index":1476,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["größer",{"_index":4757,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["guard",{"_index":577,"title":{"guards/AuthGuard.html":{}},"body":{"guards/AuthGuard.html":{},"overview.html":{}}}],["guard.servic",{"_index":635,"title":{},"body":{"modules/AuthModule.html":{}}}],["guard.service.t",{"_index":580,"title":{},"body":{"guards/AuthGuard.html":{}}}],["guard.service.ts:12",{"_index":592,"title":{},"body":{"guards/AuthGuard.html":{}}}],["guard.service.ts:17",{"_index":593,"title":{},"body":{"guards/AuthGuard.html":{}}}],["guid",{"_index":4570,"title":{"additional-documentation/angular-7-upgrade-guide.html":{}},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{}}}],["guidelin",{"_index":4862,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["h",{"_index":2403,"title":{},"body":{"components/ListComponent.html":{}}}],["haben",{"_index":3455,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["hack",{"_index":4908,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["handi",{"_index":4780,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["handl",{"_index":1920,"title":{},"body":{"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"components/MenuComponent.html":{},"components/NotificationsComponent.html":{},"components/SignupComponent.html":{},"classes/Sorter.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["handler",{"_index":2370,"title":{},"body":{"components/ListComponent.html":{}}}],["happen",{"_index":1559,"title":{},"body":{"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["hard",{"_index":4807,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["has(item",{"_index":841,"title":{},"body":{"classes/Collection.html":{}}}],["hasactivepath",{"_index":2930,"title":{},"body":{"components/MenuComponent.html":{}}}],["hasactivepath(item",{"_index":2968,"title":{},"body":{"components/MenuComponent.html":{}}}],["hasal",{"_index":813,"title":{},"body":{"classes/Collection.html":{}}}],["hasall(item",{"_index":844,"title":{},"body":{"classes/Collection.html":{}}}],["hasentri",{"_index":3643,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["hasfocu",{"_index":2550,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["hasfocus(item",{"_index":2563,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["hasmethod",{"_index":928,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["hasmethod(method",{"_index":951,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["haspassword",{"_index":3657,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["haspendingemail",{"_index":3659,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["hassl",{"_index":4850,"title":{},"body":{"additional-documentation/readme/style-readme.html":{}}}],["have",{"_index":402,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/LoaderService.html":{}}}],["header",{"_index":1263,"title":{},"body":{"interfaces/Day.html":{},"classes/Field.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/TabsComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["header'},{'nam",{"_index":238,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["header.compon",{"_index":2585,"title":{},"body":{"modules/ListModule.html":{}}}],["header.component.html",{"_index":2510,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.t",{"_index":2509,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:17",{"_index":2517,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:19",{"_index":2518,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:21",{"_index":2535,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:23",{"_index":2516,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:25",{"_index":2532,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:29",{"_index":2522,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:34",{"_index":2520,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:39",{"_index":2527,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:44",{"_index":2525,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:52",{"_index":2529,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header/items/pagin",{"_index":4767,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["header/list",{"_index":2508,"title":{},"body":{"components/ListHeaderComponent.html":{},"modules/ListModule.html":{}}}],["headlin",{"_index":3204,"title":{},"body":{"classes/Notification.html":{}}}],["heat",{"_index":1237,"title":{},"body":{"interfaces/Day.html":{}}}],["heatmap",{"_index":1251,"title":{},"body":{"interfaces/Day.html":{}}}],["heatmap'},{'nam",{"_index":227,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["heatmap/heatmap.compon",{"_index":790,"title":{},"body":{"modules/CalendarModule.html":{}}}],["heatmapcompon",{"_index":226,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["height",{"_index":175,"title":{},"body":{"components/AceComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/LocationMapComponent.html":{}}}],["hellip",{"_index":1387,"title":{},"body":{"components/DefaultOutputComponent.html":{}}}],["help",{"_index":2259,"title":{},"body":{"components/InputComponent.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["helper",{"_index":1483,"title":{},"body":{"directives/EntriesDirective.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{}}}],["here",{"_index":2612,"title":{},"body":{"components/LoaderComponent.html":{},"components/MenuComponent.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"modules/SymbolModule.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["hexcolor",{"_index":3586,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["hh:mm",{"_index":797,"title":{},"body":{"modules/CalendarModule.html":{}}}],["hidden",{"_index":1629,"title":{},"body":{"classes/Field.html":{},"components/LoaderComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"interfaces/WithNotifications.html":{}}}],["hide",{"_index":1005,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ListConfigService.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"classes/PaginationConfig.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["hideassetgroupselect",{"_index":1030,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["hidefirstlast",{"_index":3423,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["hideinform",{"_index":2221,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"injectables/ModelConfigService.html":{}}}],["hideinlist",{"_index":3105,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["hideonclickoutsid",{"_index":1550,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["hideoncr",{"_index":3155,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["hideonedit",{"_index":3156,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["hidepag",{"_index":3424,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["hidepagin",{"_index":1600,"title":{},"body":{"components/EntryListPopComponent.html":{},"interfaces/ListConfig.html":{},"components/ResourceListPopComponent.html":{}}}],["hidesubmitbutton",{"_index":1873,"title":{},"body":{"interfaces/FormConfig.html":{}}}],["higher",{"_index":2404,"title":{},"body":{"components/ListComponent.html":{}}}],["highest",{"_index":4845,"title":{},"body":{"additional-documentation/readme/core-readme.html":{}}}],["histori",{"_index":2056,"title":{},"body":{"injectables/HistoryService.html":{},"interfaces/WithNotifications.html":{}}}],["historyservic",{"_index":1156,"title":{"injectables/HistoryService.html":{}},"body":{"modules/DataModule.html":{},"injectables/HistoryService.html":{},"overview.html":{}}}],["hold",{"_index":400,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/InputComponent.html":{},"components/ListHeaderComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"injectables/PopService.html":{},"components/TabsComponent.html":{},"injectables/TypeConfigService.html":{}}}],["hook",{"_index":3644,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["hook.method",{"_index":3646,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["host",{"_index":1409,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"directives/SlotHostDirective.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["host.direct",{"_index":1458,"title":{},"body":{"components/DynamicSlotComponent.html":{},"modules/IoModule.html":{}}}],["host.directive.t",{"_index":4049,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["host.directive.ts:11",{"_index":4054,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["host.directive.ts:9",{"_index":4052,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["hostbind",{"_index":1395,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["hostbinding('class",{"_index":1596,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["hostbinding('class.i",{"_index":1418,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/PopComponent.html":{}}}],["hostlisten",{"_index":1397,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["hostlistener('document:click",{"_index":3491,"title":{},"body":{"components/PopComponent.html":{}}}],["hostlistener('dragleav",{"_index":1429,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["hostlistener('dragov",{"_index":1419,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["hostlistener('drop",{"_index":1424,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["hour",{"_index":4823,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["hours.component.html",{"_index":4824,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["hours.component.scss",{"_index":4825,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["hover",{"_index":2924,"title":{},"body":{"components/MenuComponent.html":{}}}],["hoverdelay",{"_index":2935,"title":{},"body":{"components/MenuComponent.html":{}}}],["hoveritem",{"_index":2931,"title":{},"body":{"components/MenuComponent.html":{}}}],["hoveritem(item",{"_index":2971,"title":{},"body":{"components/MenuComponent.html":{}}}],["hoverout",{"_index":2932,"title":{},"body":{"components/MenuComponent.html":{}}}],["html",{"_index":178,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"injectables/SymbolPipe.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["http",{"_index":4657,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["http://localhost:4200",{"_index":4603,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["https://angular.io/guide/dynam",{"_index":4050,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["https://blog.thoughtram.io/angular/2016/07/27/custom",{"_index":4828,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["https://components.entrecode.de/assets/asset?e=1",{"_index":429,"title":{},"body":{"directives/AssetDirective.html":{}}}],["https://components.entrecode.de/auth/auth?e=1",{"_index":2759,"title":{},"body":{"components/LoginComponent.html":{}}}],["https://components.entrecode.de/auth/password",{"_index":3437,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["https://components.entrecode.de/auth/signup?e=1",{"_index":3991,"title":{},"body":{"components/SignupComponent.html":{}}}],["https://components.entrecode.de/entries/crud?e=1",{"_index":921,"title":{},"body":{"components/CrudComponent.html":{}}}],["https://components.entrecode.de/entries/entries?e=1",{"_index":1466,"title":{},"body":{"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{}}}],["https://components.entrecode.de/misc/ace?e=1",{"_index":18,"title":{},"body":{"components/AceComponent.html":{}}}],["https://components.entrecode.de/misc/medium",{"_index":2875,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["https://components.entrecode.de/misc/tinymce?e=1",{"_index":4230,"title":{},"body":{"components/TinymceComponent.html":{}}}],["https://components.entrecode.de/ui/datetime?e=1",{"_index":1187,"title":{},"body":{"components/DatetimeComponent.html":{},"interfaces/Day.html":{}}}],["https://components.entrecode.de/ui/icons?e=1",{"_index":2082,"title":{},"body":{"components/IconComponent.html":{},"injectables/IconService.html":{}}}],["https://components.entrecode.de/ui/list/basic?e=1",{"_index":2338,"title":{},"body":{"components/ListComponent.html":{}}}],["https://components.entrecode.de/ui/list/transforms?e=1",{"_index":2339,"title":{},"body":{"components/ListComponent.html":{}}}],["https://components.entrecode.de/ui/loader?e=1",{"_index":2595,"title":{},"body":{"components/LoaderComponent.html":{}}}],["https://components.entrecode.de/ui/login?e=1",{"_index":2790,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["https://components.entrecode.de/ui/modal?e=1",{"_index":3015,"title":{},"body":{"components/ModalComponent.html":{}}}],["https://components.entrecode.de/ui/notifications?e=1",{"_index":3210,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["https://components.entrecode.de/ui/pop?e=1",{"_index":3472,"title":{},"body":{"components/PopComponent.html":{}}}],["https://components.entrecode.de/ui/symbols?e=1",{"_index":4126,"title":{},"body":{"injectables/SymbolService.html":{}}}],["https://components.entrecode.de/ui/tabs?e=1",{"_index":4190,"title":{},"body":{"components/TabsComponent.html":{}}}],["https://doc.entrecode.de/data_manager/#field",{"_index":3888,"title":{},"body":{"interfaces/SdkField.html":{}}}],["https://doc.entrecode.de/en/develop/resources/dm",{"_index":3699,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["https://entrecode.de/schema/dm",{"_index":3710,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["https://entrecode.github.io/ec.sdk/#api",{"_index":503,"title":{},"body":{"components/AssetListComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["https://entrecode.github.io/ec.sdk/#environ",{"_index":656,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["https://github.com/ajaxorg/ac",{"_index":150,"title":{},"body":{"components/AceComponent.html":{}}}],["https://github.com/angular/angular/commit/333a708bb632d4258ecb5fd4a0e86229fe9d26e4",{"_index":1953,"title":{},"body":{"injectables/FormService.html":{}}}],["https://github.com/auth0/angular2",{"_index":641,"title":{},"body":{"modules/AuthModule.html":{}}}],["https://github.com/ng",{"_index":4151,"title":{},"body":{"injectables/SymbolService.html":{}}}],["https://localhost:4200",{"_index":4731,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["https://localhost:4200/muffin",{"_index":4742,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["https://medium.com/claritydesignsystem/ng",{"_index":3016,"title":{},"body":{"components/ModalComponent.html":{}}}],["human",{"_index":1680,"title":{},"body":{"classes/Field.html":{},"interfaces/ItemConfig.html":{}}}],["i+1",{"_index":3411,"title":{},"body":{"components/PaginationComponent.html":{}}}],["i.getbodi",{"_index":3550,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["i.id",{"_index":3552,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["icon",{"_index":1630,"title":{},"body":{"classes/Field.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["icon'},{'nam",{"_index":229,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["icon.compon",{"_index":2119,"title":{},"body":{"modules/IconModule.html":{}}}],["icon.component.html",{"_index":2085,"title":{},"body":{"components/IconComponent.html":{}}}],["icon.cont",{"_index":2113,"title":{},"body":{"components/IconComponent.html":{}}}],["icon.servic",{"_index":2104,"title":{},"body":{"components/IconComponent.html":{},"modules/IconModule.html":{}}}],["icon/icon.modul",{"_index":1899,"title":{},"body":{"modules/FormModule.html":{},"modules/ListModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/UiModule.html":{}}}],["iconcompon",{"_index":228,"title":{"components/IconComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["iconmodul",{"_index":1887,"title":{"modules/IconModule.html":{}},"body":{"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/ListModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["iconservic",{"_index":2087,"title":{"injectables/IconService.html":{}},"body":{"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"overview.html":{}}}],["id",{"_index":341,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"injectables/CrudService.html":{},"directives/EntryDirective.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["idea",{"_index":2393,"title":{},"body":{"components/ListComponent.html":{}}}],["identifi",{"_index":355,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"injectables/HistoryService.html":{},"interfaces/ItemConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"modules/SymbolModule.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["identifierpattern",{"_index":2325,"title":{},"body":{"interfaces/ItemConfig.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["ids.push(asset",{"_index":1807,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["if(body.amazement_factor",{"_index":4774,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["if(valu",{"_index":4769,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["if(value===10",{"_index":4768,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["ifram",{"_index":180,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"components/ListComponent.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{}}}],["ignor",{"_index":1727,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/ListConfig.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["ignoredupl",{"_index":1723,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["imag",{"_index":231,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["image/image.direct",{"_index":1849,"title":{},"body":{"modules/FilesModule.html":{}}}],["imagedirect",{"_index":314,"title":{"directives/ImageDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["imageform",{"_index":2166,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["imageload",{"_index":2167,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["images",{"_index":3704,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["imageselectpopcompon",{"_index":230,"title":{"components/ImageSelectPopComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["img",{"_index":315,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["img'",{"_index":2124,"title":{},"body":{"directives/ImageDirective.html":{}}}],["immedi",{"_index":441,"title":{},"body":{"directives/AssetDirective.html":{},"interfaces/CrudConfig.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/PopComponent.html":{}}}],["immut",{"_index":1094,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["immuta",{"_index":3597,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["implement",{"_index":16,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"directives/FocusDirective.html":{},"pipes/GroupPipe.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"interfaces/SdkField.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"injectables/SymbolPipe.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["import",{"_index":65,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{}}}],["impressum",{"_index":4616,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["includ",{"_index":1729,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/IconService.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"components/SignupComponent.html":{},"modules/SymbolModule.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["includeassetidinpath",{"_index":1724,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["incom",{"_index":4325,"title":{},"body":{"components/ToggleComponent.html":{}}}],["increment",{"_index":4835,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["index",{"_index":37,"title":{"index.html":{}},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["index(item",{"_index":847,"title":{},"body":{"classes/Collection.html":{}}}],["index.html",{"_index":2096,"title":{},"body":{"components/IconComponent.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["indic",{"_index":1726,"title":{},"body":{"interfaces/FileOptions.html":{},"components/LoaderComponent.html":{},"interfaces/Upload.html":{}}}],["info",{"_index":2,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["inform",{"_index":2531,"title":{},"body":{"components/ListHeaderComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["inhabit",{"_index":2330,"title":{},"body":{"interfaces/ItemConfig.html":{}}}],["inherit",{"_index":128,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/ModalComponent.html":{},"components/OutputComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["init",{"_index":50,"title":{},"body":{"components/AceComponent.html":{},"injectables/AuthService.html":{},"directives/EntriesDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["init(environ",{"_index":3915,"title":{},"body":{"injectables/SdkService.html":{}}}],["init(list",{"_index":2380,"title":{},"body":{"components/ListComponent.html":{}}}],["initfilterqueri",{"_index":493,"title":{},"body":{"components/AssetListComponent.html":{}}}],["initfilterquery(fieldfilt",{"_index":527,"title":{},"body":{"components/AssetListComponent.html":{}}}],["initi",{"_index":124,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"injectables/FormService.html":{},"components/LoginFormComponent.html":{},"components/MenuComponent.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{}}}],["initmethod",{"_index":3757,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["initmod",{"_index":3019,"title":{},"body":{"components/ModalComponent.html":{}}}],["inittab",{"_index":4193,"title":{},"body":{"components/TabsComponent.html":{}}}],["inject",{"_index":436,"title":{"injectables/AuthService.html":{},"injectables/CrudService.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"injectables/IconService.html":{},"injectables/ListConfigService.html":{},"injectables/LoaderService.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"injectables/TypeConfigService.html":{}},"body":{"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/CrudService.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"injectables/IconService.html":{},"injectables/ListConfigService.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LoginFormComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"overview.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["inject('environ",{"_index":3929,"title":{},"body":{"injectables/SdkService.html":{}}}],["inject('moment.format.month",{"_index":1268,"title":{},"body":{"interfaces/Day.html":{}}}],["input",{"_index":40,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"directives/FocusDirective.html":{},"injectables/GeocodeService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["input'",{"_index":1197,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["input'},{'nam",{"_index":233,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["input('config",{"_index":2410,"title":{},"body":{"components/ListComponent.html":{}}}],["input.compon",{"_index":1170,"title":{},"body":{"modules/DataModule.html":{},"modules/FormModule.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["input.component.html",{"_index":410,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["input.component.scss",{"_index":4812,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["input.component.t",{"_index":399,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["input.component.ts:10",{"_index":1371,"title":{},"body":{"components/DefaultEntryInputComponent.html":{}}}],["input.component.ts:11",{"_index":1381,"title":{},"body":{"components/DefaultInputComponent.html":{}}}],["input.component.ts:13",{"_index":414,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultInputComponent.html":{}}}],["input.component.ts:14",{"_index":415,"title":{},"body":{"components/AdminEntryInputComponent.html":{}}}],["input.component.ts:15",{"_index":1382,"title":{},"body":{"components/DefaultInputComponent.html":{}}}],["input.component.ts:17",{"_index":1380,"title":{},"body":{"components/DefaultInputComponent.html":{}}}],["input.component.ts:9",{"_index":1370,"title":{},"body":{"components/DefaultEntryInputComponent.html":{}}}],["input/default",{"_index":1378,"title":{},"body":{"components/DefaultInputComponent.html":{},"modules/FormModule.html":{},"components/InputComponent.html":{}}}],["input/ec",{"_index":4793,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["input/input.compon",{"_index":2320,"title":{},"body":{"modules/IoModule.html":{}}}],["input/output",{"_index":4804,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["input[type=fil",{"_index":4419,"title":{},"body":{"components/UploadComponent.html":{}}}],["inputcompon",{"_index":115,"title":{"components/InputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["inputerrorscompon",{"_index":234,"title":{"components/InputErrorsComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["inputthi",{"_index":4810,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["inputview",{"_index":2202,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{}}}],["insid",{"_index":967,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/Day.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/ResourceCrudComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{}}}],["inspir",{"_index":3785,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["instal",{"_index":4586,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{}}}],["instanc",{"_index":77,"title":{},"body":{"components/AceComponent.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"pipes/DatetimePipe.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoginComponent.html":{},"components/MediumEditorComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"classes/ResourceForm.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["instanceof",{"_index":2155,"title":{},"body":{"directives/ImageDirective.html":{},"components/InputComponent.html":{},"components/TabsComponent.html":{}}}],["instead",{"_index":1112,"title":{},"body":{"injectables/CrudService.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["intend",{"_index":4249,"title":{},"body":{"components/TinymceComponent.html":{}}}],["interact",{"_index":3273,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["interfac",{"_index":337,"title":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"interfaces/FormConfig.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"interfaces/ModelConfig.html":{},"interfaces/ModelConfiguration.html":{},"interfaces/ResourceActionbarState.html":{},"interfaces/SdkField.html":{},"interfaces/Symbol.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{}},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"interfaces/ModelConfig.html":{},"interfaces/ModelConfiguration.html":{},"components/NotificationsComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"interfaces/Symbol.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"overview.html":{}}}],["interfer",{"_index":2630,"title":{},"body":{"components/LoaderComponent.html":{}}}],["intern",{"_index":1056,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["interpret",{"_index":1746,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["intial",{"_index":2261,"title":{},"body":{"components/InputComponent.html":{}}}],["intl.collator(undefin",{"_index":4072,"title":{},"body":{"classes/Sorter.html":{}}}],["invalid",{"_index":4354,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["invit",{"_index":718,"title":{},"body":{"injectables/AuthService.html":{},"injectables/ResourceConfig.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{}}}],["inviteplacehold",{"_index":4016,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["invok",{"_index":2329,"title":{},"body":{"interfaces/ItemConfig.html":{},"components/ResourceCrudComponent.html":{}}}],["io/io.modul",{"_index":1895,"title":{},"body":{"modules/FormModule.html":{},"modules/UtilityModule.html":{}}}],["iomodul",{"_index":1885,"title":{"modules/IoModule.html":{}},"body":{"modules/FormModule.html":{},"modules/IoModule.html":{},"modules/UtilityModule.html":{},"modules.html":{},"overview.html":{}}}],["isact",{"_index":2933,"title":{},"body":{"components/MenuComponent.html":{},"classes/Pagination.html":{}}}],["isactive(pag",{"_index":3336,"title":{},"body":{"classes/Pagination.html":{}}}],["isactive(path",{"_index":2974,"title":{},"body":{"components/MenuComponent.html":{}}}],["isclick",{"_index":2551,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["iscreat",{"_index":3795,"title":{},"body":{"classes/ResourceForm.html":{}}}],["isedit",{"_index":3796,"title":{},"body":{"classes/ResourceForm.html":{}}}],["isempti",{"_index":814,"title":{},"body":{"classes/Collection.html":{}}}],["isend",{"_index":1332,"title":{},"body":{"interfaces/Day.html":{}}}],["isfirst",{"_index":1468,"title":{},"body":{"directives/EntriesDirective.html":{},"classes/Pagination.html":{}}}],["isimmutableproperti",{"_index":1079,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{}}}],["isimmutableproperty(key",{"_index":1092,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["islast",{"_index":1469,"title":{},"body":{"directives/EntriesDirective.html":{},"classes/Pagination.html":{}}}],["isload",{"_index":2344,"title":{},"body":{"components/ListComponent.html":{}}}],["isn't",{"_index":4687,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["isnewasset(asset",{"_index":1761,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["isnewassetgroupid(assetgroupid",{"_index":1829,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["isoldassetgroupid",{"_index":2182,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["isoldassetgroupid(assetgroupid",{"_index":1827,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["isoutsid",{"_index":1549,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["isoutside(el",{"_index":1577,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["isselect",{"_index":2934,"title":{},"body":{"components/MenuComponent.html":{}}}],["isselected(_mo",{"_index":1359,"title":{},"body":{"interfaces/Day.html":{}}}],["isselected(item",{"_index":2976,"title":{},"body":{"components/MenuComponent.html":{}}}],["isstart",{"_index":1330,"title":{},"body":{"interfaces/Day.html":{}}}],["ist",{"_index":3220,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["isvis",{"_index":3386,"title":{},"body":{"components/PaginationComponent.html":{}}}],["isvisible(pag",{"_index":3389,"title":{},"body":{"components/PaginationComponent.html":{}}}],["item",{"_index":48,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"pipes/GroupPipe.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"components/LocationPickerComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MenuComponent.html":{},"injectables/ModelConfigService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"classes/Sorter.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/core-readme.html":{}}}],["item'",{"_index":2555,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["item(",{"_index":1830,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["item('a",{"_index":4847,"title":{},"body":{"additional-documentation/readme/core-readme.html":{}}}],["item(asset",{"_index":1788,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["item(assets[0",{"_index":1786,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["item(resourc",{"_index":3819,"title":{},"body":{"classes/ResourceForm.html":{}}}],["item.config.fields[property].form",{"_index":992,"title":{},"body":{"components/CrudComponent.html":{}}}],["item.config.fields[property].list",{"_index":991,"title":{},"body":{"components/CrudComponent.html":{}}}],["item.config.onsav",{"_index":3871,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["item.data?.titl",{"_index":3005,"title":{},"body":{"components/MenuComponent.html":{}}}],["item.deleteimmutableproperties(valu",{"_index":3873,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["item.getbodi",{"_index":549,"title":{},"body":{"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["item.getbody().act",{"_index":364,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["item.getbody().action(item",{"_index":365,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["item.getbody().children",{"_index":366,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["item.getbody().select",{"_index":361,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["item.group(properti",{"_index":2031,"title":{},"body":{"pipes/GroupPipe.html":{}}}],["item.id",{"_index":1001,"title":{},"body":{"components/CrudComponent.html":{},"directives/EntriesDirective.html":{}}}],["item.path",{"_index":3003,"title":{},"body":{"components/MenuComponent.html":{}}}],["item.resolve(field.properti",{"_index":4785,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["item.sort(properti",{"_index":4080,"title":{},"body":{"classes/Sorter.html":{}}}],["item/item",{"_index":1876,"title":{},"body":{"interfaces/FormConfig.html":{},"interfaces/ListConfig.html":{},"classes/Sorter.html":{}}}],["item?.display(field.properti",{"_index":1376,"title":{},"body":{"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{}}}],["item?.resolve(field.property)?.length",{"_index":1389,"title":{},"body":{"components/DefaultOutputComponent.html":{}}}],["itemconfig",{"_index":1872,"title":{"interfaces/ItemConfig.html":{}},"body":{"interfaces/FormConfig.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"classes/ResourceForm.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["items'},{'nam",{"_index":240,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["items.compon",{"_index":2586,"title":{},"body":{"modules/ListModule.html":{}}}],["items.component.html",{"_index":2549,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.t",{"_index":2546,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:14",{"_index":2559,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:16",{"_index":2560,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:18",{"_index":2558,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:20",{"_index":2561,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:22",{"_index":2554,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:24",{"_index":2553,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:27",{"_index":2568,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:29",{"_index":2567,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:45",{"_index":2564,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:49",{"_index":2566,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:54",{"_index":2562,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.filter((item",{"_index":2030,"title":{},"body":{"pipes/GroupPipe.html":{}}}],["items.foreach((item",{"_index":875,"title":{},"body":{"classes/Collection.html":{}}}],["items.length",{"_index":890,"title":{},"body":{"classes/Collection.html":{},"classes/Sorter.html":{}}}],["items.pip",{"_index":1901,"title":{},"body":{"modules/FormModule.html":{}}}],["items.pipe.t",{"_index":2865,"title":{},"body":{"pipes/MaxItemsPipe.html":{}}}],["items.pipe.ts:8",{"_index":2869,"title":{},"body":{"pipes/MaxItemsPipe.html":{}}}],["items.reduce((ha",{"_index":881,"title":{},"body":{"classes/Collection.html":{}}}],["items.revers",{"_index":4094,"title":{},"body":{"classes/Sorter.html":{}}}],["items.slice((this.config.pag",{"_index":3379,"title":{},"body":{"classes/Pagination.html":{}}}],["items.sort((a",{"_index":4089,"title":{},"body":{"classes/Sorter.html":{}}}],["items/list",{"_index":2545,"title":{},"body":{"components/ListItemsComponent.html":{},"modules/ListModule.html":{}}}],["iter",{"_index":2306,"title":{},"body":{"components/InputErrorsComponent.html":{},"classes/Pagination.html":{}}}],["itself",{"_index":1579,"title":{},"body":{"components/EntryListPopComponent.html":{},"classes/Field.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"components/TabComponent.html":{}}}],["javascript",{"_index":62,"title":{},"body":{"components/AceComponent.html":{}}}],["join",{"_index":3647,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["js",{"_index":4544,"title":{},"body":{"dependencies.html":{}}}],["json",{"_index":706,"title":{},"body":{"injectables/AuthService.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/LocationPickerComponent.html":{},"injectables/NotificationsService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"injectables/TypeConfigService.html":{}}}],["json.parse(config",{"_index":2485,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["json.parse(e.data",{"_index":2075,"title":{},"body":{"injectables/HistoryService.html":{}}}],["json.stringify(json",{"_index":3701,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["json.stringify(object.assign(exist",{"_index":2489,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["json.stringify(valu",{"_index":2487,"title":{},"body":{"injectables/ListConfigService.html":{},"injectables/TypeConfigService.html":{}}}],["jwt/issues/305",{"_index":642,"title":{},"body":{"modules/AuthModule.html":{}}}],["kann",{"_index":607,"title":{},"body":{"guards/AuthGuard.html":{}}}],["karma",{"_index":4612,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["keep",{"_index":1344,"title":{},"body":{"interfaces/Day.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputErrorsComponent.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{}}}],["keeppopopen",{"_index":1031,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["keepratio",{"_index":2222,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["key",{"_index":902,"title":{},"body":{"classes/Config.html":{},"injectables/CrudService.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/InputErrorsComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"injectables/ModelConfigService.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"injectables/SymbolService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["key[0",{"_index":1138,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["keydown",{"_index":3516,"title":{},"body":{"injectables/PopService.html":{}}}],["keyup",{"_index":4305,"title":{},"body":{"components/TinymceComponent.html":{}}}],["kind",{"_index":2609,"title":{},"body":{"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"injectables/ResourceConfig.html":{},"classes/ResourceForm.html":{},"classes/Sorter.html":{},"interfaces/WithLoader.html":{}}}],["kleiner",{"_index":4759,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["know",{"_index":1812,"title":{},"body":{"interfaces/FileOptions.html":{},"classes/Pagination.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["known",{"_index":456,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"injectables/SdkService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["label",{"_index":354,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/CrudConfig.html":{},"components/DefaultOutputComponent.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/LoginFormComponent.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["languag",{"_index":99,"title":{},"body":{"components/AceComponent.html":{},"injectables/ResourceConfig.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["last",{"_index":1238,"title":{},"body":{"interfaces/Day.html":{},"components/LoaderComponent.html":{},"classes/Pagination.html":{},"classes/PaginationConfig.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["lat",{"_index":2023,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["later",{"_index":1440,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"interfaces/WithNotifications.html":{}}}],["latest",{"_index":3517,"title":{},"body":{"injectables/PopService.html":{}}}],["latestpop",{"_index":3526,"title":{},"body":{"injectables/PopService.html":{}}}],["latestpop.hid",{"_index":3528,"title":{},"body":{"injectables/PopService.html":{}}}],["latitud",{"_index":2004,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationMapComponent.html":{}}}],["layer",{"_index":3274,"title":{},"body":{"injectables/NotificationsService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["layout",{"_index":1345,"title":{},"body":{"interfaces/Day.html":{}}}],["lazi",{"_index":4234,"title":{},"body":{"components/TinymceComponent.html":{}}}],["left",{"_index":3035,"title":{},"body":{"components/ModalComponent.html":{}}}],["legaci",{"_index":576,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["legacyasset",{"_index":1753,"title":{},"body":{"interfaces/FileOptions.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["legacyassetconfig",{"_index":1743,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["legend",{"_index":177,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"modules/SymbolModule.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"modules/UiModule.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["lemontre",{"_index":2398,"title":{},"body":{"components/ListComponent.html":{}}}],["length",{"_index":884,"title":{},"body":{"classes/Collection.html":{}}}],["lerna",{"_index":4548,"title":{},"body":{"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["let'",{"_index":3305,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["letter",{"_index":1072,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["level",{"_index":433,"title":{},"body":{"directives/AssetDirective.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"directives/EntryDirective.html":{},"components/MenuComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{}}}],["li",{"_index":3400,"title":{},"body":{"components/PaginationComponent.html":{}}}],["li.i",{"_index":3008,"title":{},"body":{"components/MenuComponent.html":{}}}],["lib",{"_index":5026,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["librari",{"_index":2703,"title":{},"body":{"modules/LocationModule.html":{},"additional-documentation/adding-new-packages.html":{}}}],["light",{"_index":3101,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["lightmodel",{"_index":1544,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["line",{"_index":2627,"title":{},"body":{"components/LoaderComponent.html":{},"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["line:direct",{"_index":1864,"title":{},"body":{"directives/FocusDirective.html":{}}}],["line:no",{"_index":2409,"title":{},"body":{"components/ListComponent.html":{},"components/PopComponent.html":{}}}],["link",{"_index":3428,"title":{},"body":{"classes/PaginationConfig.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/adding-new-packages.html":{}}}],["lint",{"_index":4952,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["linter",{"_index":4905,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["list",{"_index":196,"title":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["list'},{'nam",{"_index":194,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["list(act",{"_index":389,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["list(this.collection.item",{"_index":2418,"title":{},"body":{"components/ListComponent.html":{}}}],["list(this.item",{"_index":2415,"title":{},"body":{"components/ListComponent.html":{}}}],["list.compon",{"_index":547,"title":{},"body":{"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"components/ListComponent.html":{},"modules/ListModule.html":{},"components/ResourceCrudComponent.html":{},"modules/ResourceModule.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["list.component.html",{"_index":487,"title":{},"body":{"components/AssetListComponent.html":{},"components/ListComponent.html":{}}}],["list.component.t",{"_index":486,"title":{},"body":{"components/AssetListComponent.html":{}}}],["list.component.ts:10",{"_index":521,"title":{},"body":{"components/AssetListComponent.html":{}}}],["list.config",{"_index":2491,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["list.config.storagekey",{"_index":2492,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["list.field",{"_index":2490,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["list.fields.filter(f",{"_index":2498,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["list.fields.find(f",{"_index":2506,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["list.fields.foreach(field",{"_index":2503,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["list.load",{"_index":4788,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["list.ts/list.compon",{"_index":3362,"title":{},"body":{"classes/Pagination.html":{}}}],["list/asset",{"_index":485,"title":{},"body":{"components/AssetListComponent.html":{},"modules/FilesModule.html":{}}}],["list/entri",{"_index":975,"title":{},"body":{"components/CrudComponent.html":{},"modules/DataModule.html":{}}}],["list/list",{"_index":2463,"title":{},"body":{"interfaces/ListConfig.html":{},"classes/Pagination.html":{}}}],["list/list.modul",{"_index":3986,"title":{},"body":{"modules/SelectModule.html":{},"modules/UiModule.html":{}}}],["list/resourc",{"_index":546,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/FileOptions.html":{},"components/ResourceCrudComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["listcompon",{"_index":236,"title":{"components/ListComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["listconfig",{"_index":348,"title":{"interfaces/ListConfig.html":{}},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AssetListComponent.html":{},"interfaces/CrudConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"classes/Pagination.html":{},"components/ResourceListPopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["listconfigservic",{"_index":541,"title":{"injectables/ListConfigService.html":{}},"body":{"components/AssetListComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"modules/ListModule.html":{},"overview.html":{}}}],["listen",{"_index":1569,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"components/ResourceListPopComponent.html":{}}}],["listheadercompon",{"_index":237,"title":{"components/ListHeaderComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["listitemscompon",{"_index":239,"title":{"components/ListItemsComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["listmodul",{"_index":2574,"title":{"modules/ListModule.html":{}},"body":{"modules/ListModule.html":{},"modules/SelectModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["listmoduleconfig",{"_index":2589,"title":{},"body":{"modules/ListModule.html":{}}}],["listresourc",{"_index":495,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{}}}],["listresource.follownextlink().then((list",{"_index":3546,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["listresource.getallitem",{"_index":3537,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["listresource.hasnextlink",{"_index":3544,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["lists/form",{"_index":3087,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["listtempl",{"_index":2342,"title":{},"body":{"components/ListComponent.html":{}}}],["liter",{"_index":785,"title":{},"body":{"modules/CalendarModule.html":{},"classes/Config.html":{},"interfaces/CrudConfig.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"interfaces/ListConfig.html":{},"components/LocationMapComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"injectables/SymbolService.html":{}}}],["live",{"_index":655,"title":{},"body":{"injectables/AuthService.html":{},"modules/DataModule.html":{},"injectables/HistoryService.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["lng",{"_index":2025,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["load",{"_index":427,"title":{},"body":{"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"modules/AuthModule.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"directives/ImageDirective.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/LoaderComponent.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"directives/SlotHostDirective.html":{},"interfaces/WithLoader.html":{},"miscellaneous/functions.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["load(config",{"_index":3341,"title":{},"body":{"classes/Pagination.html":{}}}],["load(id",{"_index":450,"title":{},"body":{"directives/AssetDirective.html":{},"directives/ImageDirective.html":{}}}],["loadactions(act",{"_index":386,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["loadactionsbefor",{"_index":372,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["loadcompon",{"_index":1450,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["loadcomponent(compon",{"_index":1452,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["loadentri",{"_index":929,"title":{},"body":{"components/CrudComponent.html":{}}}],["loadentry(item",{"_index":954,"title":{},"body":{"components/CrudComponent.html":{}}}],["loader",{"_index":496,"title":{},"body":{"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"interfaces/WithLoader.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["loader'",{"_index":2608,"title":{},"body":{"components/LoaderComponent.html":{}}}],["loader'},{'nam",{"_index":242,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["loader.compon",{"_index":2645,"title":{},"body":{"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"interfaces/WithLoader.html":{}}}],["loader.component.html",{"_index":2596,"title":{},"body":{"components/LoaderComponent.html":{}}}],["loader.interfac",{"_index":2842,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["loader.interface.t",{"_index":4517,"title":{},"body":{"interfaces/WithLoader.html":{}}}],["loader.servic",{"_index":2646,"title":{},"body":{"modules/LoaderModule.html":{}}}],["loader.wait(promis",{"_index":2652,"title":{},"body":{"injectables/LoaderService.html":{}}}],["loader/loader.compon",{"_index":2840,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["loader/loader.modul",{"_index":1898,"title":{},"body":{"modules/FormModule.html":{},"modules/SelectModule.html":{},"modules/UiModule.html":{}}}],["loader/with",{"_index":2841,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["loadercompon",{"_index":241,"title":{"components/LoaderComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"interfaces/WithLoader.html":{},"overview.html":{}}}],["loadermodul",{"_index":1888,"title":{"modules/LoaderModule.html":{}},"body":{"modules/FormModule.html":{},"modules/LoaderModule.html":{},"modules/SelectModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["loaderservic",{"_index":933,"title":{"injectables/LoaderService.html":{}},"body":{"components/CrudComponent.html":{},"injectables/HistoryService.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/ResourceCrudComponent.html":{},"components/UploadComponent.html":{},"overview.html":{}}}],["loaderth",{"_index":2611,"title":{},"body":{"components/LoaderComponent.html":{}}}],["loadimag",{"_index":2198,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["loadimg",{"_index":2204,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["loadresourcelistactions(st",{"_index":3556,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["loadwhen",{"_index":497,"title":{},"body":{"components/AssetListComponent.html":{}}}],["local",{"_index":2460,"title":{"additional-documentation/project-setup-tutorial/localization.html":{}},"body":{"interfaces/ListConfig.html":{},"components/LoaderComponent.html":{},"injectables/ResourceConfig.html":{},"modules/SymbolModule.html":{},"injectables/SymbolService.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["localiz",{"_index":3151,"title":{},"body":{"injectables/ModelConfigService.html":{},"interfaces/SdkField.html":{}}}],["localload",{"_index":2617,"title":{},"body":{"components/LoaderComponent.html":{}}}],["localstorage.getitem(key",{"_index":2484,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["localstorage.setitem(key",{"_index":2486,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["locat",{"_index":244,"title":{"additional-documentation/readme/location-readme.html":{},"additional-documentation/changelog/location-changelog.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"injectables/GeocodeService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/location-readme.html":{}}}],["location.latitud",{"_index":2024,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["location.longitud",{"_index":2026,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["location/map",{"_index":2689,"title":{},"body":{"modules/LocationModule.html":{}}}],["location_compon",{"_index":2690,"title":{},"body":{"modules/LocationModule.html":{}}}],["locationmapcompon",{"_index":243,"title":{"components/LocationMapComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["locationmodul",{"_index":2682,"title":{"modules/LocationModule.html":{}},"body":{"modules/LocationModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/readme/location-readme.html":{}}}],["locationmoduleconfig",{"_index":2698,"title":{},"body":{"modules/LocationModule.html":{}}}],["locationpickercompon",{"_index":246,"title":{"components/LocationPickerComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{},"additional-documentation/readme/location-readme.html":{}}}],["locationsearchcompon",{"_index":248,"title":{"components/LocationSearchComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["lock",{"_index":3451,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["lockform",{"_index":3440,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["log",{"_index":2094,"title":{},"body":{"components/IconComponent.html":{},"components/NotificationsComponent.html":{},"changelog.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["logic",{"_index":4827,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["login",{"_index":253,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["login'",{"_index":2836,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["login'},{'nam",{"_index":251,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["login(undefin",{"_index":690,"title":{},"body":{"injectables/AuthService.html":{},"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["login(valu",{"_index":2826,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["login.component.html",{"_index":2760,"title":{},"body":{"components/LoginComponent.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["login.component.t",{"_index":4745,"title":{},"body":{"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["login/login.compon",{"_index":637,"title":{},"body":{"modules/AuthModule.html":{},"components/SignupComponent.html":{}}}],["logincompon",{"_index":250,"title":{"components/LoginComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/AuthModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["logincomponent:24",{"_index":3996,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:26",{"_index":3999,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:28",{"_index":3998,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:30",{"_index":4005,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:32",{"_index":4006,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:34",{"_index":4004,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:35",{"_index":4007,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:36",{"_index":4008,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:39",{"_index":4001,"title":{},"body":{"components/SignupComponent.html":{}}}],["loginformcompon",{"_index":252,"title":{"components/LoginFormComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["loginformcomponent:18",{"_index":4040,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:20",{"_index":4042,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:22",{"_index":4039,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:24",{"_index":4031,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:26",{"_index":4030,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:28",{"_index":4026,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:30",{"_index":4029,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:32",{"_index":4024,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:34",{"_index":4025,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:36",{"_index":4027,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:38",{"_index":4028,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:40",{"_index":4023,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:42",{"_index":4022,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:44",{"_index":4041,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:47",{"_index":4043,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:51",{"_index":4036,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:59",{"_index":4038,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:67",{"_index":4035,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:72",{"_index":4037,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["logout",{"_index":666,"title":{},"body":{"injectables/AuthService.html":{}}}],["logout(api",{"_index":693,"title":{},"body":{"injectables/AuthService.html":{}}}],["long",{"_index":2458,"title":{},"body":{"interfaces/ListConfig.html":{},"components/NotificationsComponent.html":{}}}],["longer",{"_index":4645,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["longitud",{"_index":2006,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationMapComponent.html":{}}}],["look",{"_index":3190,"title":{},"body":{"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["lookup",{"_index":1986,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationPickerComponent.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["lower",{"_index":2406,"title":{},"body":{"components/ListComponent.html":{}}}],["lowest",{"_index":4842,"title":{},"body":{"additional-documentation/readme/data-readme.html":{}}}],["lvl",{"_index":3142,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["lvl1",{"_index":1040,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["made",{"_index":4248,"title":{},"body":{"components/TinymceComponent.html":{}}}],["mail",{"_index":2810,"title":{},"body":{"components/LoginFormComponent.html":{},"components/PasswordResetComponent.html":{},"components/SignupFormComponent.html":{}}}],["main",{"_index":2392,"title":{},"body":{"components/ListComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["mainli",{"_index":4564,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["make",{"_index":66,"title":{},"body":{"components/AceComponent.html":{},"injectables/CrudService.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/ResourceListPopComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["manag",{"_index":4576,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["mandatori",{"_index":3034,"title":{},"body":{"components/ModalComponent.html":{}}}],["mani",{"_index":1051,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/ListConfig.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["manual",{"_index":4240,"title":{},"body":{"components/TinymceComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/ace-readme.html":{}}}],["map",{"_index":909,"title":{},"body":{"classes/Config.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"interfaces/FileOptions.html":{},"injectables/GeocodeService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/MenuComponent.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/location-readme.html":{}}}],["map'},{'nam",{"_index":245,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["map((d",{"_index":1327,"title":{},"body":{"interfaces/Day.html":{}}}],["map((dat",{"_index":1329,"title":{},"body":{"interfaces/Day.html":{}}}],["map((method",{"_index":743,"title":{},"body":{"injectables/AuthService.html":{}}}],["map((resourc",{"_index":3538,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["map(a",{"_index":3566,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["map(field",{"_index":3135,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["map(hook",{"_index":3645,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["map(i",{"_index":3549,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["map(item",{"_index":4081,"title":{},"body":{"classes/Sorter.html":{}}}],["map(p",{"_index":3706,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["map(polici",{"_index":3649,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["map.compon",{"_index":2695,"title":{},"body":{"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{}}}],["map.component.html",{"_index":2656,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.scss",{"_index":2655,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.t",{"_index":2654,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.ts:12",{"_index":2663,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.ts:14",{"_index":2665,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.ts:16",{"_index":2667,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.ts:18",{"_index":2666,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.ts:24",{"_index":2672,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.ts:31",{"_index":2669,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.valu",{"_index":2740,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["mapload",{"_index":1978,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["mapsapiload",{"_index":1975,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["mark",{"_index":1255,"title":{},"body":{"interfaces/Day.html":{}}}],["marker",{"_index":2664,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["markerdragend",{"_index":2657,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["markerdragend(coord",{"_index":2668,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["markup",{"_index":3014,"title":{},"body":{"components/ModalComponent.html":{},"components/PopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["match",{"_index":321,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"changelog.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"modules.html":{},"overview.html":{},"miscellaneous/typealiases.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["match.level",{"_index":3140,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["matches(chang",{"_index":3846,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["math.abs(curr",{"_index":3407,"title":{},"body":{"components/PaginationComponent.html":{}}}],["math.max(max",{"_index":3143,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["math.max(minlevel",{"_index":996,"title":{},"body":{"components/CrudComponent.html":{}}}],["math.max(value.width",{"_index":2189,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["math.min(this.defaults",{"_index":2215,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["math.min(this.getpag",{"_index":3381,"title":{},"body":{"classes/Pagination.html":{}}}],["matter",{"_index":4714,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["max",{"_index":1900,"title":{},"body":{"modules/FormModule.html":{}}}],["maxcolumn",{"_index":2450,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["maxim",{"_index":2456,"title":{},"body":{"interfaces/ListConfig.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["maximum",{"_index":1655,"title":{},"body":{"classes/Field.html":{}}}],["maxitem",{"_index":1631,"title":{},"body":{"classes/Field.html":{},"pipes/MaxItemsPipe.html":{}}}],["maxitemspip",{"_index":1883,"title":{"pipes/MaxItemsPipe.html":{}},"body":{"modules/FormModule.html":{},"pipes/MaxItemsPipe.html":{},"overview.html":{}}}],["mean",{"_index":1828,"title":{},"body":{"interfaces/FileOptions.html":{},"modules/SymbolModule.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme/core-readme.html":{}}}],["meant",{"_index":131,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"guards/AuthGuard.html":{},"injectables/CrudService.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"interfaces/FileOptions.html":{},"pipes/GroupPipe.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/LoaderComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["meantion",{"_index":4799,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["medium",{"_index":255,"title":{"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{}}}],["mediumeditor",{"_index":2883,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["mediumeditor(this.container.nativeel",{"_index":2903,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["mediumeditorcompon",{"_index":254,"title":{"components/MediumEditorComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["mediumeditormodul",{"_index":2911,"title":{"modules/MediumEditorModule.html":{}},"body":{"modules/MediumEditorModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["mediummodul",{"_index":4654,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme/medium-editor-readme.html":{}}}],["mediummoduleconfig",{"_index":2918,"title":{},"body":{"modules/MediumEditorModule.html":{}}}],["menu",{"_index":2921,"title":{},"body":{"components/MenuComponent.html":{}}}],["menu,[ec",{"_index":258,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["menu.component.html",{"_index":2923,"title":{},"body":{"components/MenuComponent.html":{}}}],["menu.component.scss",{"_index":2922,"title":{},"body":{"components/MenuComponent.html":{}}}],["menu/menu.compon",{"_index":4503,"title":{},"body":{"modules/UtilityModule.html":{}}}],["menu]'},{'nam",{"_index":259,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["menucompon",{"_index":257,"title":{"components/MenuComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["merg",{"_index":906,"title":{},"body":{"classes/Config.html":{},"injectables/ModelConfigService.html":{},"classes/Pagination.html":{}}}],["merge(route.data",{"_index":980,"title":{},"body":{"components/CrudComponent.html":{}}}],["merged[titl",{"_index":3158,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["mergedfield",{"_index":3175,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["mergedfields[key",{"_index":3178,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["messag",{"_index":585,"title":{},"body":{"guards/AuthGuard.html":{},"components/ErrorComponent.html":{},"components/InputErrorsComponent.html":{},"components/LoginFormComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/PasswordResetComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["message.clos",{"_index":3311,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["met",{"_index":4820,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["metadata",{"_index":23,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"pipes/GroupPipe.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{}}}],["method",{"_index":49,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["middl",{"_index":4844,"title":{},"body":{"additional-documentation/readme/ui-readme.html":{}}}],["min",{"_index":174,"title":{},"body":{"components/AceComponent.html":{}}}],["minimum",{"_index":3433,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["miscellan",{"_index":4559,"title":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["miss",{"_index":4872,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["mit",{"_index":3458,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["mmmm",{"_index":799,"title":{},"body":{"modules/CalendarModule.html":{},"interfaces/Day.html":{}}}],["modal",{"_index":3012,"title":{},"body":{"components/ModalComponent.html":{},"components/PopComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["modal'},{'nam",{"_index":261,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["modal.component.html",{"_index":3018,"title":{},"body":{"components/ModalComponent.html":{}}}],["modal/modal.compon",{"_index":3511,"title":{},"body":{"modules/PopModule.html":{}}}],["modalcompon",{"_index":260,"title":{"components/ModalComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["mode",{"_index":58,"title":{},"body":{"components/AceComponent.html":{},"interfaces/CrudConfig.html":{},"components/ModalComponent.html":{},"classes/ResourceForm.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["model",{"_index":108,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["model'",{"_index":3067,"title":{},"body":{"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{}}}],["model.${filter.model",{"_index":1108,"title":{},"body":{"injectables/CrudService.html":{}}}],["model.${model",{"_index":1136,"title":{},"body":{"injectables/CrudService.html":{}}}],["model.field",{"_index":905,"title":{},"body":{"classes/Config.html":{}}}],["model/schema",{"_index":4764,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["modelchang",{"_index":2881,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["modelconfig",{"_index":934,"title":{"interfaces/ModelConfig.html":{}},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["modelconfig.field",{"_index":3131,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfig.get('muffin'",{"_index":3090,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfig.get('muffin",{"_index":3115,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfig.set('muffin'",{"_index":3109,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfig.set('muffin",{"_index":3117,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfigfield",{"_index":3172,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfigfields[key",{"_index":3180,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfigservic",{"_index":935,"title":{"injectables/ModelConfigService.html":{}},"body":{"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/EntryListPopComponent.html":{},"injectables/ModelConfigService.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["modelconfigur",{"_index":3184,"title":{"interfaces/ModelConfiguration.html":{}},"body":{"interfaces/ModelConfiguration.html":{}}}],["modelid",{"_index":3638,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["modelist.j",{"_index":152,"title":{},"body":{"components/AceComponent.html":{}}}],["modelresourc",{"_index":2045,"title":{},"body":{"injectables/HistoryService.html":{}}}],["models[model",{"_index":3183,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modifi",{"_index":1071,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"components/InputComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["modified'].indexof(key",{"_index":1139,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["modul",{"_index":322,"title":{"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"modules.html":{}},"body":{"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["module'",{"_index":648,"title":{},"body":{"injectables/AuthService.html":{},"injectables/NotificationsService.html":{},"injectables/SdkService.html":{}}}],["module(",{"_index":5043,"title":{},"body":{"additional-documentation/stackblitz.html":{}}}],["module.export",{"_index":4680,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["modulewithprovid",{"_index":629,"title":{},"body":{"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/LocationModule.html":{}}}],["moment",{"_index":1209,"title":{},"body":{"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"injectables/TypeConfigService.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/readme.html":{}}}],["moment'",{"_index":1342,"title":{},"body":{"interfaces/Day.html":{}}}],["moment().startof('day').diff(d",{"_index":1341,"title":{},"body":{"interfaces/Day.html":{}}}],["moment(new",{"_index":4359,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["moment(valu",{"_index":1229,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["moment(value).format('yyyi",{"_index":4753,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["moment(value).format(format",{"_index":4377,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["moment(value).format(pattern",{"_index":1233,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["moment(value).format(this.symbol.resolve('moment.format.month",{"_index":4379,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["moment(value).isvalid",{"_index":4355,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["moment.format.d",{"_index":794,"title":{},"body":{"modules/CalendarModule.html":{},"modules/FormModule.html":{},"injectables/TypeConfigService.html":{}}}],["moment.format.month",{"_index":798,"title":{},"body":{"modules/CalendarModule.html":{},"modules/FormModule.html":{},"injectables/TypeConfigService.html":{}}}],["moment.format.tim",{"_index":796,"title":{},"body":{"modules/CalendarModule.html":{},"modules/FormModule.html":{},"injectables/TypeConfigService.html":{}}}],["moment.locale('d",{"_index":4747,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["moment.locale(this.symbols.resolve('moment.locale'));us",{"_index":4112,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["moment.mo",{"_index":1193,"title":{},"body":{"components/DatetimeComponent.html":{},"interfaces/Day.html":{}}}],["monorepo",{"_index":4575,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["month",{"_index":804,"title":{},"body":{"modules/CalendarModule.html":{},"interfaces/Day.html":{}}}],["month'},{'nam",{"_index":263,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["month.component.html",{"_index":1248,"title":{},"body":{"interfaces/Day.html":{}}}],["monthcompon",{"_index":262,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["monthformat",{"_index":1264,"title":{},"body":{"interfaces/Day.html":{}}}],["more",{"_index":657,"title":{},"body":{"injectables/AuthService.html":{},"classes/Collection.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"injectables/SymbolPipe.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["mouseout",{"_index":2953,"title":{},"body":{"components/MenuComponent.html":{}}}],["mouseov",{"_index":2946,"title":{},"body":{"components/MenuComponent.html":{}}}],["mouseover(day",{"_index":1304,"title":{},"body":{"interfaces/Day.html":{}}}],["mouseup(day",{"_index":1303,"title":{},"body":{"interfaces/Day.html":{}}}],["move",{"_index":815,"title":{},"body":{"classes/Collection.html":{},"additional-documentation/adding-new-packages.html":{}}}],["move(item",{"_index":851,"title":{},"body":{"classes/Collection.html":{}}}],["ms",{"_index":2243,"title":{},"body":{"components/InputComponent.html":{},"classes/Notification.html":{}}}],["muffin",{"_index":3091,"title":{},"body":{"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["muffin.entry?.nam",{"_index":1536,"title":{},"body":{"directives/EntryDirective.html":{}}}],["muffin.nam",{"_index":1496,"title":{},"body":{"directives/EntriesDirective.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["muffincompon",{"_index":3234,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["muffinconfigur",{"_index":4792,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["muffins/muffins.compon",{"_index":4740,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["muffinsadd",{"_index":4735,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["muffinscompon",{"_index":4739,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["multi",{"_index":29,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"modules/SelectModule.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["multipl",{"_index":1061,"title":{},"body":{"interfaces/CrudConfig.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"classes/Sorter.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["mustreload",{"_index":930,"title":{},"body":{"components/CrudComponent.html":{}}}],["mustreload(item",{"_index":957,"title":{},"body":{"components/CrudComponent.html":{}}}],["mutabl",{"_index":3150,"title":{},"body":{"injectables/ModelConfigService.html":{},"interfaces/SdkField.html":{}}}],["myapp",{"_index":2613,"title":{},"body":{"components/LoaderComponent.html":{}}}],["myasset.asset?.assetid",{"_index":461,"title":{},"body":{"directives/AssetDirective.html":{}}}],["myasset.asset?.cr",{"_index":464,"title":{},"body":{"directives/AssetDirective.html":{}}}],["myasset.asset?.files?.length",{"_index":466,"title":{},"body":{"directives/AssetDirective.html":{}}}],["myasset.asset?.tag",{"_index":463,"title":{},"body":{"directives/AssetDirective.html":{}}}],["myasset.asset?.titl",{"_index":462,"title":{},"body":{"directives/AssetDirective.html":{}}}],["myasset.asset?.typ",{"_index":465,"title":{},"body":{"directives/AssetDirective.html":{}}}],["myclient",{"_index":774,"title":{},"body":{"injectables/AuthService.html":{}}}],["mycompon",{"_index":3217,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["myimage.asset?.assetid",{"_index":2146,"title":{},"body":{"directives/ImageDirective.html":{}}}],["name",{"_index":92,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"miscellaneous/functions.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["name[0].touppercas",{"_index":4751,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["namespac",{"_index":1994,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["nativ",{"_index":2139,"title":{},"body":{"directives/ImageDirective.html":{}}}],["natur",{"_index":4070,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["navig",{"_index":4602,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["navigationend",{"_index":4206,"title":{},"body":{"components/TabsComponent.html":{}}}],["nearest",{"_index":1989,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["need",{"_index":1066,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/InputComponent.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["nest",{"_index":1060,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MenuComponent.html":{},"components/OutputComponent.html":{},"components/TabsComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["nestedcrudconfig",{"_index":4330,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["nestedpopact",{"_index":1032,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["never",{"_index":4643,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["new",{"_index":76,"title":{"additional-documentation/adding-new-packages.html":{}},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["newdat",{"_index":1362,"title":{},"body":{"interfaces/Day.html":{}}}],["newdate.isbetween(this.timespan[0",{"_index":1364,"title":{},"body":{"interfaces/Day.html":{}}}],["newhistori",{"_index":2072,"title":{},"body":{"injectables/HistoryService.html":{}}}],["newli",{"_index":3889,"title":{},"body":{"interfaces/SdkField.html":{}}}],["newprojectroot",{"_index":5020,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["newtimespan",{"_index":1286,"title":{},"body":{"interfaces/Day.html":{}}}],["newtimespan.revers",{"_index":1291,"title":{},"body":{"interfaces/Day.html":{}}}],["newtimespan[0].isafter(newtimespan[1",{"_index":1290,"title":{},"body":{"interfaces/Day.html":{}}}],["newtimespan[this.dragged.first",{"_index":1288,"title":{},"body":{"interfaces/Day.html":{}}}],["next",{"_index":519,"title":{},"body":{"components/AssetListComponent.html":{},"guards/AuthGuard.html":{},"classes/Collection.html":{},"directives/EntriesDirective.html":{},"directives/FocusDirective.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/LoginComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["ng",{"_index":4600,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["ng_value_accessor",{"_index":26,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"modules/SelectModule.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["ngaftercontentinit",{"_index":4194,"title":{},"body":{"components/TabsComponent.html":{}}}],["ngafterviewinit",{"_index":1857,"title":{},"body":{"interfaces/Focus.html":{},"components/LocationSearchComponent.html":{},"components/TinymceComponent.html":{}}}],["ngif",{"_index":1557,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"components/TabsComponent.html":{}}}],["ngmodel",{"_index":4686,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["ngmodul",{"_index":333,"title":{},"body":{"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["ngmodule(acemoduleconfig",{"_index":336,"title":{},"body":{"modules/AceModule.html":{}}}],["ngmodule(calendarmoduleconfig",{"_index":801,"title":{},"body":{"modules/CalendarModule.html":{}}}],["ngmodule(datamoduleconfig",{"_index":1184,"title":{},"body":{"modules/DataModule.html":{}}}],["ngmodule(formmoduleconfig",{"_index":1907,"title":{},"body":{"modules/FormModule.html":{}}}],["ngmodule(listmoduleconfig",{"_index":2590,"title":{},"body":{"modules/ListModule.html":{}}}],["ngmodule(locationmoduleconfig",{"_index":2704,"title":{},"body":{"modules/LocationModule.html":{}}}],["ngmodule(mediummoduleconfig",{"_index":2919,"title":{},"body":{"modules/MediumEditorModule.html":{}}}],["ngmodule(popmoduleconfig",{"_index":3513,"title":{},"body":{"modules/PopModule.html":{}}}],["ngmodule(selectmoduleconfig",{"_index":3989,"title":{},"body":{"modules/SelectModule.html":{}}}],["ngmodule(tinymcemoduleconfig",{"_index":4315,"title":{},"body":{"modules/TinymceModule.html":{}}}],["ngmodule(uimoduleconfig",{"_index":4387,"title":{},"body":{"modules/UiModule.html":{}}}],["ngmodule(utilitymoduleconfig",{"_index":4505,"title":{},"body":{"modules/UtilityModule.html":{}}}],["ngonchang",{"_index":51,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["ngonchanges(chang",{"_index":532,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/Day.html":{},"components/ListComponent.html":{}}}],["ngondestroy",{"_index":2880,"title":{},"body":{"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["ngoninit",{"_index":52,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PaginationComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ngx",{"_index":633,"title":{},"body":{"modules/AuthModule.html":{},"modules/DataModule.html":{},"modules/SelectModule.html":{},"dependencies.html":{}}}],["ngzone",{"_index":1976,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationSearchComponent.html":{}}}],["nicht",{"_index":608,"title":{},"body":{"guards/AuthGuard.html":{}}}],["noapi",{"_index":3905,"title":{},"body":{"injectables/SdkService.html":{}}}],["noapi(api",{"_index":3918,"title":{},"body":{"injectables/SdkService.html":{}}}],["noclientid",{"_index":667,"title":{},"body":{"injectables/AuthService.html":{}}}],["noconflict/ac",{"_index":141,"title":{},"body":{"components/AceComponent.html":{}}}],["noconflict/ace.js';when",{"_index":4857,"title":{},"body":{"additional-documentation/readme/ace-readme.html":{}}}],["node",{"_index":4681,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["node_modul",{"_index":4590,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["node_modules/@ec.compon",{"_index":4581,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["node_modules/eventsource/lib/eventsource.j",{"_index":4655,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["node_modules/jsonpath",{"_index":4659,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["node_modules/tinymce/skins/lightgray/content.min.css",{"_index":4860,"title":{},"body":{"additional-documentation/readme/tinymce-readme.html":{}}}],["node_modules/tinymce/skins/lightgray/skin.min.css",{"_index":4859,"title":{},"body":{"additional-documentation/readme/tinymce-readme.html":{}}}],["non",{"_index":3033,"title":{},"body":{"components/ModalComponent.html":{},"injectables/SymbolService.html":{},"injectables/TypeConfigService.html":{}}}],["none",{"_index":2556,"title":{},"body":{"components/ListItemsComponent.html":{},"components/NotificationsComponent.html":{}}}],["normal",{"_index":1404,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["notabl",{"_index":4861,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["note",{"_index":3430,"title":{},"body":{"classes/PaginationConfig.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["noth",{"_index":3098,"title":{},"body":{"injectables/ModelConfigService.html":{},"interfaces/Symbol.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["notif",{"_index":590,"title":{"classes/Notification.html":{}},"body":{"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/PasswordResetComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadComponent.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/adding-new-packages.html":{}}}],["notification(notif",{"_index":3297,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["notification.append",{"_index":3252,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.append.push(notif",{"_index":3253,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.component.t",{"_index":3243,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.error",{"_index":3207,"title":{},"body":{"classes/Notification.html":{},"injectables/NotificationsService.html":{}}}],["notification.hid",{"_index":3248,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.host",{"_index":3257,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.messag",{"_index":3251,"title":{},"body":{"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{}}}],["notification.replac",{"_index":3254,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.replace.length",{"_index":3255,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.replace.push(notif",{"_index":3256,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.sticki",{"_index":3259,"title":{},"body":{"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{}}}],["notification.tim",{"_index":3260,"title":{},"body":{"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{}}}],["notification.titl",{"_index":3250,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notificationcompon",{"_index":3187,"title":{},"body":{"classes/Notification.html":{}}}],["notifications'},{'nam",{"_index":265,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["notifications.compon",{"_index":3206,"title":{},"body":{"classes/Notification.html":{},"modules/NotificationsModule.html":{}}}],["notifications.component.html",{"_index":3211,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notifications.interfac",{"_index":5031,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["notifications.interface.t",{"_index":4520,"title":{},"body":{"interfaces/WithNotifications.html":{}}}],["notifications.servic",{"_index":3244,"title":{},"body":{"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{}}}],["notifications/notifications.modul",{"_index":4384,"title":{},"body":{"modules/UiModule.html":{}}}],["notificationscompon",{"_index":264,"title":{"components/NotificationsComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["notificationservic",{"_index":936,"title":{},"body":{"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"components/LoginComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{}}}],["notificationservice.$emitt",{"_index":3209,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notificationsmodul",{"_index":3263,"title":{"modules/NotificationsModule.html":{}},"body":{"modules/NotificationsModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["notificationsservic",{"_index":591,"title":{"injectables/NotificationsService.html":{}},"body":{"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"components/LoginComponent.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/PasswordResetComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{},"overview.html":{}}}],["now",{"_index":2227,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"injectables/SdkService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["npm",{"_index":4587,"title":{},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{}}}],["nth",{"_index":2867,"title":{},"body":{"pipes/MaxItemsPipe.html":{}}}],["null",{"_index":879,"title":{},"body":{"classes/Collection.html":{},"injectables/CrudService.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"components/InputComponent.html":{},"injectables/ListConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"interfaces/Update.html":{}}}],["number",{"_index":444,"title":{},"body":{"directives/AssetDirective.html":{},"classes/Collection.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"directives/EntryDirective.html":{},"classes/Field.html":{},"injectables/GeocodeService.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/LocationMapComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"classes/PaginationConfig.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"classes/Sorter.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"miscellaneous/functions.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["numbers.add(4",{"_index":835,"title":{},"body":{"classes/Collection.html":{}}}],["numbers.addall([5",{"_index":838,"title":{},"body":{"classes/Collection.html":{}}}],["numbers.has(2",{"_index":843,"title":{},"body":{"classes/Collection.html":{}}}],["numbers.has([1,2",{"_index":846,"title":{},"body":{"classes/Collection.html":{}}}],["numbers.remove(4",{"_index":855,"title":{},"body":{"classes/Collection.html":{}}}],["numbers.removeal",{"_index":858,"title":{},"body":{"classes/Collection.html":{}}}],["numer",{"_index":4073,"title":{},"body":{"classes/Sorter.html":{}}}],["oauth",{"_index":3675,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["object",{"_index":685,"title":{},"body":{"injectables/AuthService.html":{},"classes/Config.html":{},"injectables/CrudService.html":{},"interfaces/Day.html":{},"components/DynamicSlotComponent.html":{},"classes/Field.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ModelConfig.html":{},"interfaces/ModelConfiguration.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"interfaces/ResourceActionbarState.html":{},"classes/ResourceForm.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["object.assign",{"_index":907,"title":{},"body":{"classes/Config.html":{},"modules/DataModule.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["object.assign(componentref.inst",{"_index":1464,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["object.assign(config",{"_index":4370,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["object.assign(entri",{"_index":1131,"title":{},"body":{"injectables/CrudService.html":{}}}],["object.assign(merg",{"_index":3145,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["object.assign(resourc",{"_index":3880,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["object.assign(thi",{"_index":1707,"title":{},"body":{"classes/Field.html":{},"classes/Notification.html":{},"classes/PaginationConfig.html":{}}}],["object.assign(this.config",{"_index":2412,"title":{},"body":{"components/ListComponent.html":{},"classes/Pagination.html":{}}}],["object.assign(this.config[key][properti",{"_index":915,"title":{},"body":{"classes/Config.html":{}}}],["object.assign(this.get(model",{"_index":3163,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["object.assign(this.stringfield('model",{"_index":3639,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["object.assign(this.stringfield('nam",{"_index":3627,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["object.assign(this.tagsfield('right",{"_index":3635,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["object.assign(this.types[typ",{"_index":4375,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["object.keys(customfieldconfig",{"_index":3174,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["object.keys(fieldconfig",{"_index":3132,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["object.keys(fieldconfig).map(properti",{"_index":3147,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["object.keys(filt",{"_index":3863,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["object.keys(item.config.fields).reduce((equ",{"_index":989,"title":{},"body":{"components/CrudComponent.html":{}}}],["object.keys(permiss",{"_index":742,"title":{},"body":{"injectables/AuthService.html":{}}}],["object.keys(symbolservice.sets).length",{"_index":4145,"title":{},"body":{"injectables/SymbolService.html":{}}}],["object.keys(this.config",{"_index":3612,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["object.keys(this.control.errors).reduce((err",{"_index":2309,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["object.keys(this.sets).length",{"_index":4163,"title":{},"body":{"injectables/SymbolService.html":{}}}],["object.keys(value).foreach((key",{"_index":1128,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["object.keys(variables).foreach((key",{"_index":731,"title":{},"body":{"injectables/AuthService.html":{}}}],["observ",{"_index":537,"title":{},"body":{"components/AssetListComponent.html":{},"classes/Collection.html":{},"injectables/CrudService.html":{},"components/EntryListPopComponent.html":{},"injectables/GeocodeService.html":{},"components/LoginFormComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["observable(observ",{"_index":1995,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["observable.throw(err",{"_index":2855,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["observeel",{"_index":1973,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["observeelement(el",{"_index":1990,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["observer.complet",{"_index":2009,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["observer.next(coord",{"_index":2008,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["obsolet",{"_index":3240,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["obtain",{"_index":3083,"title":{},"body":{"injectables/ModelConfigService.html":{},"interfaces/SdkField.html":{}}}],["occur",{"_index":2765,"title":{},"body":{"components/LoginComponent.html":{},"components/SignupComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["ok",{"_index":2017,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["old",{"_index":1115,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["oldassetgroupid",{"_index":1747,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["oldvalu",{"_index":1127,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["oldvalues[key",{"_index":1129,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["omit",{"_index":3114,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/SdkService.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["omittedfield",{"_index":3072,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["on",{"_index":518,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/CrudConfig.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["onchang",{"_index":22,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["ondestroy",{"_index":2877,"title":{},"body":{"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["ondragleave(",{"_index":1430,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["ondragover(",{"_index":1420,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["ondrop(",{"_index":1425,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["onedit",{"_index":2326,"title":{},"body":{"interfaces/ItemConfig.html":{}}}],["oninit",{"_index":21,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PaginationComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["onsav",{"_index":2187,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"interfaces/ItemConfig.html":{},"injectables/ModelConfigService.html":{}}}],["onsubmit",{"_index":2793,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["open",{"_index":1038,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/IconComponent.html":{},"components/ListHeaderComponent.html":{},"components/ModalComponent.html":{},"injectables/PopService.html":{},"components/ResourceCrudComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["openid",{"_index":3662,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["openinghour",{"_index":4818,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["openinghourscompon",{"_index":4826,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["oper",{"_index":526,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/CrudConfig.html":{},"classes/Field.html":{},"injectables/GeocodeService.html":{},"classes/Sorter.html":{},"interfaces/WithLoader.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["option",{"_index":93,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithNotifications.html":{},"miscellaneous/functions.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/style-changelog.html":{}}}],["option.label?option.label:opt",{"_index":1384,"title":{},"body":{"components/DefaultInputComponent.html":{}}}],["options[key",{"_index":1775,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["options](https://github.com/yabwe/medium",{"_index":2899,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["origin",{"_index":2206,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"classes/ResourceForm.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["original.resolut",{"_index":2209,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["other",{"_index":2523,"title":{},"body":{"components/ListHeaderComponent.html":{},"classes/Notification.html":{},"additional-documentation/adding-new-packages.html":{}}}],["otherwis",{"_index":1099,"title":{},"body":{"injectables/CrudService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["ouput",{"_index":2172,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{}}}],["out",{"_index":330,"title":{},"body":{"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"components/ResourceCrudComponent.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"index.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["outlin",{"_index":4771,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["output",{"_index":434,"title":{},"body":{"directives/AssetDirective.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/OutputComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["output'},{'nam",{"_index":210,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["output('toggl",{"_index":3489,"title":{},"body":{"components/PopComponent.html":{}}}],["output.compon",{"_index":1172,"title":{},"body":{"modules/DataModule.html":{},"modules/FormModule.html":{},"components/OutputComponent.html":{},"injectables/TypeConfigService.html":{}}}],["output.component.html",{"_index":1373,"title":{},"body":{"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{}}}],["output.component.t",{"_index":1372,"title":{},"body":{"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{}}}],["output.component.ts:11",{"_index":1374,"title":{},"body":{"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{}}}],["output.component.ts:13",{"_index":1375,"title":{},"body":{"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{}}}],["output/default",{"_index":1385,"title":{},"body":{"components/DefaultOutputComponent.html":{},"modules/FormModule.html":{},"components/OutputComponent.html":{}}}],["output/output.compon",{"_index":2319,"title":{},"body":{"modules/IoModule.html":{}}}],["outputcompon",{"_index":266,"title":{"components/OutputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["outsid",{"_index":107,"title":{},"body":{"components/AceComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/LoaderComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"directives/SlotHostDirective.html":{},"components/TinymceComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["over",{"_index":2307,"title":{},"body":{"components/InputErrorsComponent.html":{},"classes/Pagination.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["overlay",{"_index":3047,"title":{},"body":{"components/ModalComponent.html":{}}}],["overrid",{"_index":2101,"title":{},"body":{"components/IconComponent.html":{},"components/InputComponent.html":{}}}],["overridden",{"_index":2856,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["overriden",{"_index":3071,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/SymbolService.html":{}}}],["overview",{"_index":4619,"title":{"overview.html":{}},"body":{"overview.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{}}}],["overwrit",{"_index":4114,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["overwritten",{"_index":2828,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["p",{"_index":5018,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["p.method",{"_index":3707,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["packag",{"_index":4522,"title":{"dependencies.html":{},"additional-documentation/adding-new-packages.html":{}},"body":{"changelog.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["package(",{"_index":5042,"title":{},"body":{"additional-documentation/stackblitz.html":{}}}],["package.json",{"_index":4639,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/adding-new-packages.html":{}}}],["packages/.../actionbar.component.t",{"_index":4626,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["packages/.../auth.module.t",{"_index":4560,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/.../sorter.t",{"_index":4561,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/ace/src/lib/ace.component.t",{"_index":10,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:102",{"_index":105,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:112",{"_index":120,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:116",{"_index":87,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:120",{"_index":95,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:29",{"_index":114,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:33",{"_index":125,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:37",{"_index":122,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:39",{"_index":116,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:43",{"_index":112,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:47",{"_index":72,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:51",{"_index":73,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:54",{"_index":74,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:75",{"_index":97,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:84",{"_index":102,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:93",{"_index":85,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:97",{"_index":83,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.module.t",{"_index":331,"title":{},"body":{"modules/AceModule.html":{}}}],["packages/calendar/src/lib/calendar.module.t",{"_index":780,"title":{},"body":{"modules/CalendarModule.html":{}}}],["packages/calendar/src/lib/calendar.module.ts:46",{"_index":786,"title":{},"body":{"modules/CalendarModule.html":{}}}],["packages/calendar/src/lib/calendar/month.component.t",{"_index":1234,"title":{},"body":{"interfaces/Day.html":{}}}],["packages/calendar/src/lib/datetime.pipe.t",{"_index":1214,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["packages/calendar/src/lib/datetime.pipe.ts:12",{"_index":1221,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["packages/core/src/lib/collection/collection.t",{"_index":809,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:10",{"_index":826,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:106",{"_index":854,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:12",{"_index":829,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:123",{"_index":857,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:138",{"_index":862,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:14",{"_index":821,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:147",{"_index":860,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:160",{"_index":849,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:165",{"_index":852,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:31",{"_index":848,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:42",{"_index":842,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:53",{"_index":845,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:71",{"_index":833,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:89",{"_index":837,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/config/config.t",{"_index":895,"title":{},"body":{"classes/Config.html":{}}}],["packages/core/src/lib/config/config.ts:13",{"_index":899,"title":{},"body":{"classes/Config.html":{}}}],["packages/core/src/lib/config/config.ts:5",{"_index":897,"title":{},"body":{"classes/Config.html":{}}}],["packages/core/src/lib/config/field",{"_index":1717,"title":{},"body":{"interfaces/FieldConfig.html":{}}}],["packages/core/src/lib/field/field.t",{"_index":1625,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:11",{"_index":1647,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:13",{"_index":1665,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:15",{"_index":1668,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:17",{"_index":1666,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:19",{"_index":1652,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:21",{"_index":1658,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:23",{"_index":1659,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:25",{"_index":1653,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:27",{"_index":1640,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:29",{"_index":1643,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:31",{"_index":1644,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:33",{"_index":1667,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:35",{"_index":1638,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:37",{"_index":1651,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:39",{"_index":1664,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:41",{"_index":1639,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:43",{"_index":1654,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:45",{"_index":1649,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:47",{"_index":1637,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:59",{"_index":1672,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:63",{"_index":1669,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:7",{"_index":1662,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:9",{"_index":1660,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/form/form",{"_index":1870,"title":{},"body":{"interfaces/FormConfig.html":{}}}],["packages/core/src/lib/item/item",{"_index":2323,"title":{},"body":{"interfaces/ItemConfig.html":{}}}],["packages/core/src/lib/list/list",{"_index":2444,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["packages/core/src/lib/pagination/pagination.t",{"_index":3318,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:107",{"_index":3337,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:11",{"_index":3330,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:112",{"_index":3338,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:117",{"_index":3339,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:125",{"_index":3354,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:13",{"_index":3327,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:130",{"_index":3344,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:142",{"_index":3357,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:15",{"_index":3325,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:33",{"_index":3334,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:38",{"_index":3335,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:43",{"_index":3343,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:52",{"_index":3345,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:63",{"_index":3350,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:7",{"_index":3331,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:76",{"_index":3342,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:84",{"_index":3348,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:9",{"_index":3329,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:93",{"_index":3333,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:98",{"_index":3340,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/sorter/sorter.t",{"_index":4056,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["packages/core/src/lib/sorter/sorter.ts:25",{"_index":4063,"title":{},"body":{"classes/Sorter.html":{}}}],["packages/core/src/lib/sorter/sorter.ts:32",{"_index":4065,"title":{},"body":{"classes/Sorter.html":{}}}],["packages/core/src/lib/sorter/sorter.ts:62",{"_index":4068,"title":{},"body":{"classes/Sorter.html":{}}}],["packages/data/dist",{"_index":5024,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["packages/data/lib",{"_index":5025,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["packages/data/package.json#nam",{"_index":5021,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["packages/data/src/lib/asset",{"_index":484,"title":{},"body":{"components/AssetListComponent.html":{}}}],["packages/data/src/lib/auth/auth",{"_index":579,"title":{},"body":{"guards/AuthGuard.html":{}}}],["packages/data/src/lib/auth/auth.module.t",{"_index":624,"title":{},"body":{"modules/AuthModule.html":{},"miscellaneous/functions.html":{}}}],["packages/data/src/lib/auth/auth.service.t",{"_index":644,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:113",{"_index":680,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:135",{"_index":697,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:147",{"_index":694,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:157",{"_index":688,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:171",{"_index":695,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:24",{"_index":671,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:31",{"_index":691,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:45",{"_index":702,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:58",{"_index":678,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:67",{"_index":674,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:74",{"_index":699,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:82",{"_index":686,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/login/login.component.t",{"_index":2756,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:24",{"_index":2764,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:26",{"_index":2768,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:28",{"_index":2767,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:30",{"_index":2772,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:32",{"_index":2762,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:34",{"_index":2771,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:35",{"_index":2773,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:36",{"_index":2774,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:39",{"_index":2769,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/password",{"_index":3434,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.t",{"_index":3990,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.ts:17",{"_index":3993,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.ts:19",{"_index":3995,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.ts:21",{"_index":3997,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.ts:23",{"_index":4002,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.ts:25",{"_index":4003,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.ts:28",{"_index":4000,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/crud/crud",{"_index":1016,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["packages/data/src/lib/crud/crud.component.t",{"_index":916,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:115",{"_index":963,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:33",{"_index":945,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:35",{"_index":944,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:37",{"_index":946,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:39",{"_index":969,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:41",{"_index":965,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:43",{"_index":971,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:45",{"_index":949,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:47",{"_index":950,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:49",{"_index":939,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:58",{"_index":973,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:59",{"_index":972,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:70",{"_index":961,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:79",{"_index":952,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:84",{"_index":958,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:91",{"_index":955,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.service.t",{"_index":1070,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:13",{"_index":1080,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:16",{"_index":1103,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:20",{"_index":1082,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:38",{"_index":1097,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:51",{"_index":1102,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:65",{"_index":1093,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:71",{"_index":1085,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:86",{"_index":1088,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:98",{"_index":1091,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/data.module.t",{"_index":1158,"title":{},"body":{"modules/DataModule.html":{}}}],["packages/data/src/lib/data.module.ts:94",{"_index":1161,"title":{},"body":{"modules/DataModule.html":{}}}],["packages/data/src/lib/entri",{"_index":397,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/EntryListPopComponent.html":{}}}],["packages/data/src/lib/entries/entries.directive.t",{"_index":1465,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:100",{"_index":1484,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:108",{"_index":1482,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:22",{"_index":1494,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:24",{"_index":1479,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:26",{"_index":1481,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:28",{"_index":1477,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:30",{"_index":1474,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:32",{"_index":1478,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:34",{"_index":1492,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:35",{"_index":1473,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:40",{"_index":1495,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:41",{"_index":1493,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:45",{"_index":1488,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:58",{"_index":1486,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:71",{"_index":1491,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:82",{"_index":1487,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:89",{"_index":1489,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:96",{"_index":1485,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.t",{"_index":1522,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:19",{"_index":1534,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:21",{"_index":1526,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:23",{"_index":1529,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:25",{"_index":1525,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:27",{"_index":1527,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:29",{"_index":1530,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:31",{"_index":1528,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:33",{"_index":1524,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:37",{"_index":1535,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:38",{"_index":1533,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:42",{"_index":1532,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:50",{"_index":1531,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.t",{"_index":426,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:16",{"_index":457,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:18",{"_index":440,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:20",{"_index":443,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:22",{"_index":442,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:24",{"_index":445,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:26",{"_index":439,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:28",{"_index":449,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:30",{"_index":435,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:33",{"_index":458,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:37",{"_index":455,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:48",{"_index":451,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/assetgroup",{"_index":550,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.t",{"_index":1391,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:11",{"_index":1405,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:13",{"_index":1415,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:24",{"_index":1417,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:37",{"_index":1412,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:46",{"_index":1401,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:7",{"_index":1407,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:9",{"_index":1406,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/file.service.t",{"_index":1719,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["packages/data/src/lib/files/files.module.t",{"_index":1841,"title":{},"body":{"modules/FilesModule.html":{}}}],["packages/data/src/lib/files/imag",{"_index":2163,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["packages/data/src/lib/files/image/image.directive.t",{"_index":2123,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:14",{"_index":2136,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:16",{"_index":2134,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:18",{"_index":2131,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:20",{"_index":2130,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:22",{"_index":2145,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:27",{"_index":2140,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:39",{"_index":2137,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:43",{"_index":2144,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:60",{"_index":2142,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/upload",{"_index":4459,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.t",{"_index":4388,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:16",{"_index":4416,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:17",{"_index":4423,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:18",{"_index":4420,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:20",{"_index":4402,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:22",{"_index":4399,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:24",{"_index":4397,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:26",{"_index":4398,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:28",{"_index":4401,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:30",{"_index":4396,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:32",{"_index":4405,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:34",{"_index":4403,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:36",{"_index":4418,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:38",{"_index":4422,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:40",{"_index":4395,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:49",{"_index":4412,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:59",{"_index":4410,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:65",{"_index":4407,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:73",{"_index":4408,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:80",{"_index":4415,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:99",{"_index":4414,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/model",{"_index":3066,"title":{},"body":{"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"interfaces/SdkField.html":{},"injectables/TypeConfigService.html":{}}}],["packages/data/src/lib/resourc",{"_index":3531,"title":{},"body":{"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["packages/data/src/lib/resource/resource.module.t",{"_index":3830,"title":{},"body":{"modules/ResourceModule.html":{}}}],["packages/data/src/lib/sdk/history.service.t",{"_index":2032,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:15",{"_index":2055,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:17",{"_index":2038,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:20",{"_index":2054,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:21",{"_index":2053,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:22",{"_index":2058,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:23",{"_index":2057,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:26",{"_index":2050,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:42",{"_index":2040,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:52",{"_index":2046,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/sdk.module.t",{"_index":3893,"title":{},"body":{"modules/SdkModule.html":{}}}],["packages/data/src/lib/sdk/sdk.service.t",{"_index":3895,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:111",{"_index":3921,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:121",{"_index":3912,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:132",{"_index":3909,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:144",{"_index":3919,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:34",{"_index":3925,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:36",{"_index":3932,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:37",{"_index":3937,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:47",{"_index":3934,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:49",{"_index":3924,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:51",{"_index":3923,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:53",{"_index":3926,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:55",{"_index":3938,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:62",{"_index":3940,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:67",{"_index":3928,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:69",{"_index":3935,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:71",{"_index":3933,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:78",{"_index":3908,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:81",{"_index":3930,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:88",{"_index":3916,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/location/src/lib/geocode.service.t",{"_index":1967,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["packages/location/src/lib/geocode.service.ts:12",{"_index":1977,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["packages/location/src/lib/geocode.service.ts:18",{"_index":1991,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["packages/location/src/lib/geocode.service.ts:43",{"_index":1980,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["packages/location/src/lib/geocode.service.ts:49",{"_index":1983,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["packages/location/src/lib/geocode.service.ts:62",{"_index":1988,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["packages/location/src/lib/loc",{"_index":2653,"title":{},"body":{"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{}}}],["packages/location/src/lib/location.module.t",{"_index":2688,"title":{},"body":{"modules/LocationModule.html":{}}}],["packages/location/src/lib/location.module.ts:34",{"_index":2692,"title":{},"body":{"modules/LocationModule.html":{}}}],["packages/medium",{"_index":2871,"title":{},"body":{"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{}}}],["packages/styl",{"_index":4579,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["packages/tinymce/src/lib/tinymce.module.t",{"_index":4312,"title":{},"body":{"modules/TinymceModule.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.t",{"_index":4228,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:103",{"_index":4254,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:133",{"_index":4252,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:138",{"_index":4259,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:145",{"_index":4262,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:147",{"_index":4257,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:151",{"_index":4258,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:48",{"_index":4263,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:50",{"_index":4261,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:52",{"_index":4260,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:54",{"_index":4264,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:56",{"_index":4242,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:58",{"_index":4246,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:60",{"_index":4245,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:62",{"_index":4247,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:65",{"_index":4250,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:67",{"_index":4237,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:85",{"_index":4255,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:91",{"_index":4253,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:98",{"_index":4256,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/ui",{"_index":4831,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["packages/ui/src/lib/actionbar/actionbar.component.t",{"_index":339,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"miscellaneous/typealiases.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.t",{"_index":1185,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:24",{"_index":1194,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:26",{"_index":1196,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:28",{"_index":1203,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:30",{"_index":1206,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:32",{"_index":1195,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:34",{"_index":1198,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:37",{"_index":1201,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:42",{"_index":1204,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:46",{"_index":1199,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:51",{"_index":1200,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/default",{"_index":1377,"title":{},"body":{"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{}}}],["packages/ui/src/lib/form/form.module.t",{"_index":1891,"title":{},"body":{"modules/FormModule.html":{}}}],["packages/ui/src/lib/form/form.service.t",{"_index":1908,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:16",{"_index":1917,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:19",{"_index":1937,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:24",{"_index":1931,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:35",{"_index":1925,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:48",{"_index":1919,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:56",{"_index":1927,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:68",{"_index":1934,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:83",{"_index":1922,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/max",{"_index":2864,"title":{},"body":{"pipes/MaxItemsPipe.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.t",{"_index":4316,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:19",{"_index":4327,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:21",{"_index":4319,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:24",{"_index":4323,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:29",{"_index":4324,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:33",{"_index":4326,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:36",{"_index":4320,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:40",{"_index":4321,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/vis",{"_index":4506,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["packages/ui/src/lib/icon/icon.component.t",{"_index":2079,"title":{},"body":{"components/IconComponent.html":{}}}],["packages/ui/src/lib/icon/icon.component.ts:17",{"_index":2089,"title":{},"body":{"components/IconComponent.html":{}}}],["packages/ui/src/lib/icon/icon.component.ts:19",{"_index":2088,"title":{},"body":{"components/IconComponent.html":{}}}],["packages/ui/src/lib/icon/icon.component.ts:23",{"_index":2092,"title":{},"body":{"components/IconComponent.html":{}}}],["packages/ui/src/lib/icon/icon.component.ts:29",{"_index":2091,"title":{},"body":{"components/IconComponent.html":{}}}],["packages/ui/src/lib/icon/icon.component.ts:32",{"_index":2090,"title":{},"body":{"components/IconComponent.html":{}}}],["packages/ui/src/lib/icon/icon.module.t",{"_index":2118,"title":{},"body":{"modules/IconModule.html":{}}}],["packages/ui/src/lib/icon/icon.service.t",{"_index":2120,"title":{},"body":{"injectables/IconService.html":{}}}],["packages/ui/src/lib/icon/icon.service.ts:11",{"_index":2122,"title":{},"body":{"injectables/IconService.html":{}}}],["packages/ui/src/lib/io/dynam",{"_index":1431,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{}}}],["packages/ui/src/lib/io/input",{"_index":2297,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.t",{"_index":2235,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:102",{"_index":2255,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:109",{"_index":2264,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:113",{"_index":2253,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:118",{"_index":2254,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:23",{"_index":2246,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:25",{"_index":2242,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:27",{"_index":2250,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:29",{"_index":2244,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:31",{"_index":2245,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:33",{"_index":2248,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:35",{"_index":2247,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:37",{"_index":2240,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:39",{"_index":2239,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:42",{"_index":2257,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:44",{"_index":2265,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:46",{"_index":2252,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:88",{"_index":2251,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/io.module.t",{"_index":2318,"title":{},"body":{"modules/IoModule.html":{}}}],["packages/ui/src/lib/io/output/output.component.t",{"_index":3313,"title":{},"body":{"components/OutputComponent.html":{}}}],["packages/ui/src/lib/io/output/output.component.ts:14",{"_index":3314,"title":{},"body":{"components/OutputComponent.html":{}}}],["packages/ui/src/lib/io/output/output.component.ts:16",{"_index":3315,"title":{},"body":{"components/OutputComponent.html":{}}}],["packages/ui/src/lib/io/output/output.component.ts:20",{"_index":3316,"title":{},"body":{"components/OutputComponent.html":{}}}],["packages/ui/src/lib/io/slot",{"_index":4048,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["packages/ui/src/lib/list/group.pipe.t",{"_index":2027,"title":{},"body":{"pipes/GroupPipe.html":{}}}],["packages/ui/src/lib/list/group.pipe.ts:10",{"_index":2029,"title":{},"body":{"pipes/GroupPipe.html":{}}}],["packages/ui/src/lib/list/list",{"_index":2464,"title":{},"body":{"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{}}}],["packages/ui/src/lib/list/list.component.t",{"_index":2337,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:102",{"_index":2369,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:110",{"_index":2386,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:116",{"_index":2385,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:123",{"_index":2376,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:129",{"_index":2377,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:142",{"_index":2378,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:155",{"_index":2375,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:27",{"_index":2388,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:30",{"_index":2390,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:32",{"_index":2358,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:34",{"_index":2359,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:36",{"_index":2357,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:38",{"_index":2363,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:40",{"_index":2364,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:42",{"_index":2366,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:44",{"_index":2367,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:46",{"_index":2360,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:48",{"_index":2361,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:50",{"_index":2362,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:52",{"_index":2356,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:54",{"_index":2389,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:56",{"_index":2354,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:59",{"_index":2391,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:60",{"_index":2387,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:66",{"_index":2382,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:75",{"_index":2381,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.module.t",{"_index":2581,"title":{},"body":{"modules/ListModule.html":{}}}],["packages/ui/src/lib/list/pagination/pagin",{"_index":3422,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.t",{"_index":3383,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:15",{"_index":3388,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:17",{"_index":3396,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:19",{"_index":3402,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:21",{"_index":3399,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:23",{"_index":3387,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:26",{"_index":3393,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:31",{"_index":3391,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:39",{"_index":3390,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:45",{"_index":3395,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.t",{"_index":2591,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.ts:14",{"_index":2606,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.ts:16",{"_index":2607,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.ts:18",{"_index":2600,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.ts:25",{"_index":2602,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.ts:31",{"_index":2601,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.ts:38",{"_index":2604,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.module.t",{"_index":2644,"title":{},"body":{"modules/LoaderModule.html":{}}}],["packages/ui/src/lib/loader/loader.service.t",{"_index":2647,"title":{},"body":{"injectables/LoaderService.html":{}}}],["packages/ui/src/lib/loader/loader.service.ts:11",{"_index":2649,"title":{},"body":{"injectables/LoaderService.html":{}}}],["packages/ui/src/lib/loader/loader.service.ts:16",{"_index":2650,"title":{},"body":{"injectables/LoaderService.html":{}}}],["packages/ui/src/lib/loader/loader.service.ts:8",{"_index":2651,"title":{},"body":{"injectables/LoaderService.html":{}}}],["packages/ui/src/lib/loader/with",{"_index":4516,"title":{},"body":{"interfaces/WithLoader.html":{}}}],["packages/ui/src/lib/modal/modal.component.t",{"_index":3011,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:18",{"_index":3050,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:27",{"_index":3037,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:29",{"_index":3027,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:31",{"_index":3025,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:33",{"_index":3032,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:35",{"_index":3029,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:37",{"_index":3031,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:39",{"_index":3046,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:41",{"_index":3030,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:43",{"_index":3022,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:46",{"_index":3044,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:47",{"_index":3043,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:48",{"_index":3042,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:52",{"_index":3038,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:72",{"_index":3041,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:76",{"_index":3040,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/notifications/error/error.component.t",{"_index":1606,"title":{},"body":{"components/ErrorComponent.html":{}}}],["packages/ui/src/lib/notifications/error/error.component.ts:12",{"_index":1609,"title":{},"body":{"components/ErrorComponent.html":{}}}],["packages/ui/src/lib/notifications/error/error.component.ts:18",{"_index":1611,"title":{},"body":{"components/ErrorComponent.html":{}}}],["packages/ui/src/lib/notifications/error/error.component.ts:22",{"_index":1610,"title":{},"body":{"components/ErrorComponent.html":{}}}],["packages/ui/src/lib/notifications/error/error.component.ts:26",{"_index":1612,"title":{},"body":{"components/ErrorComponent.html":{}}}],["packages/ui/src/lib/notifications/notification.t",{"_index":3186,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:10",{"_index":3195,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:12",{"_index":3201,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:14",{"_index":3199,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:16",{"_index":3205,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:18",{"_index":3192,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:20",{"_index":3193,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:22",{"_index":3191,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:24",{"_index":3189,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:6",{"_index":3203,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:8",{"_index":3196,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notifications.component.t",{"_index":3208,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["packages/ui/src/lib/notifications/notifications.component.ts:19",{"_index":3213,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["packages/ui/src/lib/notifications/notifications.component.ts:21",{"_index":3212,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["packages/ui/src/lib/notifications/notifications.module.t",{"_index":3269,"title":{},"body":{"modules/NotificationsModule.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.t",{"_index":3272,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.ts:22",{"_index":3291,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.ts:24",{"_index":3293,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.ts:26",{"_index":3280,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.ts:34",{"_index":3287,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.ts:48",{"_index":3289,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.ts:61",{"_index":3282,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/with",{"_index":4519,"title":{},"body":{"interfaces/WithNotifications.html":{}}}],["packages/ui/src/lib/pop/pop.component.t",{"_index":3468,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:29",{"_index":3474,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:31",{"_index":3483,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:33",{"_index":3476,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:35",{"_index":3475,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:37",{"_index":3477,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:39",{"_index":3484,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:42",{"_index":3478,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:52",{"_index":3473,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:55",{"_index":3485,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:61",{"_index":3480,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:67",{"_index":3482,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:77",{"_index":3481,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:90",{"_index":3479,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.module.t",{"_index":3510,"title":{},"body":{"modules/PopModule.html":{}}}],["packages/ui/src/lib/pop/pop.service.t",{"_index":3514,"title":{},"body":{"injectables/PopService.html":{}}}],["packages/ui/src/lib/pop/pop.service.ts:11",{"_index":3519,"title":{},"body":{"injectables/PopService.html":{}}}],["packages/ui/src/lib/pop/pop.service.ts:9",{"_index":3520,"title":{},"body":{"injectables/PopService.html":{}}}],["packages/ui/src/lib/select/select.module.t",{"_index":3985,"title":{},"body":{"modules/SelectModule.html":{}}}],["packages/ui/src/lib/symbol/symbol.interface.t",{"_index":4095,"title":{},"body":{"interfaces/Symbol.html":{}}}],["packages/ui/src/lib/symbol/symbol.module.t",{"_index":4103,"title":{},"body":{"modules/SymbolModule.html":{}}}],["packages/ui/src/lib/symbol/symbol.pipe.t",{"_index":4119,"title":{},"body":{"injectables/SymbolPipe.html":{}}}],["packages/ui/src/lib/symbol/symbol.pipe.ts:21",{"_index":4121,"title":{},"body":{"injectables/SymbolPipe.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.t",{"_index":4125,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:12",{"_index":4149,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:15",{"_index":4147,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:17",{"_index":4148,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:18",{"_index":4150,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:23",{"_index":4130,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:28",{"_index":4135,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:37",{"_index":4138,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:46",{"_index":4128,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:53",{"_index":4142,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:58",{"_index":4144,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:66",{"_index":4133,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:71",{"_index":4136,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:77",{"_index":4140,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/ui.module.t",{"_index":4383,"title":{},"body":{"modules/UiModule.html":{}}}],["packages/ui/src/lib/utility/focus/focus.directive.t",{"_index":1859,"title":{},"body":{"directives/FocusDirective.html":{}}}],["packages/ui/src/lib/utility/focus/focus.directive.ts:13",{"_index":1862,"title":{},"body":{"directives/FocusDirective.html":{}}}],["packages/ui/src/lib/utility/focus/focus.directive.ts:8",{"_index":1861,"title":{},"body":{"directives/FocusDirective.html":{}}}],["packages/ui/src/lib/utility/focus/focus.interface.t",{"_index":1855,"title":{},"body":{"interfaces/Focus.html":{}}}],["packages/ui/src/lib/utility/focus/focus.interface.ts:6",{"_index":1858,"title":{},"body":{"interfaces/Focus.html":{}}}],["packages/ui/src/lib/utility/login",{"_index":2786,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.t",{"_index":2920,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:106",{"_index":2975,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:15",{"_index":2951,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:17",{"_index":2950,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:19",{"_index":2952,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:21",{"_index":2949,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:23",{"_index":2944,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:25",{"_index":2955,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:27",{"_index":2948,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:29",{"_index":2979,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:31",{"_index":2938,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:38",{"_index":2978,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:48",{"_index":2969,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:53",{"_index":2977,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:59",{"_index":2963,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:64",{"_index":2959,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:69",{"_index":2961,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:74",{"_index":2972,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:84",{"_index":2956,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:91",{"_index":2973,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:98",{"_index":2966,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/signup",{"_index":4014,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.t",{"_index":4170,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:11",{"_index":4176,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:13",{"_index":4178,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:15",{"_index":4177,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:17",{"_index":4179,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:19",{"_index":4180,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:21",{"_index":4174,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:24",{"_index":4184,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:27",{"_index":4181,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:32",{"_index":4182,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.t",{"_index":4188,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.ts:14",{"_index":4205,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.ts:16",{"_index":4196,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.ts:27",{"_index":4203,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.ts:38",{"_index":4197,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.ts:48",{"_index":4198,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.ts:53",{"_index":4201,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/utility.module.t",{"_index":4501,"title":{},"body":{"modules/UtilityModule.html":{}}}],["packagr/issues/696",{"_index":4153,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packagr/ng",{"_index":4152,"title":{},"body":{"injectables/SymbolService.html":{}}}],["page",{"_index":600,"title":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}},"body":{"guards/AuthGuard.html":{},"directives/EntriesDirective.html":{},"interfaces/FileOptions.html":{},"interfaces/ListConfig.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/SignupComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["page!==1",{"_index":1503,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["pagecontain",{"_index":3385,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagin",{"_index":2351,"title":{"classes/Pagination.html":{}},"body":{"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["pagination'},{'nam",{"_index":268,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["pagination.component.html",{"_index":3384,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.first",{"_index":3409,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.getpag",{"_index":3360,"title":{},"body":{"classes/Pagination.html":{}}}],["pagination.last",{"_index":3414,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.next",{"_index":3413,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.of",{"_index":3417,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.prev",{"_index":3410,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.s",{"_index":3421,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.settotal(50",{"_index":3359,"title":{},"body":{"classes/Pagination.html":{}}}],["pagination/pagin",{"_index":2408,"title":{},"body":{"components/ListComponent.html":{}}}],["pagination/pagination.compon",{"_index":2587,"title":{},"body":{"modules/ListModule.html":{}}}],["pagination?.params()?.from",{"_index":3415,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination?.params()?.to",{"_index":3416,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination?.params()?.tot",{"_index":3418,"title":{},"body":{"components/PaginationComponent.html":{}}}],["paginationcompon",{"_index":267,"title":{"components/PaginationComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["paginationconfig",{"_index":2352,"title":{"classes/PaginationConfig.html":{}},"body":{"components/ListComponent.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{}}}],["paginationconfig(this.config",{"_index":3405,"title":{},"body":{"components/PaginationComponent.html":{}}}],["param",{"_index":3321,"title":{},"body":{"classes/Pagination.html":{},"classes/Sorter.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["paramet",{"_index":91,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"miscellaneous/functions.html":{}}}],["parent",{"_index":872,"title":{},"body":{"classes/Collection.html":{},"interfaces/ItemConfig.html":{},"components/ListItemsComponent.html":{},"components/MenuComponent.html":{},"components/TabComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["parent.getpath(item",{"_index":2989,"title":{},"body":{"components/MenuComponent.html":{}}}],["parent=0",{"_index":2964,"title":{},"body":{"components/MenuComponent.html":{}}}],["pars",{"_index":3039,"title":{},"body":{"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["parsetyp",{"_index":4910,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["part",{"_index":953,"title":{},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"classes/Sorter.html":{},"additional-documentation/readme/calendar-readme.html":{}}}],["pass",{"_index":2047,"title":{},"body":{"injectables/HistoryService.html":{},"components/InputComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LoginFormComponent.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"components/SignupFormComponent.html":{},"modules/SymbolModule.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["password",{"_index":270,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["passwordlabel",{"_index":2799,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["passwordplacehold",{"_index":2800,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["passwordreset.button",{"_index":3467,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["passwordresetcompon",{"_index":269,"title":{"components/PasswordResetComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/AuthModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["passwort",{"_index":2863,"title":{},"body":{"components/LoginFormComponent.html":{},"components/PasswordResetComponent.html":{},"components/SignupFormComponent.html":{}}}],["past",{"_index":3820,"title":{},"body":{"components/ResourceListPopComponent.html":{}}}],["path",{"_index":342,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/ItemConfig.html":{},"components/MenuComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/TabsComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["paths.length",{"_index":3573,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["paths[paths.length",{"_index":4213,"title":{},"body":{"components/TabsComponent.html":{}}}],["pattern",{"_index":1219,"title":{},"body":{"pipes/DatetimePipe.html":{},"interfaces/ItemConfig.html":{},"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["pattern[0",{"_index":1232,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["pend",{"_index":3673,"title":{},"body":{"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{}}}],["per",{"_index":2459,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["peripher",{"_index":2548,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["permiss",{"_index":675,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/CrudConfig.html":{},"injectables/NotificationsService.html":{},"injectables/ResourceConfig.html":{}}}],["permissions[method",{"_index":744,"title":{},"body":{"injectables/AuthService.html":{}}}],["phone",{"_index":4352,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["pick",{"_index":2170,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/LocationPickerComponent.html":{}}}],["picker",{"_index":2707,"title":{},"body":{"components/LocationPickerComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["picker'},{'nam",{"_index":247,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["picker.compon",{"_index":2696,"title":{},"body":{"modules/LocationModule.html":{}}}],["picker.component.html",{"_index":2709,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.scss",{"_index":2708,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.t",{"_index":2706,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:24",{"_index":2714,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:26",{"_index":2716,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:28",{"_index":2715,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:30",{"_index":2726,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:32",{"_index":2729,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:34",{"_index":2713,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:37",{"_index":2724,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:43",{"_index":2720,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:55",{"_index":2723,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:61",{"_index":2721,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:77",{"_index":2727,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:79",{"_index":2717,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:83",{"_index":2718,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["pictur",{"_index":4749,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["pipe",{"_index":1213,"title":{"pipes/DatetimePipe.html":{},"pipes/GroupPipe.html":{},"pipes/MaxItemsPipe.html":{},"pipes/VisibleFieldsPipe.html":{}},"body":{"pipes/DatetimePipe.html":{},"pipes/GroupPipe.html":{},"components/InputComponent.html":{},"pipes/MaxItemsPipe.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"pipes/VisibleFieldsPipe.html":{},"overview.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["pipe(debouncetime(100",{"_index":1274,"title":{},"body":{"interfaces/Day.html":{}}}],["pipe(debouncetime(this.debounc",{"_index":4282,"title":{},"body":{"components/TinymceComponent.html":{}}}],["pipe(switchmap",{"_index":2011,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["pipetransform",{"_index":1223,"title":{},"body":{"pipes/DatetimePipe.html":{},"pipes/GroupPipe.html":{},"pipes/MaxItemsPipe.html":{},"injectables/SymbolPipe.html":{},"pipes/VisibleFieldsPipe.html":{}}}],["place",{"_index":1999,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LoaderComponent.html":{},"modules/LocationModule.html":{},"components/NotificationsComponent.html":{},"components/TabComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["place.geometri",{"_index":2002,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["place.geometry.location.lat",{"_index":2005,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["place.geometry.location.lng",{"_index":2007,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["placehold",{"_index":557,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"classes/Field.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"injectables/ModelConfigService.html":{},"components/PasswordResetComponent.html":{},"interfaces/SdkField.html":{},"components/SignupFormComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{}}}],["plain",{"_index":1750,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["plan",{"_index":658,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["platform",{"_index":3686,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["platformid",{"_index":3687,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["platformtyp",{"_index":3689,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["play",{"_index":4796,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["pleas",{"_index":1804,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["plug",{"_index":2592,"title":{},"body":{"components/LoaderComponent.html":{}}}],["plurallabel",{"_index":1033,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["plus/lib'to",{"_index":4663,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["plus/lib/jsonpath.j",{"_index":4660,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["polici",{"_index":3648,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["policy.method",{"_index":3650,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["polyfil",{"_index":2062,"title":{},"body":{"injectables/HistoryService.html":{}}}],["pop",{"_index":966,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/TinymceComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["pop'},{'nam",{"_index":197,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["pop.alt",{"_index":2220,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.compon",{"_index":978,"title":{},"body":{"components/CrudComponent.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"components/ResourceCrudComponent.html":{},"modules/ResourceModule.html":{}}}],["pop.component.html",{"_index":1543,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.t",{"_index":1542,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:15",{"_index":1555,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:16",{"_index":1554,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:17",{"_index":1556,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:18",{"_index":1562,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:19",{"_index":1590,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:20",{"_index":2173,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:21",{"_index":1566,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:22",{"_index":1553,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{}}}],["pop.component.ts:23",{"_index":3821,"title":{},"body":{"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:24",{"_index":2179,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:25",{"_index":1587,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["pop.component.ts:26",{"_index":1588,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{}}}],["pop.component.ts:27",{"_index":1586,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:28",{"_index":1585,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:29",{"_index":2180,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:30",{"_index":2181,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:31",{"_index":2177,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.component.ts:32",{"_index":2176,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.component.ts:33",{"_index":1572,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{}}}],["pop.component.ts:35",{"_index":3822,"title":{},"body":{"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:37",{"_index":2175,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.component.ts:41",{"_index":1574,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["pop.component.ts:45",{"_index":3823,"title":{},"body":{"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:50",{"_index":1571,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["pop.head",{"_index":2234,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.height",{"_index":2232,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.keepratio",{"_index":2223,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.servic",{"_index":3488,"title":{},"body":{"components/PopComponent.html":{},"modules/PopModule.html":{}}}],["pop.submitbuttonlabel",{"_index":2186,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.toggl",{"_index":2538,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["pop.width",{"_index":2228,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop/asset",{"_index":1845,"title":{},"body":{"modules/FilesModule.html":{}}}],["pop/entri",{"_index":977,"title":{},"body":{"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/EntryListPopComponent.html":{}}}],["pop/imag",{"_index":1852,"title":{},"body":{"modules/FilesModule.html":{},"components/ImageSelectPopComponent.html":{}}}],["pop/pop.compon",{"_index":2537,"title":{},"body":{"components/ListHeaderComponent.html":{},"components/ModalComponent.html":{}}}],["pop/pop.modul",{"_index":1892,"title":{},"body":{"modules/FormModule.html":{},"modules/NotificationsModule.html":{},"modules/UiModule.html":{}}}],["pop/pop.servic",{"_index":3052,"title":{},"body":{"components/ModalComponent.html":{}}}],["pop/resourc",{"_index":3779,"title":{},"body":{"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{}}}],["pop_dialog",{"_index":4358,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["popcolumn",{"_index":1034,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/ListConfig.html":{}}}],["popcompon",{"_index":272,"title":{"components/PopComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["popcomponent:29",{"_index":1558,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:31",{"_index":1591,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:33",{"_index":1561,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:35",{"_index":1560,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:37",{"_index":1563,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:39",{"_index":1593,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:42",{"_index":1568,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:55",{"_index":1594,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:61",{"_index":1578,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:67",{"_index":1584,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:77",{"_index":1582,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:90",{"_index":1575,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popmodul",{"_index":1886,"title":{"modules/PopModule.html":{}},"body":{"modules/FormModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["popmoduleconfig",{"_index":3512,"title":{},"body":{"modules/PopModule.html":{}}}],["popservic",{"_index":1545,"title":{"injectables/PopService.html":{}},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"components/ResourceListPopComponent.html":{},"overview.html":{}}}],["popservice.defaultcolumn",{"_index":1065,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["popservice.stack",{"_index":1576,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popth",{"_index":3487,"title":{},"body":{"components/PopComponent.html":{}}}],["popul",{"_index":2462,"title":{},"body":{"interfaces/ListConfig.html":{},"classes/ResourceForm.html":{}}}],["posit",{"_index":2675,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["possess",{"_index":501,"title":{},"body":{"components/AssetListComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["possibl",{"_index":1058,"title":{},"body":{"interfaces/CrudConfig.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"components/LoginFormComponent.html":{},"components/ModalComponent.html":{},"components/SignupFormComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["post",{"_index":740,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["prebuilt",{"_index":4848,"title":{},"body":{"additional-documentation/readme/style-readme.html":{}}}],["preced",{"_index":3239,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["preexist",{"_index":4115,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["prefil",{"_index":2224,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["prefix",{"_index":1113,"title":{},"body":{"injectables/CrudService.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/adding-new-packages.html":{}}}],["prequisit",{"_index":4689,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["present",{"_index":78,"title":{},"body":{"components/AceComponent.html":{},"guards/AuthGuard.html":{},"components/IconComponent.html":{},"injectables/SdkService.html":{},"components/TabsComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["preserv",{"_index":1730,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["preservefilenam",{"_index":1725,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["press",{"_index":3765,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["pretti",{"_index":4786,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["prev",{"_index":1470,"title":{},"body":{"directives/EntriesDirective.html":{},"classes/Pagination.html":{}}}],["prevent",{"_index":3896,"title":{},"body":{"injectables/SdkService.html":{}}}],["preview",{"_index":3695,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["previou",{"_index":2379,"title":{},"body":{"components/ListComponent.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{}}}],["primit",{"_index":2334,"title":{},"body":{"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"classes/Sorter.html":{},"additional-documentation/readme/core-readme.html":{}}}],["primitv",{"_index":4822,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["privat",{"_index":602,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"pipes/DatetimePipe.html":{},"directives/EntriesDirective.html":{},"interfaces/FileOptions.html":{},"injectables/GeocodeService.html":{},"directives/ImageDirective.html":{},"components/LoaderComponent.html":{},"components/LocationSearchComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"injectables/SdkService.html":{},"classes/Sorter.html":{},"components/TabsComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["pro",{"_index":4646,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["problem",{"_index":4684,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["process",{"_index":4241,"title":{},"body":{"components/TinymceComponent.html":{}}}],["prod",{"_index":4608,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["product",{"_index":4609,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["programmat",{"_index":2331,"title":{},"body":{"interfaces/ItemConfig.html":{}}}],["project",{"_index":4562,"title":{"additional-documentation/project-setup-tutorial.html":{}},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/publishing.html":{}}}],["project/node_modules/eventsource/lib",{"_index":4658,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["project/node_modules/jsonpath",{"_index":4662,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["promis",{"_index":121,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"injectables/CrudService.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"interfaces/FileOptions.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"interfaces/ItemConfig.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/MediumEditorComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"interfaces/ResourceActionbarState.html":{},"classes/ResourceForm.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["promise((resolv",{"_index":2013,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LoaderComponent.html":{},"components/TinymceComponent.html":{}}}],["promise.all(this.stack.item",{"_index":2638,"title":{},"body":{"components/LoaderComponent.html":{}}}],["promise.reject('api_not_found",{"_index":715,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.reject('cannot",{"_index":475,"title":{},"body":{"directives/AssetDirective.html":{}}}],["promise.reject('desktop",{"_index":3306,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["promise.reject('fehl",{"_index":3225,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["promise.reject('getaccount",{"_index":3977,"title":{},"body":{"injectables/SdkService.html":{}}}],["promise.reject('getschema",{"_index":3972,"title":{},"body":{"injectables/SdkService.html":{}}}],["promise.reject('no_api_found",{"_index":766,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.reject(`ecimag",{"_index":2153,"title":{},"body":{"directives/ImageDirective.html":{}}}],["promise.reject(err",{"_index":1126,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["promise.reject(this.noclientid",{"_index":708,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.resolv",{"_index":755,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/FileOptions.html":{},"injectables/NotificationsService.html":{},"injectables/SdkService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["promise.resolve().then",{"_index":1793,"title":{},"body":{"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/Upload.html":{}}}],["promise.resolve(>asset",{"_index":1809,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["promise.resolve(['get",{"_index":739,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.resolve(api",{"_index":709,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.resolve(item.config.onsave(item",{"_index":3872,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["promise.resolve(method",{"_index":734,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.resolve(result",{"_index":745,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.resolve(results.concat(method",{"_index":746,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.resolve(this.editor",{"_index":157,"title":{},"body":{"components/AceComponent.html":{},"components/MediumEditorComponent.html":{}}}],["promise.resolve(valu",{"_index":2857,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["propag",{"_index":1205,"title":{},"body":{"components/DatetimeComponent.html":{},"components/ListItemsComponent.html":{},"components/LocationPickerComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{}}}],["propagatechang",{"_index":41,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["proper",{"_index":4597,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["properli",{"_index":4744,"title":{},"body":{"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["properti",{"_index":38,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["property.interfac",{"_index":1706,"title":{},"body":{"classes/Field.html":{},"interfaces/FieldConfig.html":{}}}],["protect",{"_index":490,"title":{},"body":{"components/AssetListComponent.html":{},"classes/Collection.html":{},"interfaces/Day.html":{},"components/LoginFormComponent.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"components/SignupFormComponent.html":{}}}],["protractor",{"_index":4614,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["provd",{"_index":2557,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["provid",{"_index":24,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"components/InputComponent.html":{},"modules/IoModule.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/calendar-readme.html":{}}}],["pseudo",{"_index":4777,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["public",{"_index":44,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["publicapi",{"_index":438,"title":{},"body":{"directives/AssetDirective.html":{},"injectables/AuthService.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{}}}],["publicapi#getfieldconfig",{"_index":3095,"title":{},"body":{"injectables/ModelConfigService.html":{},"interfaces/SdkField.html":{}}}],["publicapi(shortid",{"_index":3967,"title":{},"body":{"injectables/SdkService.html":{}}}],["publicassetlist",{"_index":1735,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["publicassetresourc",{"_index":467,"title":{},"body":{"directives/AssetDirective.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"interfaces/Upload.html":{},"components/UploadSelectComponent.html":{}}}],["publicassetright",{"_index":3632,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["publish",{"_index":4593,"title":{"additional-documentation/publishing.html":{}},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["push",{"_index":3288,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["put",{"_index":741,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"injectables/HistoryService.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["qb1mro56u5katpx9j8o4",{"_index":2702,"title":{},"body":{"modules/LocationModule.html":{}}}],["queri",{"_index":2451,"title":{},"body":{"interfaces/ListConfig.html":{},"interfaces/ResourceActionbarState.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["queryfilt",{"_index":4350,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["querylist",{"_index":2533,"title":{},"body":{"components/ListHeaderComponent.html":{},"components/PaginationComponent.html":{},"components/TabsComponent.html":{}}}],["quick",{"_index":1018,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["quickli",{"_index":4734,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["rack",{"_index":1444,"title":{},"body":{"components/DynamicRackComponent.html":{}}}],["rack.compon",{"_index":2322,"title":{},"body":{"modules/IoModule.html":{}}}],["rack.component.html",{"_index":1435,"title":{},"body":{"components/DynamicRackComponent.html":{}}}],["rack.component.t",{"_index":1433,"title":{},"body":{"components/DynamicRackComponent.html":{}}}],["rack.component.ts:10",{"_index":1438,"title":{},"body":{"components/DynamicRackComponent.html":{}}}],["rack/dynam",{"_index":1432,"title":{},"body":{"components/DynamicRackComponent.html":{},"modules/IoModule.html":{}}}],["rang",{"_index":3425,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["rank",{"_index":4778,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["ratio",{"_index":2165,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["raw",{"_index":1220,"title":{},"body":{"pipes/DatetimePipe.html":{},"components/LocationPickerComponent.html":{}}}],["rawfilt",{"_index":3124,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["re",{"_index":84,"title":{},"body":{"components/AceComponent.html":{},"injectables/AuthService.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/ResourceService.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["reach",{"_index":3857,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["react",{"_index":586,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["reaction",{"_index":2766,"title":{},"body":{"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["reactiv",{"_index":2874,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["reactiveformsmodul",{"_index":630,"title":{},"body":{"modules/AuthModule.html":{},"modules/FormModule.html":{},"modules/IoModule.html":{},"modules/LocationModule.html":{},"modules/UtilityModule.html":{}}}],["read",{"_index":1059,"title":{},"body":{"interfaces/CrudConfig.html":{},"directives/ImageDirective.html":{}}}],["readabl",{"_index":1681,"title":{},"body":{"classes/Field.html":{}}}],["readi",{"_index":42,"title":{},"body":{"components/AceComponent.html":{},"injectables/AuthService.html":{},"components/MediumEditorComponent.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{}}}],["readm",{"_index":425,"title":{"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{}},"body":{"directives/AssetDirective.html":{},"classes/Collection.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"classes/Field.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ListComponent.html":{},"components/LoaderComponent.html":{},"components/LoginFormComponent.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PopComponent.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"components/TabsComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{}}}],["readonli",{"_index":558,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"interfaces/ItemConfig.html":{},"components/LocationMapComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"interfaces/SdkField.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["recent",{"_index":2837,"title":{},"body":{"components/LoginFormComponent.html":{},"components/NotificationsComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["recogn",{"_index":4911,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["recommend",{"_index":3233,"title":{},"body":{"components/NotificationsComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["reconstruct",{"_index":2383,"title":{},"body":{"components/ListComponent.html":{}}}],["redirect",{"_index":588,"title":{},"body":{"guards/AuthGuard.html":{},"components/LoginComponent.html":{},"components/SignupComponent.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["reduce((a",{"_index":751,"title":{},"body":{"injectables/AuthService.html":{}}}],["reduce((ha",{"_index":4079,"title":{},"body":{"classes/Sorter.html":{}}}],["reduce((match",{"_index":3864,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["reduce((max",{"_index":3141,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["refer",{"_index":2258,"title":{},"body":{"components/InputComponent.html":{},"injectables/LoaderService.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/publishing.html":{}}}],["referenc",{"_index":4815,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["reflect",{"_index":1254,"title":{},"body":{"interfaces/Day.html":{}}}],["regex",{"_index":3593,"title":{},"body":{"injectables/ResourceConfig.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["regexp",{"_index":2328,"title":{},"body":{"interfaces/ItemConfig.html":{},"injectables/ResourceConfig.html":{}}}],["regist",{"_index":88,"title":{},"body":{"components/AceComponent.html":{},"injectables/IconService.html":{},"components/InputComponent.html":{},"injectables/LoaderService.html":{},"injectables/SymbolService.html":{},"components/ToggleComponent.html":{}}}],["registeronchang",{"_index":53,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{}}}],["registeronchange(fn",{"_index":86,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["registerontouch",{"_index":54,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["registr",{"_index":4009,"title":{},"body":{"components/SignupComponent.html":{}}}],["registri",{"_index":2080,"title":{},"body":{"components/IconComponent.html":{},"injectables/IconService.html":{},"injectables/SymbolService.html":{}}}],["registry.find(",{"_index":4154,"title":{},"body":{"injectables/SymbolService.html":{}}}],["registry.indexof(this.get(symbol.nam",{"_index":4159,"title":{},"body":{"injectables/SymbolService.html":{}}}],["registry.push(symbol",{"_index":4160,"title":{},"body":{"injectables/SymbolService.html":{}}}],["registry[index",{"_index":4161,"title":{},"body":{"injectables/SymbolService.html":{}}}],["regular",{"_index":4511,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["reinstanti",{"_index":4949,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["reject",{"_index":2014,"title":{},"body":{"injectables/GeocodeService.html":{},"components/TinymceComponent.html":{}}}],["reject(statu",{"_index":2019,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["rel",{"_index":1365,"title":{},"body":{"interfaces/Day.html":{},"components/TabComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["relat",{"_index":498,"title":{},"body":{"components/AssetListComponent.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"modules/LocationModule.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"modules/SymbolModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["relationnam",{"_index":3599,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["relativeto",{"_index":4226,"title":{},"body":{"components/TabsComponent.html":{}}}],["releas",{"_index":1119,"title":{},"body":{"injectables/CrudService.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["releaseto",{"_index":4592,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["relev",{"_index":404,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"classes/Pagination.html":{},"injectables/ResourceService.html":{},"classes/Sorter.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["relevantkey",{"_index":3173,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["relevantkeys.foreach(key",{"_index":3177,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["relevantkeys.length",{"_index":3176,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["reli",{"_index":4821,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["reload",{"_index":956,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{}}}],["remain",{"_index":1048,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["remov",{"_index":816,"title":{},"body":{"classes/Collection.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["remove(item",{"_index":853,"title":{},"body":{"classes/Collection.html":{}}}],["removeal",{"_index":817,"title":{},"body":{"classes/Collection.html":{}}}],["removeall(item",{"_index":856,"title":{},"body":{"classes/Collection.html":{}}}],["removefilt",{"_index":2514,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["removefilter(properti",{"_index":2526,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["removeitem",{"_index":4916,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["renam",{"_index":2336,"title":{},"body":{"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"components/PopComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["render",{"_index":918,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"interfaces/FormConfig.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/MenuComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/ResourceCrudComponent.html":{},"components/TinymceComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["replac",{"_index":700,"title":{},"body":{"injectables/AuthService.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"components/LoginComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/SignupComponent.html":{},"injectables/SymbolService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/adding-new-packages.html":{}}}],["replacewith",{"_index":818,"title":{},"body":{"classes/Collection.html":{}}}],["replacewith(item",{"_index":859,"title":{},"body":{"classes/Collection.html":{}}}],["repo",{"_index":4585,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["repositori",{"_index":4574,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["repres",{"_index":1240,"title":{},"body":{"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"classes/Field.html":{}}}],["request",{"_index":2132,"title":{},"body":{"directives/ImageDirective.html":{},"components/PasswordResetComponent.html":{},"injectables/SdkService.html":{}}}],["requir",{"_index":401,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"classes/Field.html":{},"injectables/IconService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"injectables/ResourceConfig.html":{},"interfaces/SdkField.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["require(\"path",{"_index":4679,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["reset",{"_index":329,"title":{},"body":{"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"components/ListHeaderComponent.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"components/LoginFormComponent.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"components/PasswordResetComponent.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"components/SignupFormComponent.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["reset'},{'nam",{"_index":271,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["reset.compon",{"_index":639,"title":{},"body":{"modules/AuthModule.html":{}}}],["reset.component.html",{"_index":3439,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.t",{"_index":3435,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:17",{"_index":3449,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:19",{"_index":3448,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:21",{"_index":3442,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:23",{"_index":3444,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:25",{"_index":3445,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:27",{"_index":3441,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:29",{"_index":3447,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:32",{"_index":3446,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset/password",{"_index":638,"title":{},"body":{"modules/AuthModule.html":{},"components/PasswordResetComponent.html":{}}}],["reset?e=1",{"_index":3438,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["resetpassword",{"_index":668,"title":{},"body":{"injectables/AuthService.html":{}}}],["resetpassword(email",{"_index":696,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolut",{"_index":2208,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["resolution.height",{"_index":2214,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["resolution.width",{"_index":2213,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["resolv",{"_index":123,"title":{},"body":{"components/AceComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"interfaces/ItemConfig.html":{},"components/LoaderComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{},"components/TinymceComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["resolve(nam",{"_index":4134,"title":{},"body":{"injectables/SymbolService.html":{}}}],["resolve(result",{"_index":2018,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["resolve(tinymce.init(set",{"_index":4296,"title":{},"body":{"components/TinymceComponent.html":{}}}],["resolveassets(asset",{"_index":1799,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["resolved.find((resourc",{"_index":1821,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["resolvedapi",{"_index":713,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolvefn",{"_index":2494,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["resolvefn(list",{"_index":2496,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["resolvevari",{"_index":669,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolvevariables(str",{"_index":698,"title":{},"body":{"injectables/AuthService.html":{}}}],["resourc",{"_index":274,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["resource.assetid",{"_index":1822,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["resource.del().then((r",{"_index":3884,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["resource.newhistori",{"_index":2071,"title":{},"body":{"injectables/HistoryService.html":{}}}],["resource.sav",{"_index":3874,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["resource.save().then((_resourc",{"_index":3881,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["resource/resource.modul",{"_index":1180,"title":{},"body":{"modules/DataModule.html":{},"modules/FilesModule.html":{}}}],["resource[identifi",{"_index":3539,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["resource[key",{"_index":3879,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["resource[label",{"_index":3540,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["resourceact",{"_index":3563,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["resourceactionbarcompon",{"_index":273,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourceactionbarst",{"_index":3530,"title":{"interfaces/ResourceActionbarState.html":{}},"body":{"interfaces/ResourceActionbarState.html":{}}}],["resourceconfig",{"_index":488,"title":{"injectables/ResourceConfig.html":{}},"body":{"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"interfaces/FileOptions.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"overview.html":{}}}],["resourcecrudcompon",{"_index":275,"title":{"components/ResourceCrudComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourcedeletepopcompon",{"_index":276,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourceform",{"_index":3609,"title":{"classes/ResourceForm.html":{}},"body":{"injectables/ResourceConfig.html":{},"classes/ResourceForm.html":{}}}],["resourceformcompon",{"_index":278,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourcelist",{"_index":523,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/FileOptions.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["resourcelistcompon",{"_index":279,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourcelistcomponent:119",{"_index":533,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:128",{"_index":525,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:132",{"_index":529,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:25",{"_index":543,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:27",{"_index":507,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:29",{"_index":520,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:31",{"_index":514,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:33",{"_index":539,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:35",{"_index":505,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:37",{"_index":517,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:39",{"_index":509,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:48",{"_index":542,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:49",{"_index":538,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:50",{"_index":545,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:62",{"_index":522,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:83",{"_index":534,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistpopcompon",{"_index":280,"title":{"components/ResourceListPopComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourcemodul",{"_index":1154,"title":{"modules/ResourceModule.html":{}},"body":{"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/ResourceModule.html":{},"modules.html":{},"overview.html":{}}}],["resourcepopcompon",{"_index":281,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourceselectcompon",{"_index":282,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourceservic",{"_index":1076,"title":{"injectables/ResourceService.html":{}},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"classes/ResourceForm.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"overview.html":{}}}],["resourceservice.chang",{"_index":1111,"title":{},"body":{"injectables/CrudService.html":{}}}],["respons",{"_index":1798,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["response['getallitem",{"_index":1797,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["rest",{"_index":654,"title":{},"body":{"injectables/AuthService.html":{},"components/IconComponent.html":{},"injectables/SdkService.html":{}}}],["result",{"_index":320,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"changelog.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"modules.html":{},"overview.html":{},"miscellaneous/typealiases.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["results.length",{"_index":2738,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["results.push(method",{"_index":749,"title":{},"body":{"injectables/AuthService.html":{}}}],["results[0].formatted_address",{"_index":2739,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["retriev",{"_index":2469,"title":{},"body":{"injectables/ListConfigService.html":{},"injectables/ModelConfigService.html":{},"classes/Pagination.html":{}}}],["retrieve(key",{"_index":2475,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["return",{"_index":81,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["revers",{"_index":1984,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationPickerComponent.html":{},"classes/Sorter.html":{}}}],["right",{"_index":3634,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["role",{"_index":406,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{}}}],["roleid",{"_index":3735,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["root",{"_index":380,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"classes/Config.html":{},"injectables/SdkService.html":{},"modules/SymbolModule.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/adding-new-packages.html":{}}}],["rout",{"_index":489,"title":{"additional-documentation/project-setup-tutorial/routes.html":{}},"body":{"components/AssetListComponent.html":{},"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"components/MenuComponent.html":{},"components/ResourceCrudComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["route.data",{"_index":2985,"title":{},"body":{"components/MenuComponent.html":{}}}],["route.data.hidden",{"_index":2986,"title":{},"body":{"components/MenuComponent.html":{}}}],["route.param",{"_index":981,"title":{},"body":{"components/CrudComponent.html":{}}}],["route.path",{"_index":2983,"title":{},"body":{"components/MenuComponent.html":{}}}],["route.path.indexof",{"_index":2984,"title":{},"body":{"components/MenuComponent.html":{}}}],["route.queryparam",{"_index":982,"title":{},"body":{"components/CrudComponent.html":{}}}],["router",{"_index":927,"title":{},"body":{"components/CrudComponent.html":{},"injectables/HistoryService.html":{},"components/MenuComponent.html":{},"components/ResourceCrudComponent.html":{},"components/TabsComponent.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["routermodul",{"_index":1162,"title":{},"body":{"modules/DataModule.html":{},"modules/UtilityModule.html":{}}}],["routing.module.t",{"_index":4738,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["row",{"_index":2327,"title":{},"body":{"interfaces/ItemConfig.html":{}}}],["run",{"_index":1679,"title":{},"body":{"classes/Field.html":{},"classes/ResourceForm.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["runtim",{"_index":3899,"title":{},"body":{"injectables/SdkService.html":{}}}],["rxfilter",{"_index":3855,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["rxfilter((chang",{"_index":3869,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["rxj",{"_index":597,"title":{},"body":{"guards/AuthGuard.html":{},"classes/Collection.html":{},"injectables/CrudService.html":{},"interfaces/Day.html":{},"injectables/GeocodeService.html":{},"components/LoginFormComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"dependencies.html":{},"additional-documentation/adding-new-packages.html":{}}}],["rxjs';9",{"_index":5034,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["rxjs/oper",{"_index":1245,"title":{},"body":{"interfaces/Day.html":{},"injectables/GeocodeService.html":{},"components/InputComponent.html":{},"injectables/ResourceService.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{}}}],["rxjs/subject",{"_index":5033,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["s.name",{"_index":4155,"title":{},"body":{"injectables/SymbolService.html":{}}}],["safedelet",{"_index":1035,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["safeput",{"_index":1101,"title":{},"body":{"injectables/CrudService.html":{}}}],["same",{"_index":827,"title":{},"body":{"classes/Collection.html":{},"pipes/DatetimePipe.html":{},"pipes/GroupPipe.html":{},"components/MenuComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["sandbox.scss",{"_index":4706,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["save",{"_index":1050,"title":{},"body":{"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"classes/ResourceForm.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["save(item",{"_index":3849,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["save(model",{"_index":1096,"title":{},"body":{"injectables/CrudService.html":{}}}],["save(valu",{"_index":3805,"title":{},"body":{"classes/ResourceForm.html":{}}}],["save2",{"_index":4843,"title":{},"body":{"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{}}}],["savethi",{"_index":4701,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme/style-readme.html":{}}}],["scaffold",{"_index":4604,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["scale",{"_index":3086,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["schema",{"_index":3070,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["schemarequest",{"_index":3902,"title":{},"body":{"injectables/SdkService.html":{}}}],["script",{"_index":4589,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["scss",{"_index":4651,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme/style-readme.html":{}}}],["scssmake",{"_index":4698,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["sdk",{"_index":411,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DefaultEntryInputComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["sdk.api",{"_index":437,"title":{},"body":{"directives/AssetDirective.html":{},"components/PasswordResetComponent.html":{},"components/UploadComponent.html":{}}}],["sdk.init",{"_index":3897,"title":{},"body":{"injectables/SdkService.html":{}}}],["sdk.servic",{"_index":3894,"title":{},"body":{"modules/SdkModule.html":{}}}],["sdk/history.servic",{"_index":1181,"title":{},"body":{"modules/DataModule.html":{}}}],["sdk/sdk.modul",{"_index":1182,"title":{},"body":{"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/ResourceModule.html":{}}}],["sdk/sdk.servic",{"_index":416,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DefaultEntryInputComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["sdkfield",{"_index":3885,"title":{"interfaces/SdkField.html":{}},"body":{"interfaces/SdkField.html":{}}}],["sdkmodul",{"_index":1155,"title":{"modules/SdkModule.html":{}},"body":{"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules.html":{},"overview.html":{}}}],["sdkservic",{"_index":413,"title":{"injectables/SdkService.html":{}},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DefaultEntryInputComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"overview.html":{}}}],["sdkservice#api",{"_index":2763,"title":{},"body":{"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["search",{"_index":1641,"title":{},"body":{"classes/Field.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["search'},{'nam",{"_index":249,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["search.compon",{"_index":2697,"title":{},"body":{"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{}}}],["search.component.html",{"_index":2743,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["search.component.t",{"_index":2741,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["search.component.ts:16",{"_index":2746,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["search.component.ts:18",{"_index":2750,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["search.component.ts:20",{"_index":2745,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["search.component.ts:28",{"_index":2747,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["search.component.ts:34",{"_index":2748,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["searchbar",{"_index":1546,"title":{},"body":{"components/EntryListPopComponent.html":{},"injectables/GeocodeService.html":{},"interfaces/ItemConfig.html":{},"components/LocationSearchComponent.html":{},"components/ResourceListPopComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["searchbar'},{'nam",{"_index":284,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["searchbar/searchbar.compon",{"_index":2588,"title":{},"body":{"modules/ListModule.html":{}}}],["searchbarcompon",{"_index":283,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["searchinput",{"_index":2744,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["second",{"_index":2402,"title":{},"body":{"components/ListComponent.html":{}}}],["section",{"_index":3486,"title":{},"body":{"components/PopComponent.html":{}}}],["see",{"_index":502,"title":{},"body":{"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"components/ResourceCrudComponent.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["sein",{"_index":4761,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["seit",{"_index":606,"title":{},"body":{"guards/AuthGuard.html":{}}}],["select",{"_index":232,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["select'},{'nam",{"_index":191,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select(item",{"_index":1573,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["select(pag",{"_index":3346,"title":{},"body":{"classes/Pagination.html":{}}}],["select(tab",{"_index":4199,"title":{},"body":{"components/TabsComponent.html":{}}}],["select.compon",{"_index":1176,"title":{},"body":{"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/ResourceModule.html":{},"modules/SelectModule.html":{}}}],["select.component.html",{"_index":553,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select.component.t",{"_index":552,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select.component.ts:12",{"_index":565,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["select.component.ts:13",{"_index":562,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["select.component.ts:14",{"_index":563,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["select.component.ts:15",{"_index":564,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["select.component.ts:16",{"_index":566,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select.component.ts:17",{"_index":561,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select.component.ts:18",{"_index":4470,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:19",{"_index":4468,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:20",{"_index":568,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select.component.ts:21",{"_index":4471,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:23",{"_index":567,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select.component.ts:25",{"_index":4473,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:26",{"_index":4472,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:27",{"_index":4469,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:29",{"_index":4484,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:31",{"_index":4485,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:33",{"_index":4482,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:35",{"_index":4467,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:37",{"_index":4481,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:39",{"_index":4474,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:42",{"_index":4475,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:47",{"_index":4476,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:54",{"_index":4480,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:60",{"_index":4478,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.emit(item",{"_index":2372,"title":{},"body":{"components/ListComponent.html":{}}}],["select/asset",{"_index":1846,"title":{},"body":{"modules/FilesModule.html":{}}}],["select/assetgroup",{"_index":551,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"modules/FilesModule.html":{}}}],["select/entri",{"_index":1175,"title":{},"body":{"modules/DataModule.html":{}}}],["select/resourc",{"_index":3832,"title":{},"body":{"modules/ResourceModule.html":{}}}],["select/select.compon",{"_index":347,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["select/select.component.html",{"_index":352,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["select/select.modul",{"_index":4385,"title":{},"body":{"modules/UiModule.html":{}}}],["select/tag",{"_index":1853,"title":{},"body":{"modules/FilesModule.html":{}}}],["select/upload",{"_index":1851,"title":{},"body":{"modules/FilesModule.html":{},"components/UploadSelectComponent.html":{}}}],["selectbyurl",{"_index":4195,"title":{},"body":{"components/TabsComponent.html":{}}}],["selectbyurl(url",{"_index":4202,"title":{},"body":{"components/TabsComponent.html":{}}}],["selectcompon",{"_index":285,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["selectday(_mo",{"_index":1353,"title":{},"body":{"interfaces/Day.html":{}}}],["selectentri",{"_index":931,"title":{},"body":{"components/CrudComponent.html":{}}}],["selectentry(item",{"_index":962,"title":{},"body":{"components/CrudComponent.html":{}}}],["selectindex",{"_index":2348,"title":{},"body":{"components/ListComponent.html":{}}}],["selectindex(index",{"_index":2384,"title":{},"body":{"components/ListComponent.html":{}}}],["selection.config.solo",{"_index":1833,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["selection.select(upload.item",{"_index":1834,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["selection.toggl",{"_index":2374,"title":{},"body":{"components/ListComponent.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["selection.toggleall(upload.item",{"_index":1835,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["selectmod",{"_index":2452,"title":{},"body":{"interfaces/ListConfig.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["selectmodul",{"_index":3979,"title":{"modules/SelectModule.html":{}},"body":{"modules/SelectModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["selectmoduleconfig",{"_index":3988,"title":{},"body":{"modules/SelectModule.html":{}}}],["selector",{"_index":31,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["selecttempl",{"_index":3534,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["selectupload(upload",{"_index":1831,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["self",{"_index":3569,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["self.indexof(valu",{"_index":3570,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["semicolon",{"_index":5035,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["send",{"_index":3436,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["sensit",{"_index":4074,"title":{},"body":{"classes/Sorter.html":{}}}],["sent",{"_index":3452,"title":{},"body":{"components/PasswordResetComponent.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["seper",{"_index":4766,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["serial",{"_index":3807,"title":{},"body":{"classes/ResourceForm.html":{}}}],["serv",{"_index":4601,"title":{},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["server",{"_index":4189,"title":{},"body":{"components/TabsComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{}}}],["server:generic\",now",{"_index":4677,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["servic",{"_index":626,"title":{},"body":{"modules/AuthModule.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/IconService.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"modules/LocationModule.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"injectables/ResourceService.html":{},"modules/SymbolModule.html":{},"injectables/SymbolService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["session",{"_index":3903,"title":{},"body":{"injectables/SdkService.html":{}}}],["session(environment.environ",{"_index":3957,"title":{},"body":{"injectables/SdkService.html":{}}}],["set",{"_index":79,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"interfaces/Symbol.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/publishing.html":{}}}],["set([this.config.s",{"_index":3364,"title":{},"body":{"classes/Pagination.html":{}}}],["set(key",{"_index":2477,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["set(properti",{"_index":3107,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["set(symbol",{"_index":4137,"title":{},"body":{"injectables/SymbolService.html":{}}}],["set(typ",{"_index":4342,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["setapi(api",{"_index":3939,"title":{},"body":{"injectables/SdkService.html":{}}}],["setclientid",{"_index":660,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["setdate(d",{"_index":1347,"title":{},"body":{"interfaces/Day.html":{}}}],["setemptystringstonul",{"_index":3838,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["setgroup",{"_index":4393,"title":{},"body":{"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["setgroup(group",{"_index":4409,"title":{},"body":{"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["setmod",{"_index":55,"title":{},"body":{"components/AceComponent.html":{}}}],["setmode(mod",{"_index":96,"title":{},"body":{"components/AceComponent.html":{}}}],["setter",{"_index":901,"title":{},"body":{"classes/Config.html":{}}}],["setthem",{"_index":56,"title":{},"body":{"components/AceComponent.html":{}}}],["settheme(them",{"_index":101,"title":{},"body":{"components/AceComponent.html":{}}}],["settimeout",{"_index":392,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/MenuComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/TinymceComponent.html":{},"components/UploadSelectComponent.html":{}}}],["settimeout(resolv",{"_index":2620,"title":{},"body":{"components/LoaderComponent.html":{}}}],["settot",{"_index":3322,"title":{},"body":{"classes/Pagination.html":{}}}],["settotal(itemcount",{"_index":3378,"title":{},"body":{"classes/Pagination.html":{}}}],["settotal(tot",{"_index":3349,"title":{},"body":{"classes/Pagination.html":{}}}],["setup",{"_index":4104,"title":{"additional-documentation/project-setup-tutorial.html":{}},"body":{"modules/SymbolModule.html":{},"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/publishing.html":{}}}],["seturl",{"_index":2128,"title":{},"body":{"directives/ImageDirective.html":{}}}],["seturl(url",{"_index":2141,"title":{},"body":{"directives/ImageDirective.html":{}}}],["setvalu",{"_index":2658,"title":{},"body":{"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{}}}],["setvalue(valu",{"_index":2671,"title":{},"body":{"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{}}}],["short",{"_index":3922,"title":{},"body":{"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial/routes.html":{}}}],["shorthand",{"_index":4699,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["shortid",{"_index":3167,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["shouldbepartofform",{"_index":1915,"title":{},"body":{"injectables/FormService.html":{}}}],["shouldbepartofform(field",{"_index":1930,"title":{},"body":{"injectables/FormService.html":{}}}],["shouldn't",{"_index":4808,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["show",{"_index":1257,"title":{},"body":{"interfaces/Day.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ListConfig.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/publishing.html":{}}}],["show(",{"_index":1581,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["showerror",{"_index":2794,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["showerror(err",{"_index":2832,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["showhead",{"_index":2349,"title":{},"body":{"components/ListComponent.html":{}}}],["showlabel",{"_index":2801,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["shown",{"_index":508,"title":{},"body":{"components/AssetListComponent.html":{},"guards/AuthGuard.html":{},"interfaces/CrudConfig.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"components/LoginFormComponent.html":{},"components/MenuComponent.html":{},"classes/Notification.html":{},"injectables/NotificationsService.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["shownotif",{"_index":3218,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["showrawvalu",{"_index":2711,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["showurlinput",{"_index":4460,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["sie",{"_index":611,"title":{},"body":{"guards/AuthGuard.html":{},"components/PasswordResetComponent.html":{}}}],["signup",{"_index":289,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{}}}],["signup'},{'nam",{"_index":287,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["signup(undefin",{"_index":701,"title":{},"body":{"injectables/AuthService.html":{},"components/SignupComponent.html":{}}}],["signup(valu",{"_index":4033,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["signup.component.html",{"_index":3992,"title":{},"body":{"components/SignupComponent.html":{}}}],["signup/signup.compon",{"_index":640,"title":{},"body":{"modules/AuthModule.html":{}}}],["signupcompon",{"_index":286,"title":{"components/SignupComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/AuthModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["signupformcompon",{"_index":288,"title":{"components/SignupFormComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["silent",{"_index":3347,"title":{},"body":{"classes/Pagination.html":{},"interfaces/WithNotifications.html":{}}}],["simi",{"_index":910,"title":{},"body":{"classes/Config.html":{}}}],["simibug",{"_index":1499,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["similar",{"_index":1656,"title":{},"body":{"classes/Field.html":{},"components/IconComponent.html":{},"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["simpl",{"_index":3215,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["sind",{"_index":612,"title":{},"body":{"guards/AuthGuard.html":{}}}],["singl",{"_index":459,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntryDirective.html":{},"classes/ResourceForm.html":{}}}],["singleton",{"_index":4057,"title":{},"body":{"classes/Sorter.html":{}}}],["singularlabel",{"_index":1036,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["site",{"_index":2625,"title":{},"body":{"components/LoaderComponent.html":{}}}],["situat",{"_index":4329,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["size",{"_index":1814,"title":{},"body":{"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ListConfig.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["skip",{"_index":506,"title":{},"body":{"components/AssetListComponent.html":{}}}],["skiprout",{"_index":4200,"title":{},"body":{"components/TabsComponent.html":{}}}],["slice",{"_index":2866,"title":{},"body":{"pipes/MaxItemsPipe.html":{},"classes/Pagination.html":{}}}],["slice(item",{"_index":3353,"title":{},"body":{"classes/Pagination.html":{}}}],["slot",{"_index":1447,"title":{},"body":{"components/DynamicSlotComponent.html":{},"modules/IoModule.html":{},"components/TabsComponent.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["slot'},{'nam",{"_index":215,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["slot.compon",{"_index":2269,"title":{},"body":{"components/InputComponent.html":{},"modules/IoModule.html":{},"components/OutputComponent.html":{}}}],["slot.component.html",{"_index":1448,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["slot.component.t",{"_index":1446,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["slot.component.ts:11",{"_index":1451,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["slot.component.ts:14",{"_index":1455,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["slot.component.ts:18",{"_index":1453,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["slot/dynam",{"_index":1445,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"modules/IoModule.html":{},"components/OutputComponent.html":{}}}],["slothostdirect",{"_index":317,"title":{"directives/SlotHostDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["sm",{"_index":1715,"title":{},"body":{"classes/Field.html":{}}}],["smoother",{"_index":3431,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["snackbar",{"_index":3049,"title":{},"body":{"components/ModalComponent.html":{}}}],["snippet",{"_index":4762,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["soeben",{"_index":3456,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["solo",{"_index":499,"title":{},"body":{"components/AssetListComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{}}}],["somebodi",{"_index":1802,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["somemodul",{"_index":2099,"title":{},"body":{"components/IconComponent.html":{}}}],["sometim",{"_index":4965,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["somewher",{"_index":145,"title":{},"body":{"components/AceComponent.html":{},"components/NotificationsComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["soon",{"_index":424,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"directives/EntryDirective.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["sophist",{"_index":810,"title":{},"body":{"classes/Collection.html":{}}}],["sort",{"_index":1690,"title":{},"body":{"classes/Field.html":{},"interfaces/ListConfig.html":{},"classes/Sorter.html":{},"miscellaneous/functions.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{}}}],["sort(((a",{"_index":3367,"title":{},"body":{"classes/Pagination.html":{}}}],["sort(item",{"_index":4067,"title":{},"body":{"classes/Sorter.html":{}}}],["sortabl",{"_index":1632,"title":{},"body":{"classes/Field.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{}}}],["sortbi",{"_index":2453,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["sortboolean",{"_index":4062,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["sortboolean(a",{"_index":4078,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["sorter",{"_index":4055,"title":{"classes/Sorter.html":{}},"body":{"classes/Sorter.html":{}}}],["sortnumb",{"_index":4061,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["sortnumber(a",{"_index":4077,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["sortstr",{"_index":4060,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["sortstring(a",{"_index":4075,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["sorttyp",{"_index":4058,"title":{},"body":{"classes/Sorter.html":{}}}],["sourc",{"_index":3,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/readme.html":{}}}],["source.addeventlistener('entrycr",{"_index":2077,"title":{},"body":{"injectables/HistoryService.html":{}}}],["source.addeventlistener('entryupd",{"_index":2074,"title":{},"body":{"injectables/HistoryService.html":{}}}],["span",{"_index":1256,"title":{},"body":{"interfaces/Day.html":{}}}],["spanchang",{"_index":1266,"title":{},"body":{"interfaces/Day.html":{}}}],["spancolor",{"_index":1258,"title":{},"body":{"interfaces/Day.html":{}}}],["speakingurl",{"_index":4817,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["specif",{"_index":1674,"title":{},"body":{"classes/Field.html":{},"components/LoaderComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{}}}],["specifi",{"_index":98,"title":{},"body":{"components/AceComponent.html":{},"components/LoginComponent.html":{},"components/ModalComponent.html":{},"injectables/NotificationsService.html":{},"interfaces/ResourceActionbarState.html":{},"components/SignupComponent.html":{},"interfaces/Symbol.html":{},"injectables/SymbolService.html":{}}}],["splice(1).join",{"_index":3060,"title":{},"body":{"components/ModalComponent.html":{}}}],["spreadsheet",{"_index":1752,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["squar",{"_index":2135,"title":{},"body":{"directives/ImageDirective.html":{}}}],["src",{"_index":2126,"title":{},"body":{"directives/ImageDirective.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["src/app/app",{"_index":4737,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["src/app/app.component.html",{"_index":4726,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["src/app/app.modul",{"_index":4715,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["src/app/muffins/muffins.component.html",{"_index":4736,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["src/environ",{"_index":4708,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["src/environments/environment.prod.t",{"_index":4712,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["src/environments/environment.t",{"_index":4710,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["ssl",{"_index":4721,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["ssl\",without",{"_index":4722,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["stack",{"_index":2597,"title":{},"body":{"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["stackblitz",{"_index":5041,"title":{"additional-documentation/stackblitz.html":{}},"body":{"additional-documentation/stackblitz.html":{}}}],["stage",{"_index":652,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["stand",{"_index":903,"title":{},"body":{"classes/Config.html":{}}}],["standard",{"_index":5015,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["start",{"_index":1192,"title":{"changelog.html":{},"index.html":{}},"body":{"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"pipes/MaxItemsPipe.html":{},"components/TabComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["startnow",{"_index":4730,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["startth",{"_index":4588,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["state",{"_index":1073,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"components/ListHeaderComponent.html":{},"classes/Pagination.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["statement",{"_index":4887,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["static",{"_index":782,"title":{},"body":{"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/LocationModule.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{}}}],["statu",{"_index":2016,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LoaderComponent.html":{}}}],["stay",{"_index":1592,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/SymbolService.html":{}}}],["step",{"_index":3162,"title":{},"body":{"injectables/ModelConfigService.html":{},"additional-documentation/adding-new-packages.html":{}}}],["sticki",{"_index":1011,"title":{},"body":{"components/CrudComponent.html":{},"components/LoginComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/PasswordResetComponent.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{}}}],["still",{"_index":4367,"title":{},"body":{"injectables/TypeConfigService.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["stop",{"_index":1803,"title":{},"body":{"interfaces/FileOptions.html":{},"components/LoaderComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["storag",{"_index":2461,"title":{},"body":{"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{}}}],["storagekey",{"_index":2454,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["storagekeyresolv",{"_index":2466,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["store",{"_index":2051,"title":{},"body":{"injectables/HistoryService.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["store(key",{"_index":2479,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["storeconfig",{"_index":2470,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["storeconfig(list",{"_index":2481,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["strategy=endless",{"_index":1504,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["stream",{"_index":2042,"title":{},"body":{"injectables/HistoryService.html":{}}}],["string",{"_index":70,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"miscellaneous/functions.html":{}}}],["string,valu",{"_index":528,"title":{},"body":{"components/AssetListComponent.html":{}}}],["string.replac",{"_index":732,"title":{},"body":{"injectables/AuthService.html":{}}}],["stringfield",{"_index":3587,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["stringfield(label",{"_index":3602,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["stringifi",{"_index":4894,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["strong",{"_index":4784,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["strong.component.t",{"_index":4783,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["strongcompon",{"_index":4782,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["structur",{"_index":1676,"title":{},"body":{"classes/Field.html":{},"components/ListComponent.html":{}}}],["stuff",{"_index":2594,"title":{},"body":{"components/LoaderComponent.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/adding-new-packages.html":{}}}],["style",{"_index":5,"title":{"additional-documentation/readme/style-readme.html":{},"additional-documentation/changelog/style-changelog.html":{}},"body":{"components/AceComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["styles.scss",{"_index":4702,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["styleurl",{"_index":33,"title":{},"body":{"components/AceComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/TinymceComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["sub",{"_index":904,"title":{},"body":{"classes/Config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["subbranch",{"_index":2333,"title":{},"body":{"interfaces/ItemConfig.html":{}}}],["subclass",{"_index":2829,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["subject",{"_index":596,"title":{},"body":{"guards/AuthGuard.html":{},"classes/Collection.html":{},"interfaces/Day.html":{},"components/LoginComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"additional-documentation/adding-new-packages.html":{}}}],["submenu",{"_index":2939,"title":{},"body":{"components/MenuComponent.html":{}}}],["submit",{"_index":1875,"title":{},"body":{"interfaces/FormConfig.html":{},"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["submitbuttonlabel",{"_index":1874,"title":{},"body":{"interfaces/FormConfig.html":{},"components/ImageSelectPopComponent.html":{}}}],["subscrib",{"_index":536,"title":{},"body":{"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"components/LocationSearchComponent.html":{},"components/PaginationComponent.html":{},"injectables/ResourceService.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["subscribe((chang",{"_index":2285,"title":{},"body":{"components/InputComponent.html":{}}}],["subscribe((day",{"_index":1275,"title":{},"body":{"interfaces/Day.html":{}}}],["subscribe((ev",{"_index":1866,"title":{},"body":{"directives/FocusDirective.html":{}}}],["subscribe(editor",{"_index":4283,"title":{},"body":{"components/TinymceComponent.html":{}}}],["subscribe(timespan",{"_index":1278,"title":{},"body":{"interfaces/Day.html":{}}}],["subtract(weeksbefor",{"_index":1324,"title":{},"body":{"interfaces/Day.html":{}}}],["succes",{"_index":2824,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["success",{"_index":2758,"title":{},"body":{"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/PasswordResetComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadComponent.html":{}}}],["success/error",{"_index":3231,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["successfulli",{"_index":1049,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/LoginFormComponent.html":{},"components/NotificationsComponent.html":{},"components/SignupFormComponent.html":{}}}],["such",{"_index":1677,"title":{},"body":{"classes/Field.html":{}}}],["suitabl",{"_index":1682,"title":{},"body":{"classes/Field.html":{},"additional-documentation/readme/location-readme.html":{}}}],["summary.json",{"_index":5040,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["super",{"_index":419,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/LocationPickerComponent.html":{},"injectables/ModelConfigService.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["super(bodi",{"_index":3816,"title":{},"body":{"classes/ResourceForm.html":{}}}],["super(elementref",{"_index":359,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/ResourceActionbarState.html":{}}}],["super(popservic",{"_index":1597,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["super(sdk",{"_index":2147,"title":{},"body":{"directives/ImageDirective.html":{}}}],["super.filterdropdownlist(listcompon",{"_index":3574,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["super.load",{"_index":2138,"title":{},"body":{"directives/ImageDirective.html":{}}}],["super.load(id).then(this.use.bind(thi",{"_index":2151,"title":{},"body":{"directives/ImageDirective.html":{}}}],["support",{"_index":1057,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/ModalComponent.html":{},"injectables/NotificationsService.html":{},"modules.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["sure",{"_index":67,"title":{},"body":{"components/AceComponent.html":{},"injectables/CrudService.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/ResourceListPopComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["svg",{"_index":4618,"title":{},"body":{"modules.html":{}}}],["switch",{"_index":1046,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/LoaderComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["switchmap",{"_index":1993,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["symbol",{"_index":937,"title":{"interfaces/Symbol.html":{}},"body":{"components/CrudComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/ErrorComponent.html":{},"injectables/FormService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputErrorsComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"injectables/ModelConfigService.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceConfig.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["symbol'",{"_index":4109,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["symbol.cont",{"_index":4157,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symbol.interfac",{"_index":4123,"title":{},"body":{"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{}}}],["symbol.languag",{"_index":4113,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["symbol.pip",{"_index":4118,"title":{},"body":{"modules/SymbolModule.html":{}}}],["symbol.servic",{"_index":4117,"title":{},"body":{"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{}}}],["symbol/symbol.interfac",{"_index":2105,"title":{},"body":{"components/IconComponent.html":{},"injectables/IconService.html":{}}}],["symbol/symbol.modul",{"_index":1902,"title":{},"body":{"modules/FormModule.html":{},"modules/ListModule.html":{},"modules/UiModule.html":{}}}],["symbol/symbol.servic",{"_index":1224,"title":{},"body":{"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"injectables/FormService.html":{},"injectables/IconService.html":{},"components/InputErrorsComponent.html":{},"components/LoginFormComponent.html":{},"classes/PaginationConfig.html":{}}}],["symbolmodul",{"_index":1889,"title":{"modules/SymbolModule.html":{}},"body":{"modules/FormModule.html":{},"modules/ListModule.html":{},"modules/SymbolModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["symbolpip",{"_index":4102,"title":{"injectables/SymbolPipe.html":{}},"body":{"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"overview.html":{}}}],["symbols.map(symbol",{"_index":4158,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symbolservic",{"_index":938,"title":{"injectables/SymbolService.html":{}},"body":{"components/CrudComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/ErrorComponent.html":{},"injectables/FormService.html":{},"injectables/IconService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputErrorsComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"injectables/ModelConfigService.html":{},"classes/PaginationConfig.html":{},"injectables/ResourceConfig.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["symbolservice#set",{"_index":4110,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["symbolservice.get(nam",{"_index":4156,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symbolservice.registri",{"_index":4132,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symbolservice.resolv",{"_index":4122,"title":{},"body":{"injectables/SymbolPipe.html":{}}}],["symbolservice.resolve('moment.format.d",{"_index":1904,"title":{},"body":{"modules/FormModule.html":{}}}],["symbolservice.resolve('moment.format.month",{"_index":1906,"title":{},"body":{"modules/FormModule.html":{}}}],["symbolservice.resolve('moment.format.tim",{"_index":1905,"title":{},"body":{"modules/FormModule.html":{}}}],["symbolservice.resolve(nam",{"_index":4168,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symbolservice.set(symbol",{"_index":4169,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symbolservice.sets[object.keys(symbolservice.sets)[0",{"_index":4146,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symlink",{"_index":4580,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["sync",{"_index":3651,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["syntax",{"_index":4772,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["system",{"_index":1095,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"interfaces/Update.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["t",{"_index":828,"title":{},"body":{"classes/Collection.html":{},"interfaces/ItemConfig.html":{}}}],["tab",{"_index":4171,"title":{},"body":{"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["tab'",{"_index":4175,"title":{},"body":{"components/TabComponent.html":{}}}],["tab'},{'nam",{"_index":291,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["tab.activ",{"_index":4223,"title":{},"body":{"components/TabsComponent.html":{}}}],["tab.component.html",{"_index":4172,"title":{},"body":{"components/TabComponent.html":{}}}],["tab.el.nativeelement.getattribute('select",{"_index":4218,"title":{},"body":{"components/TabsComponent.html":{}}}],["tab.label",{"_index":4227,"title":{},"body":{"components/TabsComponent.html":{}}}],["tab.par",{"_index":4217,"title":{},"body":{"components/TabsComponent.html":{}}}],["tab.rout",{"_index":4224,"title":{},"body":{"components/TabsComponent.html":{}}}],["tab/tab.compon",{"_index":4207,"title":{},"body":{"components/TabsComponent.html":{},"modules/UtilityModule.html":{}}}],["tabcompon",{"_index":290,"title":{"components/TabComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["tabl",{"_index":1247,"title":{},"body":{"interfaces/Day.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["tabs'},{'nam",{"_index":293,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["tabs.component.html",{"_index":4192,"title":{},"body":{"components/TabsComponent.html":{}}}],["tabs/tabs.compon",{"_index":4185,"title":{},"body":{"components/TabComponent.html":{},"modules/UtilityModule.html":{}}}],["tabscompon",{"_index":292,"title":{"components/TabsComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["tag",{"_index":295,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["tagselectcompon",{"_index":294,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["tagsfield",{"_index":3588,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["tagsfield(label",{"_index":3604,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["take",{"_index":917,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/ErrorComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["target",{"_index":135,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/LoaderComponent.html":{},"components/LocationPickerComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"components/TinymceComponent.html":{}}}],["targetid",{"_index":3750,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["targettyp",{"_index":3751,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["task",{"_index":4591,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["tell",{"_index":1663,"title":{},"body":{"classes/Field.html":{},"interfaces/ListConfig.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"classes/Pagination.html":{},"interfaces/SdkField.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["templat",{"_index":4,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"modules/SymbolModule.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/publishing.html":{}}}],["template::view",{"_index":3677,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["templateid",{"_index":3676,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["templateref",{"_index":3028,"title":{},"body":{"components/ModalComponent.html":{}}}],["templateurl",{"_index":35,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"modules/SymbolModule.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["test",{"_index":4069,"title":{},"body":{"classes/Sorter.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["text",{"_index":1390,"title":{},"body":{"components/DefaultOutputComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/MenuComponent.html":{},"interfaces/Symbol.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["textarea",{"_index":4346,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["that",{"_index":4729,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["theme",{"_index":59,"title":{},"body":{"components/AceComponent.html":{}}}],["themelist.j",{"_index":153,"title":{},"body":{"components/AceComponent.html":{}}}],["then((_entri",{"_index":1124,"title":{},"body":{"injectables/CrudService.html":{}}}],["then((_resourc",{"_index":3877,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["then((_upload",{"_index":4444,"title":{},"body":{"components/UploadComponent.html":{}}}],["then((asset",{"_index":481,"title":{},"body":{"directives/AssetDirective.html":{},"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["then((assetlist",{"_index":1783,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["then((avail",{"_index":768,"title":{},"body":{"injectables/AuthService.html":{}}}],["then((entri",{"_index":1145,"title":{},"body":{"injectables/CrudService.html":{},"directives/EntryDirective.html":{}}}],["then((fieldconfig",{"_index":3171,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["then((loadedentri",{"_index":1002,"title":{},"body":{"components/CrudComponent.html":{}}}],["then((method",{"_index":986,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["then((minlevel",{"_index":995,"title":{},"body":{"components/CrudComponent.html":{}}}],["then((modelconfig",{"_index":3130,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["then((r",{"_index":723,"title":{},"body":{"injectables/AuthService.html":{},"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["then((resolvedapi",{"_index":711,"title":{},"body":{"injectables/AuthService.html":{}}}],["then((resourc",{"_index":3883,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["then((respons",{"_index":1796,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["then((upload",{"_index":1789,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["then((us",{"_index":2778,"title":{},"body":{"components/LoginComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{}}}],["then(_method",{"_index":756,"title":{},"body":{"injectables/AuthService.html":{}}}],["then(act",{"_index":3559,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["then(asset",{"_index":2192,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["then(dmassetlist",{"_index":1816,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["then(list",{"_index":1507,"title":{},"body":{"directives/EntriesDirective.html":{},"interfaces/ResourceActionbarState.html":{}}}],["then(r",{"_index":748,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["then(resourc",{"_index":3818,"title":{},"body":{"classes/ResourceForm.html":{}}}],["then(result",{"_index":2737,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["then(sourc",{"_index":2067,"title":{},"body":{"injectables/HistoryService.html":{}}}],["then(this.seturl.bind(thi",{"_index":2160,"title":{},"body":{"directives/ImageDirective.html":{}}}],["then(url",{"_index":2194,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["therefor",{"_index":2332,"title":{},"body":{"interfaces/ItemConfig.html":{},"additional-documentation/readme/core-readme.html":{}}}],["this._api",{"_index":3914,"title":{},"body":{"injectables/SdkService.html":{}}}],["this._api.m",{"_index":3978,"title":{},"body":{"injectables/SdkService.html":{}}}],["this._api.resolve().then",{"_index":3950,"title":{},"body":{"injectables/SdkService.html":{}}}],["this._api.resolve().then(api",{"_index":3969,"title":{},"body":{"injectables/SdkService.html":{}}}],["this._api.setclientid(environment.clientid",{"_index":3970,"title":{},"body":{"injectables/SdkService.html":{}}}],["this._toggle.emit(this.act",{"_index":3500,"title":{},"body":{"components/PopComponent.html":{}}}],["this.account",{"_index":3910,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.act",{"_index":1423,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/PopComponent.html":{}}}],["this.actionstack[this.currentid",{"_index":374,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.activ",{"_index":3501,"title":{},"body":{"components/PopComponent.html":{}}}],["this.activated.next",{"_index":4186,"title":{},"body":{"components/TabComponent.html":{}}}],["this.add(item",{"_index":886,"title":{},"body":{"classes/Collection.html":{}}}],["this.add.subscribe((item",{"_index":360,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.addall(item",{"_index":891,"title":{},"body":{"classes/Collection.html":{}}}],["this.additem(item",{"_index":3583,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.api",{"_index":421,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"classes/ResourceForm.html":{},"components/SignupComponent.html":{}}}],["this.apiresolv",{"_index":3951,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.app.tick",{"_index":4286,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.asset",{"_index":482,"title":{},"body":{"directives/AssetDirective.html":{}}}],["this.assetgroup",{"_index":575,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["this.assetgroupid",{"_index":2203,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["this.assetgrouplistpromis",{"_index":1825,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.assetid",{"_index":472,"title":{},"body":{"directives/AssetDirective.html":{},"directives/ImageDirective.html":{}}}],["this.auth.getallowedmodelmethods(this.model",{"_index":984,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.auth.getallowedresourcemethods(this.rel",{"_index":3782,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.auth.login",{"_index":2777,"title":{},"body":{"components/LoginComponent.html":{}}}],["this.auth.resetpassword(this.email",{"_index":3453,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["this.auth.signup",{"_index":4010,"title":{},"body":{"components/SignupComponent.html":{}}}],["this.autofocusfirst",{"_index":2422,"title":{},"body":{"components/ListComponent.html":{}}}],["this.autoload",{"_index":473,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"directives/ImageDirective.html":{}}}],["this.backdrop",{"_index":3063,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.bakery.bake().then",{"_index":3237,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.base64uuid",{"_index":3712,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.calendar.writevalue(valu",{"_index":1212,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["this.canalter(valu",{"_index":1367,"title":{},"body":{"interfaces/Day.html":{}}}],["this.cdr.markforcheck",{"_index":987,"title":{},"body":{"components/CrudComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/PopComponent.html":{}}}],["this.cel",{"_index":1319,"title":{},"body":{"interfaces/Day.html":{}}}],["this.cells[0",{"_index":1294,"title":{},"body":{"interfaces/Day.html":{}}}],["this.cells[this.cells.length",{"_index":1295,"title":{},"body":{"interfaces/Day.html":{}}}],["this.cent",{"_index":2674,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["this.change.asobserv",{"_index":3328,"title":{},"body":{"classes/Pagination.html":{}}}],["this.change.next(this.config",{"_index":3375,"title":{},"body":{"classes/Pagination.html":{}}}],["this.changed.emit",{"_index":2196,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.changed.emit(chang",{"_index":2286,"title":{},"body":{"components/InputComponent.html":{}}}],["this.changed.emit(coord",{"_index":2755,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["this.changed.emit(posit",{"_index":2679,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["this.changed.emit(this.list",{"_index":2426,"title":{},"body":{"components/ListComponent.html":{}}}],["this.changed.emit(this.valu",{"_index":4285,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.changes.asobserv",{"_index":3867,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.changes.asobservable().pip",{"_index":3868,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.changes.next",{"_index":3861,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.changesenvironment.next(environ",{"_index":3955,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.changespan.asobservable().pipe(debouncetime(800",{"_index":1277,"title":{},"body":{"interfaces/Day.html":{}}}],["this.changespan.next(this.timespan",{"_index":1293,"title":{},"body":{"interfaces/Day.html":{}}}],["this.checkpermission(`${model}:${method",{"_index":760,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.checkpermission(`${this.resolvevariables(permissions[method",{"_index":747,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.class",{"_index":3059,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.clean(oldvalu",{"_index":1137,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.clean(valu",{"_index":1132,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.clear",{"_index":4425,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.clickev",{"_index":3494,"title":{},"body":{"components/PopComponent.html":{}}}],["this.collect",{"_index":2417,"title":{},"body":{"components/ListComponent.html":{}}}],["this.color",{"_index":1307,"title":{},"body":{"interfaces/Day.html":{}}}],["this.colors.length",{"_index":2995,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.colors[_moment.toisostr",{"_index":1308,"title":{},"body":{"interfaces/Day.html":{}}}],["this.colors[this.getlevel(level",{"_index":2994,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.column",{"_index":1713,"title":{},"body":{"classes/Field.html":{}}}],["this.columnclicked.emit(item",{"_index":1013,"title":{},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["this.columnclicked.observers.length",{"_index":1012,"title":{},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["this.componentfactoryresolver.resolvecomponentfactory(compon",{"_index":1460,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["this.componentinst",{"_index":2279,"title":{},"body":{"components/InputComponent.html":{}}}],["this.componentinstance.registeronchang",{"_index":2292,"title":{},"body":{"components/InputComponent.html":{}}}],["this.componentinstance.registeronchange(this.propagatechang",{"_index":2293,"title":{},"body":{"components/InputComponent.html":{}}}],["this.componentinstance.writevalu",{"_index":2295,"title":{},"body":{"components/InputComponent.html":{}}}],["this.componentinstance.writevalue(valu",{"_index":2296,"title":{},"body":{"components/InputComponent.html":{}}}],["this.config",{"_index":390,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/EntryListPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"interfaces/ResourceActionbarState.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{}}}],["this.config.alwaysloadentri",{"_index":998,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.config.availables",{"_index":3382,"title":{},"body":{"classes/Pagination.html":{}}}],["this.config.field",{"_index":994,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.config.level",{"_index":997,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.config.method",{"_index":985,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["this.config.methods.indexof(method",{"_index":988,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["this.config.pag",{"_index":3369,"title":{},"body":{"classes/Pagination.html":{}}}],["this.config.s",{"_index":3366,"title":{},"body":{"classes/Pagination.html":{}}}],["this.config.singularlabel",{"_index":1604,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["this.config[key",{"_index":913,"title":{},"body":{"classes/Config.html":{}}}],["this.config[key][properti",{"_index":914,"title":{},"body":{"classes/Config.html":{}}}],["this.config[relationnam",{"_index":3610,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.configinput",{"_index":2413,"title":{},"body":{"components/ListComponent.html":{}}}],["this.configure('model",{"_index":3116,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.connectcontrol",{"_index":2281,"title":{},"body":{"components/InputComponent.html":{}}}],["this.container.nativeel",{"_index":4291,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.container.nativeelement.innerhtml",{"_index":2901,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["this.control",{"_index":2273,"title":{},"body":{"components/InputComponent.html":{}}}],["this.control.errors[key",{"_index":2310,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["this.create(model",{"_index":1123,"title":{},"body":{"injectables/CrudService.html":{}}}],["this.create(rel",{"_index":3876,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.create.emit(queri",{"_index":3582,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.create.observers.length",{"_index":3581,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.createclicked.next",{"_index":3787,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.createclicked.observers.length",{"_index":3786,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.created(this.symbol.resolve('field.label.cr",{"_index":3636,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.crud.change({model:'muffin",{"_index":1114,"title":{},"body":{"injectables/CrudService.html":{}}}],["this.crud.save(model",{"_index":3169,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.currentact",{"_index":3565,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.custom",{"_index":4436,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.dat",{"_index":1348,"title":{},"body":{"interfaces/Day.html":{}}}],["this.datamanag",{"_index":3965,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.datamanager.datamanager(this._api.datamanagerid",{"_index":3946,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.date.clone().add(valu",{"_index":1363,"title":{},"body":{"interfaces/Day.html":{}}}],["this.dateformat",{"_index":1222,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["this.dayclicked.emit(_mo",{"_index":1356,"title":{},"body":{"interfaces/Day.html":{}}}],["this.deactivated.next",{"_index":4187,"title":{},"body":{"components/TabComponent.html":{}}}],["this.defaultmonthformat",{"_index":1272,"title":{},"body":{"interfaces/Day.html":{}}}],["this.defaulttim",{"_index":3312,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["this.desktopnotification(inst",{"_index":3299,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["this.destroy",{"_index":4289,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.dis",{"_index":1421,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["this.disabledragend",{"_index":1301,"title":{},"body":{"interfaces/Day.html":{}}}],["this.disabledragstart",{"_index":1300,"title":{},"body":{"interfaces/Day.html":{}}}],["this.disableupdates(key",{"_index":2065,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.displaydate(tru",{"_index":4353,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["this.dmassetconfig",{"_index":1760,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.drag",{"_index":1281,"title":{},"body":{"interfaces/Day.html":{}}}],["this.drag.asobserv",{"_index":1273,"title":{},"body":{"interfaces/Day.html":{}}}],["this.drag.next(day",{"_index":1305,"title":{},"body":{"interfaces/Day.html":{}}}],["this.dragged.first",{"_index":1283,"title":{},"body":{"interfaces/Day.html":{}}}],["this.dragged.last",{"_index":1285,"title":{},"body":{"interfaces/Day.html":{}}}],["this.dropday(day",{"_index":1276,"title":{},"body":{"interfaces/Day.html":{}}}],["this.dropdownlist",{"_index":393,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.dropdownlist.focusfirst",{"_index":394,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.ecasset",{"_index":471,"title":{},"body":{"directives/AssetDirective.html":{}}}],["this.ecdropzone.emit(",{"_index":1428,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["this.ecfocu",{"_index":1865,"title":{},"body":{"directives/FocusDirective.html":{}}}],["this.ecimag",{"_index":2148,"title":{},"body":{"directives/ImageDirective.html":{}}}],["this.ecimage.assetid",{"_index":2149,"title":{},"body":{"directives/ImageDirective.html":{}}}],["this.editor",{"_index":154,"title":{},"body":{"components/AceComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["this.editor.buttons.image.onclick(tru",{"_index":4302,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.editor.destroy",{"_index":2907,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["this.editor.execcommand('mceinsertcont",{"_index":4307,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.editor.getcont",{"_index":2905,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["this.editor.on('chang",{"_index":4304,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.editor.on('dblclick",{"_index":4300,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.editor.remov",{"_index":4288,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.editor.session.setmode('ace/mod",{"_index":169,"title":{},"body":{"components/AceComponent.html":{}}}],["this.editor.setcontent(this.valu",{"_index":4299,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.editor.settheme('ace/them",{"_index":170,"title":{},"body":{"components/AceComponent.html":{}}}],["this.editor.setvalue(this.valu",{"_index":163,"title":{},"body":{"components/AceComponent.html":{}}}],["this.editor.subscribe('editableinput",{"_index":2904,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["this.element.nativeelement.blur",{"_index":1868,"title":{},"body":{"directives/FocusDirective.html":{}}}],["this.element.nativeelement.focu",{"_index":1867,"title":{},"body":{"directives/FocusDirective.html":{}}}],["this.elementref",{"_index":3495,"title":{},"body":{"components/PopComponent.html":{}}}],["this.elementref.nativeel",{"_index":3498,"title":{},"body":{"components/PopComponent.html":{}}}],["this.elementref.nativeelement.classlist.add(`${this.typ",{"_index":3064,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.elementref.nativeelement.classlist.remove(`${typ",{"_index":3062,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.elementref.nativeelement.contains(el",{"_index":3497,"title":{},"body":{"components/PopComponent.html":{}}}],["this.elementref.nativeelement.src",{"_index":2162,"title":{},"body":{"directives/ImageDirective.html":{}}}],["this.emitter.asobserv",{"_index":3292,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["this.emitter.next(inst",{"_index":3300,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["this.enableupdates(resourc",{"_index":2066,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.endless",{"_index":1500,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entri",{"_index":1539,"title":{},"body":{"directives/EntryDirective.html":{}}}],["this.entryid",{"_index":1537,"title":{},"body":{"directives/EntryDirective.html":{}}}],["this.entrylist",{"_index":1512,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entrylist.follownextlink().then(list",{"_index":1518,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entrylist.followprevlink().then(list",{"_index":1519,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entrylist.getallitem",{"_index":1513,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entrylist.hasfirstlink",{"_index":1521,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entrylist.hasnextlink",{"_index":1520,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entrypop.edit(loadedentri",{"_index":1003,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.environ",{"_index":3917,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.error",{"_index":1615,"title":{},"body":{"components/ErrorComponent.html":{}}}],["this.error.cod",{"_index":1617,"title":{},"body":{"components/ErrorComponent.html":{}}}],["this.error.emit(err",{"_index":2854,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["this.error.messag",{"_index":1618,"title":{},"body":{"components/ErrorComponent.html":{}}}],["this.error.next(error",{"_index":2783,"title":{},"body":{"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["this.errormessag",{"_index":2851,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.ev",{"_index":4437,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.eventsources[key",{"_index":2068,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.eventsources[key].clos",{"_index":2070,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.eventsources[rel",{"_index":2064,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.fb.group",{"_index":2847,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.field",{"_index":2270,"title":{},"body":{"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["this.field.init",{"_index":2288,"title":{},"body":{"components/InputComponent.html":{}}}],["this.field.init(this.componentinst",{"_index":2289,"title":{},"body":{"components/InputComponent.html":{}}}],["this.field.input",{"_index":2278,"title":{},"body":{"components/InputComponent.html":{}}}],["this.field.properti",{"_index":2276,"title":{},"body":{"components/InputComponent.html":{}}}],["this.fieldhost.viewcontainerref",{"_index":1461,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["this.fileinput",{"_index":4424,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.fileinput.nativeelement.click",{"_index":4426,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.fileinput.nativeelement.valu",{"_index":4432,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.fileservice.assetgrouplist().then(assetgroup",{"_index":574,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["this.fileservice.defaultopt",{"_index":4400,"title":{},"body":{"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["this.fileservice.isnewassetgroupid(this.assetgroupid",{"_index":4441,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.fileservice.isoldassetgroupid(this.assetgroupid",{"_index":2183,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/UploadComponent.html":{}}}],["this.fileservice.uploadassets(fil",{"_index":4442,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.fileservice.uploadfiles(fil",{"_index":4443,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.filestoupload",{"_index":4435,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.focusevent.emit(tru",{"_index":4487,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["this.focusfirst",{"_index":2424,"title":{},"body":{"components/ListComponent.html":{}}}],["this.focusitem",{"_index":2425,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{}}}],["this.focusnext",{"_index":2439,"title":{},"body":{"components/ListComponent.html":{}}}],["this.form",{"_index":2846,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.form.get('password').setvalu",{"_index":2853,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["this.form.reset",{"_index":2861,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.form.valid",{"_index":2859,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.format",{"_index":1350,"title":{},"body":{"interfaces/Day.html":{}}}],["this.formservice.shouldbepartofform(field",{"_index":4514,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["this.generateconfig(model",{"_index":3129,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.geocodelatlng",{"_index":2021,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["this.geocodeservice.autocompleteaddress(this.searchinput.nativeel",{"_index":2754,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["this.geocodeservice.getnearestaddress(valu",{"_index":2736,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.getaccount",{"_index":3963,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.getalgorithm(item",{"_index":4088,"title":{},"body":{"classes/Sorter.html":{}}}],["this.getapi(email",{"_index":710,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getcolor(1",{"_index":2997,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.getdaycolor(d",{"_index":1338,"title":{},"body":{"interfaces/Day.html":{}}}],["this.getdayheat(d",{"_index":1339,"title":{},"body":{"interfaces/Day.html":{}}}],["this.getfieldconfig(model",{"_index":3170,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.getformdata(fil",{"_index":1781,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.getmonth(date.clon",{"_index":1352,"title":{},"body":{"interfaces/Day.html":{}}}],["this.getmonth(this.date.clon",{"_index":1320,"title":{},"body":{"interfaces/Day.html":{}}}],["this.getpag",{"_index":3380,"title":{},"body":{"classes/Pagination.html":{}}}],["this.getpath(item",{"_index":2991,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.getpermission().then",{"_index":3309,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["this.getresourcelistactions(list",{"_index":3558,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.getstoragekey(list",{"_index":2497,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["this.getsystemfield",{"_index":3146,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.getvalidators(field",{"_index":1947,"title":{},"body":{"injectables/FormService.html":{}}}],["this.group",{"_index":2274,"title":{},"body":{"components/InputComponent.html":{}}}],["this.group.get(this.field.properti",{"_index":2275,"title":{},"body":{"components/InputComponent.html":{}}}],["this.groupchanged.emit(group",{"_index":4427,"title":{},"body":{"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["this.has(item",{"_index":882,"title":{},"body":{"classes/Collection.html":{}}}],["this.heatmap",{"_index":1310,"title":{},"body":{"interfaces/Day.html":{}}}],["this.heatmap[_moment.toisostr",{"_index":1311,"title":{},"body":{"interfaces/Day.html":{}}}],["this.hexcolor",{"_index":3626,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.hid",{"_index":2195,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/PopComponent.html":{}}}],["this.hideonclickoutsid",{"_index":3493,"title":{},"body":{"components/PopComponent.html":{}}}],["this.host.nativeelement.classlist.add('i",{"_index":2632,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.host.nativeelement.classlist.remove('i",{"_index":2633,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.hov",{"_index":2998,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.hoverdelay",{"_index":3000,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.icon",{"_index":2106,"title":{},"body":{"components/IconComponent.html":{}}}],["this.iconservice.get(this.nam",{"_index":2107,"title":{},"body":{"components/IconComponent.html":{}}}],["this.iconservice.registri",{"_index":2111,"title":{},"body":{"components/IconComponent.html":{}}}],["this.iconservice.set(emojiicon",{"_index":2102,"title":{},"body":{"components/IconComponent.html":{}}}],["this.iconservice.use(emojiicon",{"_index":2100,"title":{},"body":{"components/IconComponent.html":{}}}],["this.id",{"_index":1708,"title":{},"body":{"classes/Field.html":{}}}],["this.imageform",{"_index":2184,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.imageloader.wait(loadimag",{"_index":2201,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.imageloader.wait(loadimg",{"_index":2219,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.index(item",{"_index":878,"title":{},"body":{"classes/Collection.html":{}}}],["this.init",{"_index":171,"title":{},"body":{"components/AceComponent.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{}}}],["this.init(new",{"_index":2414,"title":{},"body":{"components/ListComponent.html":{}}}],["this.initmethod",{"_index":3780,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.initmod",{"_index":3065,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.initselect",{"_index":391,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.inittab",{"_index":4221,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.invit",{"_index":4045,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["this.isactive(item",{"_index":2996,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.isfirst",{"_index":3373,"title":{},"body":{"classes/Pagination.html":{}}}],["this.isimmutableproperty(key",{"_index":1143,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.islast",{"_index":3372,"title":{},"body":{"classes/Pagination.html":{}}}],["this.isnewasset(a",{"_index":1764,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.isnewasset(unresolv",{"_index":1810,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.isoldassetgroupid(assetgroupid",{"_index":1756,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.isoutside($event.target",{"_index":3496,"title":{},"body":{"components/PopComponent.html":{}}}],["this.item",{"_index":874,"title":{},"body":{"classes/Collection.html":{},"directives/EntriesDirective.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/OutputComponent.html":{}}}],["this.item.getfield(this.properti",{"_index":2271,"title":{},"body":{"components/InputComponent.html":{}}}],["this.items.concat(item",{"_index":1514,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.items.filter((item",{"_index":1515,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.items.find((_item",{"_index":1516,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.items.indexof(item",{"_index":877,"title":{},"body":{"classes/Collection.html":{}}}],["this.items.length",{"_index":885,"title":{},"body":{"classes/Collection.html":{}}}],["this.items.push(item",{"_index":876,"title":{},"body":{"classes/Collection.html":{}}}],["this.items.splice(index",{"_index":892,"title":{},"body":{"classes/Collection.html":{}}}],["this.items.splice(this.index(item",{"_index":887,"title":{},"body":{"classes/Collection.html":{}}}],["this.items.splice(this.items.indexof(item",{"_index":893,"title":{},"body":{"classes/Collection.html":{}}}],["this.label",{"_index":1711,"title":{},"body":{"classes/Field.html":{}}}],["this.lazi",{"_index":4287,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.legacyassetconfig",{"_index":1757,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.level",{"_index":1538,"title":{},"body":{"directives/EntryDirective.html":{}}}],["this.lightmodel",{"_index":1599,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["this.list",{"_index":388,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{}}}],["this.list.change$.subscrib",{"_index":2421,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.change$.subscribe(newlist",{"_index":2571,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["this.list.config",{"_index":2427,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.config.alwaysshowhead",{"_index":2435,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.config.disablehead",{"_index":2432,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.config.selectmod",{"_index":2430,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{}}}],["this.list.config.titl",{"_index":2434,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.fields.length",{"_index":2433,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.filter(properti",{"_index":2443,"title":{},"body":{"components/ListComponent.html":{},"components/ListHeaderComponent.html":{}}}],["this.list.isempti",{"_index":2436,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.isfilt",{"_index":2423,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.item",{"_index":3548,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.list.items[index",{"_index":2437,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.pag",{"_index":2570,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["this.list.page.indexof(this.focusitem",{"_index":2440,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.page.length",{"_index":2442,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.page[index",{"_index":2441,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.togglevisibility(field",{"_index":2542,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["this.listconfig.applyconfig(this.list",{"_index":2420,"title":{},"body":{"components/ListComponent.html":{}}}],["this.listconfig.storeconfig(this.list",{"_index":2543,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["this.load",{"_index":474,"title":{},"body":{"directives/AssetDirective.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"directives/ImageDirective.html":{},"injectables/LoaderService.html":{},"components/LoginFormComponent.html":{},"classes/Pagination.html":{},"components/SignupFormComponent.html":{},"components/UploadComponent.html":{}}}],["this.loadact",{"_index":3578,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.loadactions(actionsbefor",{"_index":375,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.loadactions(concat",{"_index":3554,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.loadactions(item.getbody().children",{"_index":367,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.loadactions(this.act",{"_index":376,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.loadactions(this.actionstack[this.currentid",{"_index":384,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.loadactionsbefor",{"_index":371,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.loadcomponent(this.compon",{"_index":2277,"title":{},"body":{"components/InputComponent.html":{}}}],["this.loadcomponent(this.field.output",{"_index":3317,"title":{},"body":{"components/OutputComponent.html":{}}}],["this.loaded.emit(asset",{"_index":483,"title":{},"body":{"directives/AssetDirective.html":{}}}],["this.loaded.emit(entri",{"_index":1540,"title":{},"body":{"directives/EntryDirective.html":{}}}],["this.loader.wait(login",{"_index":2785,"title":{},"body":{"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.loader.wait(registr",{"_index":4013,"title":{},"body":{"components/SignupComponent.html":{}}}],["this.loader.wait(reset",{"_index":3466,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["this.loader.wait(this.promis",{"_index":1511,"title":{},"body":{"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{}}}],["this.loaderservice.use(this.globalload",{"_index":2618,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.loaderservice.wait(load",{"_index":2078,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.loaderservice.wait(new",{"_index":2619,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.loaderservice.wait(this.loadentry(item",{"_index":1014,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.loaderservice.wait(this.promises[key",{"_index":2069,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.loaderservice.wait(this.uploadpromis",{"_index":4451,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.loadresourcelistact",{"_index":3535,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.localload",{"_index":2622,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.localloader.wait(new",{"_index":2623,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.lockform",{"_index":3462,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["this.login(this.form.valu",{"_index":2860,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["this.map.setvalue(valu",{"_index":2731,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.map.valu",{"_index":2734,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.maploader.load().then",{"_index":2020,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["this.matches(chang",{"_index":3870,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.mod",{"_index":158,"title":{},"body":{"components/AceComponent.html":{},"components/ModalComponent.html":{}}}],["this.mode.replace(this.typ",{"_index":3056,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.mode.split",{"_index":3054,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.model",{"_index":983,"title":{},"body":{"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/MediumEditorComponent.html":{}}}],["this.modelconfig.getlightmodel(this.model).then(model",{"_index":1598,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["this.modelconfig.getminlevel(this.model",{"_index":993,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.modelconfig.set('muffin",{"_index":4748,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["this.monthformat",{"_index":1270,"title":{},"body":{"interfaces/Day.html":{}}}],["this.mustreload(item",{"_index":999,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.nam",{"_index":2109,"title":{},"body":{"components/IconComponent.html":{}}}],["this.nestedcrudconfig",{"_index":4363,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["this.ngzone.run",{"_index":1998,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["this.noapi",{"_index":3947,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.noapi(api",{"_index":3971,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.noclientid",{"_index":707,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.notif",{"_index":1006,"title":{},"body":{"components/CrudComponent.html":{},"components/LoginComponent.html":{},"components/NotificationsComponent.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{}}}],["this.notifications.add(notif",{"_index":3258,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.notifications.emit",{"_index":604,"title":{},"body":{"guards/AuthGuard.html":{},"components/NotificationsComponent.html":{},"components/PasswordResetComponent.html":{}}}],["this.notifications.remove(notif",{"_index":3262,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.notifications.removeall(notification.hid",{"_index":3249,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.notificationservice.defaulttim",{"_index":3246,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.notificationservice.emit",{"_index":1004,"title":{},"body":{"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"components/LoginComponent.html":{},"components/NotificationsComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{}}}],["this.notificationservice.emitter$.subscribe((notif",{"_index":3247,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.observeelement(el",{"_index":2012,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["this.oldassetgroupids.includes(assetgroupid",{"_index":1758,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.opt",{"_index":1506,"title":{},"body":{"directives/EntriesDirective.html":{},"components/MediumEditorComponent.html":{},"components/UploadComponent.html":{}}}],["this.options.pag",{"_index":1501,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.options.placehold",{"_index":2902,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["this.pag",{"_index":3370,"title":{},"body":{"classes/Pagination.html":{}}}],["this.pages.length",{"_index":3371,"title":{},"body":{"classes/Pagination.html":{}}}],["this.pagin",{"_index":2416,"title":{},"body":{"components/ListComponent.html":{},"components/PaginationComponent.html":{}}}],["this.pagination.getpag",{"_index":3406,"title":{},"body":{"components/PaginationComponent.html":{}}}],["this.par",{"_index":2988,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.parent.getlevel(++level",{"_index":2993,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.parent.getpath(this.rout",{"_index":3004,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.placehold",{"_index":1710,"title":{},"body":{"classes/Field.html":{},"components/MediumEditorComponent.html":{}}}],["this.pop",{"_index":3788,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.pop.cr",{"_index":3789,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.pop.edit(item.getbodi",{"_index":3783,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.pop.hid",{"_index":4447,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.pop.show",{"_index":4438,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.popservice.stack.add(thi",{"_index":3502,"title":{},"body":{"components/PopComponent.html":{}}}],["this.popservice.stack.remove(thi",{"_index":3504,"title":{},"body":{"components/PopComponent.html":{}}}],["this.promis",{"_index":479,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{}}}],["this.promises[key",{"_index":2063,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.propagatechang",{"_index":173,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["this.propagatechange(++this.valu",{"_index":4836,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["this.propagatechange(chang",{"_index":2287,"title":{},"body":{"components/InputComponent.html":{}}}],["this.propagatechange(this.editor.getvalu",{"_index":168,"title":{},"body":{"components/AceComponent.html":{}}}],["this.propagatechange(this.valu",{"_index":2906,"title":{},"body":{"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{}}}],["this.propagatechange(valu",{"_index":2733,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.properti",{"_index":1712,"title":{},"body":{"classes/Field.html":{},"components/InputComponent.html":{}}}],["this.property}_${date.now",{"_index":1709,"title":{},"body":{"classes/Field.html":{}}}],["this.readi",{"_index":156,"title":{},"body":{"components/AceComponent.html":{},"components/MediumEditorComponent.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{}}}],["this.ready.then",{"_index":3945,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.ready.then((editor",{"_index":165,"title":{},"body":{"components/AceComponent.html":{},"components/MediumEditorComponent.html":{}}}],["this.ready.then(editor",{"_index":4297,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.redirect.next",{"_index":614,"title":{},"body":{"guards/AuthGuard.html":{}}}],["this.registri",{"_index":4162,"title":{},"body":{"injectables/SymbolService.html":{}}}],["this.rel",{"_index":3781,"title":{},"body":{"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{}}}],["this.reload",{"_index":3584,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.remove(item",{"_index":888,"title":{},"body":{"classes/Collection.html":{}}}],["this.remove.subscribe((item",{"_index":369,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.removeall(undefin",{"_index":889,"title":{},"body":{"classes/Collection.html":{}}}],["this.resolv",{"_index":2112,"title":{},"body":{"components/IconComponent.html":{}}}],["this.resourceconfig.get('dmasset",{"_index":1742,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.resourceconfig.get('legacyasset",{"_index":1744,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.resourceconfig.get(rel",{"_index":735,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/ResourceActionbarState.html":{}}}],["this.resourceconfig.get(relation).permiss",{"_index":736,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.resourceconfig.get(this.rel",{"_index":3824,"title":{},"body":{"components/ResourceListPopComponent.html":{}}}],["this.resourceconfig.get(this.state.rel",{"_index":3575,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.resourceservice.change(filt",{"_index":1120,"title":{},"body":{"injectables/CrudService.html":{}}}],["this.resourceservice.change({relation:'model.muffin",{"_index":1116,"title":{},"body":{"injectables/CrudService.html":{}}}],["this.resourceservice.changes.next",{"_index":1135,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"interfaces/Upload.html":{}}}],["this.resourceservice.save(thi",{"_index":3817,"title":{},"body":{"classes/ResourceForm.html":{}}}],["this.retrieve(key",{"_index":2488,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["this.roots[this._api.datamanagerid",{"_index":3944,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.rout",{"_index":2980,"title":{},"body":{"components/MenuComponent.html":{},"components/TabsComponent.html":{}}}],["this.route.children",{"_index":2981,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.router.events.subscribe((ev",{"_index":4208,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.router.navig",{"_index":4225,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.router.navigate(['profil",{"_index":4746,"title":{},"body":{"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["this.router.url",{"_index":2990,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.router.url.indexof(path",{"_index":2992,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.router.url.split('?')[0",{"_index":2043,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.schemarequests[model",{"_index":3973,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.schemarequests[model].api",{"_index":3974,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.schemarequests[model].request",{"_index":3976,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.sdk.account",{"_index":761,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.accounts.m",{"_index":725,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.accounts.signup(email",{"_index":722,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.api",{"_index":476,"title":{},"body":{"directives/AssetDirective.html":{},"injectables/AuthService.html":{},"interfaces/FileOptions.html":{},"interfaces/ResourceActionbarState.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["this.sdk.api.asset(unresolved[0]).then(asset",{"_index":1818,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.sdk.api.asset(value).then(asset",{"_index":2205,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.sdk.api.asset(value.img",{"_index":2191,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.sdk.api.assetgrouplist",{"_index":1826,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.sdk.api.assetlist",{"_index":1819,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.sdk.api.createasset(data",{"_index":1794,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.sdk.api.createassets(data",{"_index":1795,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.sdk.api.createentry(model",{"_index":1144,"title":{},"body":{"injectables/CrudService.html":{}}}],["this.sdk.api.dmasset(this.assetgroupid",{"_index":2199,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.sdk.api.dmassetlist(assetgroupid",{"_index":1813,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.sdk.api.emailavailable(email",{"_index":767,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.api.entry(this.model",{"_index":1000,"title":{},"body":{"components/CrudComponent.html":{},"directives/EntryDirective.html":{}}}],["this.sdk.api.entrylist(this.model",{"_index":1505,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.sdk.api.getfieldconfig(model).then((fieldconfig",{"_index":3144,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.sdk.api.logout",{"_index":765,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.api.m",{"_index":727,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.api.modellist()).then((model",{"_index":3182,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.sdk.api.signup(email",{"_index":720,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.changesenvironment.subscribe(env",{"_index":3860,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.sdk.environ",{"_index":769,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.environment.clientid",{"_index":770,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.init",{"_index":717,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.ready.then",{"_index":3181,"title":{},"body":{"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{}}}],["this.sdk.ready.then((us",{"_index":728,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.ready.then(account",{"_index":3931,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.sdk.ready.then(us",{"_index":603,"title":{},"body":{"guards/AuthGuard.html":{}}}],["this.sdk.root.then((root",{"_index":420,"title":{},"body":{"components/AdminEntryInputComponent.html":{}}}],["this.sdk.sess",{"_index":714,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.session.logout().catch",{"_index":764,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.us",{"_index":729,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.search.clear",{"_index":2730,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.search.searchinput.nativeelement.valu",{"_index":2735,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.searchbar.clear",{"_index":368,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/ResourceActionbarState.html":{}}}],["this.searchbar.focusevent.emit(tru",{"_index":1603,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["this.searchinput",{"_index":2752,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["this.searchinput.nativeelement.valu",{"_index":2753,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["this.select",{"_index":378,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/Day.html":{},"components/EntryListPopComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ResourceListPopComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{}}}],["this.select(match",{"_index":4215,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.select(tab",{"_index":4219,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.selectbyurl(event.url",{"_index":4209,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.selectbyurl(this.router.url",{"_index":4220,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.selected.deactiv",{"_index":4222,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.selected.emit(select",{"_index":2429,"title":{},"body":{"components/ListComponent.html":{}}}],["this.selected.startof('day').diff(_mo",{"_index":1360,"title":{},"body":{"interfaces/Day.html":{}}}],["this.selection.add(item",{"_index":363,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.selection.getvalu",{"_index":396,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.selection.isempti",{"_index":379,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.selection.items[this.selection.items.length",{"_index":381,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.selection.remove(item",{"_index":370,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.selection.removeal",{"_index":383,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.selection.select(this.list.items[index",{"_index":2438,"title":{},"body":{"components/ListComponent.html":{}}}],["this.selection.toggle(item",{"_index":1602,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["this.selection.update$.subscribe((select",{"_index":2428,"title":{},"body":{"components/ListComponent.html":{}}}],["this.selection.update$.subscribe(newlist",{"_index":2572,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["this.sess",{"_index":3956,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.session.setclientid(environment.clientid",{"_index":3959,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.set",{"_index":4290,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.setd",{"_index":1298,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setdate(_mo",{"_index":1354,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setdate(day.date.clone().subtract(1",{"_index":1297,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setdate(mo",{"_index":1369,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setdate(this.d",{"_index":1315,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setdate(this.date.clone().add(valu",{"_index":1368,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setdate(this.select",{"_index":1313,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setmode(this.mod",{"_index":159,"title":{},"body":{"components/AceComponent.html":{}}}],["this.sets[key",{"_index":4165,"title":{},"body":{"injectables/SymbolService.html":{}}}],["this.sets[object.keys(this.sets)[0",{"_index":4164,"title":{},"body":{"injectables/SymbolService.html":{}}}],["this.settheme(this.them",{"_index":161,"title":{},"body":{"components/AceComponent.html":{}}}],["this.settings.setup",{"_index":4293,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.settings.setup(editor",{"_index":4294,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.settotal(tot",{"_index":3368,"title":{},"body":{"classes/Pagination.html":{}}}],["this.setup.emit(editor",{"_index":4295,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.setvalue(posit",{"_index":2678,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["this.shouldbepartofform(field",{"_index":1945,"title":{},"body":{"injectables/FormService.html":{}}}],["this.show",{"_index":2635,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.show(",{"_index":3499,"title":{},"body":{"components/PopComponent.html":{}}}],["this.showurlinput",{"_index":4486,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["this.signup(this.form.valu",{"_index":4047,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["this.solo",{"_index":2431,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{}}}],["this.sorttype[types[0",{"_index":4086,"title":{},"body":{"classes/Sorter.html":{}}}],["this.spanchanged.emit(this.timespan",{"_index":1279,"title":{},"body":{"interfaces/Day.html":{}}}],["this.stack.add(promis",{"_index":2634,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.stack.items.length",{"_index":3525,"title":{},"body":{"injectables/PopService.html":{}}}],["this.stack.items[this.stack.items.length",{"_index":3527,"title":{},"body":{"injectables/PopService.html":{}}}],["this.stack.remove(latestpop",{"_index":3529,"title":{},"body":{"injectables/PopService.html":{}}}],["this.stack.removeal",{"_index":2639,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.stat",{"_index":3555,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.storagekeyresolv",{"_index":2495,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["this.store(key",{"_index":2501,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["this.stringfield(this.symbol.resolve('field.label.nam",{"_index":3655,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.submit",{"_index":2858,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.success.emit",{"_index":3463,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["this.success.emit(_upload",{"_index":4445,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.success.emit(r",{"_index":2862,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.success.emit(us",{"_index":2780,"title":{},"body":{"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["this.symbol",{"_index":3637,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('account.field.label.group",{"_index":3664,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('account.field.label.haspendingemail",{"_index":3660,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('account.field.label.languag",{"_index":3661,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('account.field.label.st",{"_index":3667,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('app.field.label.app",{"_index":3685,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('asset.field.label.assetgroupid",{"_index":3700,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('asset.field.label.fil",{"_index":3697,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('asset.field.label.thumb",{"_index":3694,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('client.field.label.callbackurl",{"_index":3730,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('client.field.label.clientid",{"_index":3728,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('datetime.loc",{"_index":3159,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.symbol.resolve('dmaccount.field.label.haspassword",{"_index":3672,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmaccount.field.label.pend",{"_index":3674,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.assetid",{"_index":3718,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.capt",{"_index":3720,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.dupl",{"_index":3721,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.fil",{"_index":3713,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.tag",{"_index":3726,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.thumbnail",{"_index":3723,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.typ",{"_index":3725,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('entries.load.error",{"_index":1510,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.symbol.resolve('entry.load.error",{"_index":1541,"title":{},"body":{"directives/EntryDirective.html":{}}}],["this.symbol.resolve('error",{"_index":1616,"title":{},"body":{"components/ErrorComponent.html":{}}}],["this.symbol.resolve('error.input",{"_index":2311,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["this.symbol.resolve('error.input.invalid",{"_index":2312,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["this.symbol.resolve('error.load",{"_index":1010,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.symbol.resolve('error.upload",{"_index":4450,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.symbol.resolve('field.creator.ecus",{"_index":4378,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["this.symbol.resolve('field.label.config",{"_index":3629,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.cr",{"_index":3121,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.symbol.resolve('field.label.descript",{"_index":3628,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.email",{"_index":3656,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.id",{"_index":3119,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.label",{"_index":3737,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.modifi",{"_index":3126,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.symbol.resolve('field.label.nam",{"_index":3736,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.password",{"_index":3658,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.shortid",{"_index":3684,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.titl",{"_index":3669,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.typ",{"_index":3747,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('imag",{"_index":2185,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.symbol.resolve('login.button.label",{"_index":2808,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('login.email.label",{"_index":2811,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('login.email.placehold",{"_index":2813,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('login.error",{"_index":2782,"title":{},"body":{"components/LoginComponent.html":{}}}],["this.symbol.resolve('login.password.label",{"_index":2817,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('login.password.placehold",{"_index":2819,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('login.success",{"_index":2779,"title":{},"body":{"components/LoginComponent.html":{}}}],["this.symbol.resolve('moment.format.d",{"_index":1227,"title":{},"body":{"pipes/DatetimePipe.html":{},"injectables/TypeConfigService.html":{}}}],["this.symbol.resolve('moment.format.month",{"_index":1271,"title":{},"body":{"interfaces/Day.html":{}}}],["this.symbol.resolve('moment.format.tim",{"_index":4376,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["this.symbol.resolve('platform.field.label.platform",{"_index":3688,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('platform.field.label.platformtyp",{"_index":3690,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('resourc",{"_index":1963,"title":{},"body":{"injectables/FormService.html":{}}}],["this.symbol.resolve('resource.gener",{"_index":1923,"title":{},"body":{"injectables/FormService.html":{}}}],["this.symbol.resolve('role.field.label.account",{"_index":3738,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('role.field.label.addregist",{"_index":3741,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('role.field.label.addunregist",{"_index":3743,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('signup.button.label",{"_index":4017,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('signup.error",{"_index":4012,"title":{},"body":{"components/SignupComponent.html":{}}}],["this.symbol.resolve('signup.invite.placehold",{"_index":4020,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('signup.success",{"_index":4011,"title":{},"body":{"components/SignupComponent.html":{}}}],["this.symbol.resolve('success.upload",{"_index":4446,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.symbol.resolve('template.field.label.templ",{"_index":3678,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('template.field.label.vers",{"_index":3680,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve(nam",{"_index":4124,"title":{},"body":{"injectables/SymbolPipe.html":{}}}],["this.symbols.set(en",{"_index":4108,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["this.tab",{"_index":4210,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.tabs.find((tab",{"_index":4212,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.tabs.foreach((tab",{"_index":4216,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.tagsfield(this.symbol.resolve('account.field.label.permiss",{"_index":3663,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.tagsfield(this.symbol.resolve('asset.field.label.tag",{"_index":3698,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.tagsfield(this.symbol.resolve('client.field.label.disablestrategi",{"_index":3734,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.tagsfield(this.symbol.resolve('client.field.label.tokenmethod",{"_index":3732,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.tagsfield(this.symbol.resolve('datamanager.field.label.publicassetright",{"_index":3633,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.tagsfield(this.symbol.resolve('field.label.local",{"_index":3631,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.them",{"_index":160,"title":{},"body":{"components/AceComponent.html":{}}}],["this.thumb",{"_index":2157,"title":{},"body":{"directives/ImageDirective.html":{}}}],["this.tim",{"_index":3245,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.timeout",{"_index":2999,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.timespan",{"_index":1292,"title":{},"body":{"interfaces/Day.html":{}}}],["this.timespan[1",{"_index":1337,"title":{},"body":{"interfaces/Day.html":{}}}],["this.timestamp",{"_index":2637,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.tot",{"_index":3374,"title":{},"body":{"classes/Pagination.html":{}}}],["this.tre",{"_index":2395,"title":{},"body":{"components/ListComponent.html":{}}}],["this.typ",{"_index":3053,"title":{},"body":{"components/ModalComponent.html":{},"classes/Notification.html":{}}}],["this.typeconfig.displayaccount",{"_index":3128,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.typeconfig.displayd",{"_index":3122,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["this.typeconfig.get(fieldconfig[field].type).inputview",{"_index":3137,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.typeconfig.get(typ",{"_index":3157,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.typeconfig.groupd",{"_index":3123,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["this.typeconfig.set('loc",{"_index":4854,"title":{},"body":{"additional-documentation/readme/location-readme.html":{}}}],["this.types.foreach(typ",{"_index":3061,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.types.includes(this.typ",{"_index":3055,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.types.join",{"_index":3058,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.types[typ",{"_index":4368,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["this.upd",{"_index":1614,"title":{},"body":{"components/ErrorComponent.html":{},"components/TinymceComponent.html":{}}}],["this.update(model",{"_index":1122,"title":{},"body":{"injectables/CrudService.html":{}}}],["this.update(rel",{"_index":3875,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.update.asobserv",{"_index":830,"title":{},"body":{"classes/Collection.html":{}}}],["this.update.next(thi",{"_index":883,"title":{},"body":{"classes/Collection.html":{}}}],["this.update.next(this.editor",{"_index":4306,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.updateaddress",{"_index":2732,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.upload(fil",{"_index":4439,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.uploader.trigger(",{"_index":4491,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["this.uploader.uploadfiles(url",{"_index":4488,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["this.uploadfiles(e.target.fil",{"_index":4431,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.uploadpromis",{"_index":4440,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.uploadpromise.then",{"_index":4452,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.uploads.emit(upload",{"_index":1790,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.url",{"_index":2161,"title":{},"body":{"directives/ImageDirective.html":{}}}],["this.urlstoupload",{"_index":4490,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["this.us",{"_index":3964,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.use(this.ecimag",{"_index":2150,"title":{},"body":{"directives/ImageDirective.html":{}}}],["this.use(this.sets[key",{"_index":4167,"title":{},"body":{"injectables/SymbolService.html":{}}}],["this.usedatamanager(environment.datamanagerid",{"_index":3962,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.usedesktopnotif",{"_index":3298,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["this.uselist(list",{"_index":1508,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.uuid",{"_index":3622,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.valu",{"_index":162,"title":{},"body":{"components/AceComponent.html":{},"components/InputComponent.html":{},"components/LocationMapComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["this.vanishdelay",{"_index":3002,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.vis",{"_index":2631,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.writevalue(this.valu",{"_index":2294,"title":{},"body":{"components/InputComponent.html":{}}}],["those",{"_index":1703,"title":{},"body":{"classes/Field.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["three",{"_index":3082,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["through",{"_index":2048,"title":{},"body":{"injectables/HistoryService.html":{},"components/PasswordResetComponent.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["throw",{"_index":477,"title":{},"body":{"directives/AssetDirective.html":{},"injectables/HistoryService.html":{},"components/LoaderComponent.html":{},"components/ModalComponent.html":{},"classes/Pagination.html":{},"injectables/SdkService.html":{},"injectables/SymbolService.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["thrown",{"_index":1613,"title":{},"body":{"components/ErrorComponent.html":{}}}],["thumb",{"_index":2129,"title":{},"body":{"directives/ImageDirective.html":{},"injectables/ResourceConfig.html":{}}}],["thumbnail",{"_index":3722,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["thumbsiz",{"_index":3705,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["tick",{"_index":4239,"title":{},"body":{"components/TinymceComponent.html":{}}}],["time",{"_index":803,"title":{},"body":{"modules/CalendarModule.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/ListHeaderComponent.html":{},"components/LoaderComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["timeout",{"_index":2925,"title":{},"body":{"components/MenuComponent.html":{}}}],["timespan",{"_index":1242,"title":{},"body":{"interfaces/Day.html":{}}}],["timestamp",{"_index":2598,"title":{},"body":{"components/LoaderComponent.html":{}}}],["tini",{"_index":4243,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymc",{"_index":4229,"title":{"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}},"body":{"components/TinymceComponent.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["tinymce'},{'nam",{"_index":297,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["tinymce.component.html",{"_index":4232,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce.component.scss",{"_index":4231,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/autolink",{"_index":4266,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/autores",{"_index":4267,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/cod",{"_index":4268,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/colorpick",{"_index":4269,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/contextmenu",{"_index":4270,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/fullscreen",{"_index":4271,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/link",{"_index":4272,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/list",{"_index":4273,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/past",{"_index":4274,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/t",{"_index":4275,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/templ",{"_index":4276,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/textcolor",{"_index":4277,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/visualblock",{"_index":4278,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/themes/modern",{"_index":4279,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/tinymc",{"_index":4265,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/tinymce.compon",{"_index":4313,"title":{},"body":{"modules/TinymceModule.html":{}}}],["tinymcecompon",{"_index":296,"title":{"components/TinymceComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["tinymcemodul",{"_index":4308,"title":{"modules/TinymceModule.html":{}},"body":{"modules/TinymceModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/readme/tinymce-readme.html":{}}}],["tinymcemoduleconfig",{"_index":4314,"title":{},"body":{"modules/TinymceModule.html":{}}}],["tip",{"_index":4647,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["titel",{"_index":3118,"title":{},"body":{"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{}}}],["titel'",{"_index":3111,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["titl",{"_index":343,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"components/LoginComponent.html":{},"components/MenuComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/PasswordResetComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"interfaces/SdkField.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["titlefield",{"_index":3642,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["toast",{"_index":1564,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["today",{"_index":1239,"title":{},"body":{"interfaces/Day.html":{}}}],["todo",{"_index":570,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"classes/Config.html":{},"injectables/CrudService.html":{},"directives/DropzoneDirective.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"injectables/FormService.html":{},"interfaces/ItemConfig.html":{},"components/MenuComponent.html":{},"components/PaginationComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/TabsComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["togeth",{"_index":1683,"title":{},"body":{"classes/Field.html":{}}}],["toggl",{"_index":819,"title":{},"body":{"classes/Collection.html":{},"components/EntryListPopComponent.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"components/ToggleComponent.html":{}}}],["toggle'},{'nam",{"_index":299,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["toggle(",{"_index":1583,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["toggle(item",{"_index":861,"title":{},"body":{"classes/Collection.html":{}}}],["toggle(resourc",{"_index":2049,"title":{},"body":{"injectables/HistoryService.html":{}}}],["toggle.component.html",{"_index":4318,"title":{},"body":{"components/ToggleComponent.html":{}}}],["toggle/toggle.compon",{"_index":1897,"title":{},"body":{"modules/FormModule.html":{}}}],["togglecompon",{"_index":298,"title":{"components/ToggleComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FormModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["toggleurlinput",{"_index":4462,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["togglevis",{"_index":2515,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["togglevisibility(field",{"_index":2528,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["token",{"_index":4713,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["tokenmethod",{"_index":3731,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["top",{"_index":3084,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["total",{"_index":3319,"title":{},"body":{"classes/Pagination.html":{}}}],["total>0",{"_index":4955,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["touch",{"_index":4322,"title":{},"body":{"components/ToggleComponent.html":{}}}],["track",{"_index":2033,"title":{},"body":{"injectables/HistoryService.html":{},"components/InputErrorsComponent.html":{},"classes/Pagination.html":{}}}],["transform",{"_index":1217,"title":{},"body":{"pipes/DatetimePipe.html":{},"classes/Field.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"interfaces/ListConfig.html":{},"pipes/MaxItemsPipe.html":{},"injectables/SymbolPipe.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["transform(array",{"_index":2868,"title":{},"body":{"pipes/MaxItemsPipe.html":{}}}],["transform(field",{"_index":4509,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["transform(item",{"_index":2028,"title":{},"body":{"pipes/GroupPipe.html":{}}}],["transform(nam",{"_index":4120,"title":{},"body":{"injectables/SymbolPipe.html":{}}}],["transform(valu",{"_index":1218,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["translat",{"_index":3392,"title":{},"body":{"components/PaginationComponent.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["tree",{"_index":7,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{}}}],["tri",{"_index":2757,"title":{},"body":{"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["trigger",{"_index":2371,"title":{},"body":{"components/ListComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/UploadComponent.html":{}}}],["trigger(",{"_index":4411,"title":{},"body":{"components/UploadComponent.html":{}}}],["triggerupload",{"_index":4463,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["triggerupload(",{"_index":4477,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["true",{"_index":30,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"interfaces/WithNotifications.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["ts",{"_index":3952,"title":{},"body":{"injectables/SdkService.html":{}}}],["tsconfig.json",{"_index":5023,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["tslib",{"_index":4555,"title":{},"body":{"dependencies.html":{}}}],["tslint:dis",{"_index":1863,"title":{},"body":{"directives/FocusDirective.html":{},"components/ListComponent.html":{},"components/PopComponent.html":{}}}],["turn",{"_index":512,"title":{},"body":{"components/AssetListComponent.html":{},"directives/DropzoneDirective.html":{},"injectables/GeocodeService.html":{},"interfaces/ListConfig.html":{}}}],["tutori",{"_index":4688,"title":{"additional-documentation/project-setup-tutorial.html":{}},"body":{"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["twice",{"_index":4884,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["two",{"_index":3085,"title":{},"body":{"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["type",{"_index":69,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"miscellaneous/typealiases.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["type'",{"_index":4328,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["type.includes('asset",{"_index":3152,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["type.replace('a",{"_index":3153,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["typealias",{"_index":4624,"title":{"miscellaneous/typealiases.html":{}},"body":{}}],["typeconfig",{"_index":1754,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"additional-documentation/readme/location-readme.html":{}}}],["typeconfig.inputview",{"_index":3161,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["typeconfig.placehold",{"_index":3160,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["typeconfigservic",{"_index":1157,"title":{"injectables/TypeConfigService.html":{}},"body":{"modules/DataModule.html":{},"interfaces/FileOptions.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"overview.html":{},"additional-documentation/readme/location-readme.html":{}}}],["typeconfigservice#get",{"_index":3096,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["typed.isvalid",{"_index":1230,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["typeof",{"_index":1765,"title":{},"body":{"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/InputComponent.html":{},"injectables/ListConfigService.html":{},"classes/Sorter.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["types.length",{"_index":4085,"title":{},"body":{"classes/Sorter.html":{}}}],["types[0",{"_index":4087,"title":{},"body":{"classes/Sorter.html":{}}}],["typescript",{"_index":873,"title":{},"body":{"classes/Collection.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["typic",{"_index":3230,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["ui",{"_index":943,"title":{"additional-documentation/readme/ui-readme.html":{},"additional-documentation/changelog/ui-changelog.html":{}},"body":{"components/CrudComponent.html":{},"components/LoginFormComponent.html":{},"classes/PaginationConfig.html":{},"components/ResourceCrudComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["ui/src/notifications/notif",{"_index":5029,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["ui/src/notifications/with",{"_index":5030,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["uimodul",{"_index":621,"title":{"modules/UiModule.html":{}},"body":{"modules/AuthModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/LocationModule.html":{},"modules/ResourceModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/readme/ui-readme.html":{}}}],["uimoduleconfig",{"_index":4386,"title":{},"body":{"modules/UiModule.html":{}}}],["ul",{"_index":3403,"title":{},"body":{"components/PaginationComponent.html":{}}}],["undefin",{"_index":1086,"title":{},"body":{"injectables/CrudService.html":{},"injectables/GeocodeService.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"classes/ResourceForm.html":{},"injectables/ResourceService.html":{},"classes/Sorter.html":{},"interfaces/Update.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["under",{"_index":2052,"title":{},"body":{"injectables/HistoryService.html":{},"interfaces/Symbol.html":{},"additional-documentation/adding-new-packages.html":{}}}],["underlin",{"_index":3010,"title":{},"body":{"components/MenuComponent.html":{}}}],["ungültig",{"_index":4356,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["uniqu",{"_index":832,"title":{},"body":{"classes/Collection.html":{},"injectables/ModelConfigService.html":{},"interfaces/SdkField.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["unit",{"_index":4610,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["unresolv",{"_index":1805,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["unresolved.length",{"_index":1808,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["until",{"_index":2605,"title":{},"body":{"components/LoaderComponent.html":{}}}],["up",{"_index":1042,"title":{},"body":{"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"interfaces/ModelConfig.html":{},"interfaces/ModelConfiguration.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceService.html":{},"modules/SymbolModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/readme.html":{},"additional-documentation/publishing.html":{}}}],["updat",{"_index":494,"title":{"interfaces/Update.html":{}},"body":{"components/AssetListComponent.html":{},"classes/Collection.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/HistoryService.html":{},"components/LocationPickerComponent.html":{},"components/MenuComponent.html":{},"classes/Pagination.html":{},"injectables/ResourceService.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["update(model",{"_index":1100,"title":{},"body":{"injectables/CrudService.html":{}}}],["update(rel",{"_index":3852,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["updateaddress",{"_index":2710,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["updateon",{"_index":1950,"title":{},"body":{"injectables/FormService.html":{}}}],["updates",{"_index":3323,"title":{},"body":{"classes/Pagination.html":{},"components/PaginationComponent.html":{}}}],["updatesize(s",{"_index":3356,"title":{},"body":{"classes/Pagination.html":{}}}],["updatesize(valu",{"_index":3394,"title":{},"body":{"components/PaginationComponent.html":{}}}],["upgrad",{"_index":4627,"title":{"additional-documentation/angular-7-upgrade-guide.html":{}},"body":{}}],["upload",{"_index":303,"title":{"interfaces/Upload.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["upload'},{'nam",{"_index":301,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["upload(fil",{"_index":4413,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.assetgroup",{"_index":4453,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.brows",{"_index":4495,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["upload.component.html",{"_index":4389,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.dedupl",{"_index":4457,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.ignoredupl",{"_index":4456,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.includeassetidinpath",{"_index":4455,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.link",{"_index":4492,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["upload.or",{"_index":4493,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["upload.preservefilenam",{"_index":4454,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.url",{"_index":4494,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["upload.url.start",{"_index":4496,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["upload/upload.compon",{"_index":1850,"title":{},"body":{"modules/FilesModule.html":{},"components/UploadSelectComponent.html":{}}}],["uploadassets(fil",{"_index":1776,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["uploadcompon",{"_index":300,"title":{"components/UploadComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["uploadfil",{"_index":4394,"title":{},"body":{"components/UploadComponent.html":{}}}],["uploadfiles(fil",{"_index":1792,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["uploadfromurl",{"_index":4464,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["uploadfromurls(url",{"_index":4479,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["uploadpromis",{"_index":4392,"title":{},"body":{"components/UploadComponent.html":{}}}],["uploadselectcompon",{"_index":302,"title":{"components/UploadSelectComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["upon",{"_index":1075,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"components/LoaderComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["url",{"_index":1047,"title":{},"body":{"interfaces/CrudConfig.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["url.split",{"_index":4211,"title":{},"body":{"components/TabsComponent.html":{}}}],["urlexpir",{"_index":3702,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["urlstoupload",{"_index":4461,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["us",{"_index":60,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["usag",{"_index":1684,"title":{},"body":{"classes/Field.html":{},"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"classes/Sorter.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["use(asset",{"_index":2143,"title":{},"body":{"directives/ImageDirective.html":{}}}],["use(load",{"_index":2648,"title":{},"body":{"injectables/LoaderService.html":{}}}],["use(symbol",{"_index":4141,"title":{},"body":{"injectables/SymbolService.html":{}}}],["usedatamanag",{"_index":3906,"title":{},"body":{"injectables/SdkService.html":{}}}],["usedatamanager(shortid",{"_index":3920,"title":{},"body":{"injectables/SdkService.html":{}}}],["usedesktopnotif",{"_index":3271,"title":{},"body":{"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{}}}],["useexist",{"_index":27,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"modules/SelectModule.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["uselist",{"_index":1471,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["uselist(entrylist",{"_index":1490,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["user",{"_index":582,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Notification.html":{},"injectables/NotificationsService.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{}}}],["uses",{"_index":4338,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["useset",{"_index":4127,"title":{},"body":{"injectables/SymbolService.html":{}}}],["useset(key",{"_index":4143,"title":{},"body":{"injectables/SymbolService.html":{}}}],["usevalu",{"_index":649,"title":{},"body":{"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FormModule.html":{},"modules/LocationModule.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"injectables/SdkService.html":{}}}],["util",{"_index":3094,"title":{},"body":{"injectables/ModelConfigService.html":{},"additional-documentation/readme/ui-readme.html":{}}}],["utility/utility.modul",{"_index":2583,"title":{},"body":{"modules/ListModule.html":{},"modules/UiModule.html":{}}}],["utility/validators/field",{"_index":4044,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["utilitymodul",{"_index":2580,"title":{"modules/UtilityModule.html":{}},"body":{"modules/ListModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"modules.html":{},"overview.html":{}}}],["utilitymoduleconfig",{"_index":4504,"title":{},"body":{"modules/UtilityModule.html":{}}}],["uuid",{"_index":3589,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["ux",{"_index":3432,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["v",{"_index":3572,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["v.name",{"_index":3139,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["valid",{"_index":1633,"title":{},"body":{"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/LoginFormComponent.html":{},"injectables/ModelConfigService.html":{},"interfaces/SdkField.html":{},"components/SignupFormComponent.html":{},"interfaces/Symbol.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["validatefactori",{"_index":1916,"title":{},"body":{"injectables/FormService.html":{}}}],["validatefactory(field",{"_index":1933,"title":{},"body":{"injectables/FormService.html":{}}}],["validationerror",{"_index":1936,"title":{},"body":{"injectables/FormService.html":{}}}],["validatorfn",{"_index":1929,"title":{},"body":{"injectables/FormService.html":{}}}],["validators.push(this.validatefactory(field",{"_index":1960,"title":{},"body":{"injectables/FormService.html":{}}}],["validators.push(validators.requir",{"_index":1959,"title":{},"body":{"injectables/FormService.html":{}}}],["validators.requir",{"_index":2848,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["validators/field",{"_index":2844,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["valu",{"_index":43,"title":{},"body":{"components/AceComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/ResourceForm.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["value).then(asset",{"_index":2211,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["value.alt",{"_index":2197,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["value.hasownproperty(key",{"_index":1140,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["value.height",{"_index":2190,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["value.img",{"_index":2200,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["value.latitud",{"_index":4365,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["value.length",{"_index":1688,"title":{},"body":{"classes/Field.html":{},"injectables/ResourceConfig.html":{}}}],["value.longitud",{"_index":4364,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["value.map(group",{"_index":3665,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["value.nam",{"_index":4366,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["value.split",{"_index":4351,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["value.titl",{"_index":3739,"title":{},"body":{"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{}}}],["value.touppercas",{"_index":1687,"title":{},"body":{"classes/Field.html":{}}}],["value.url",{"_index":3714,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["value[key",{"_index":1141,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["values.map(valu",{"_index":3724,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["vanishdelay",{"_index":2936,"title":{},"body":{"components/MenuComponent.html":{}}}],["var",{"_index":181,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"injectables/GeocodeService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["variabl",{"_index":684,"title":{},"body":{"injectables/AuthService.html":{},"components/TabsComponent.html":{}}}],["variables[key",{"_index":733,"title":{},"body":{"injectables/AuthService.html":{}}}],["variou",{"_index":2593,"title":{},"body":{"components/LoaderComponent.html":{}}}],["verifi",{"_index":2001,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["versendet",{"_index":3454,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["version",{"_index":3679,"title":{},"body":{"injectables/ResourceConfig.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["via",{"_index":587,"title":{},"body":{"guards/AuthGuard.html":{},"classes/Config.html":{},"interfaces/CrudConfig.html":{},"components/InputComponent.html":{},"components/LoginComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/SignupComponent.html":{},"modules/SymbolModule.html":{},"components/TabsComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["viabl",{"_index":1700,"title":{},"body":{"classes/Field.html":{}}}],["video",{"_index":1748,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["view",{"_index":1250,"title":{},"body":{"interfaces/Day.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"classes/Field.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"injectables/ResourceConfig.html":{},"directives/SlotHostDirective.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["viewchild",{"_index":136,"title":{},"body":{"components/AceComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListHeaderComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/MediumEditorComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/TinymceComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["viewchild('contain",{"_index":111,"title":{},"body":{"components/AceComponent.html":{},"components/MediumEditorComponent.html":{},"components/PaginationComponent.html":{},"components/TinymceComponent.html":{}}}],["viewchild('fileinput",{"_index":4417,"title":{},"body":{"components/UploadComponent.html":{}}}],["viewchild('filterform",{"_index":2530,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["viewchild('globalload",{"_index":2614,"title":{},"body":{"components/LoaderComponent.html":{}}}],["viewchild('imageload",{"_index":2178,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["viewchild('localload",{"_index":2616,"title":{},"body":{"components/LoaderComponent.html":{}}}],["viewchild('pagecontain",{"_index":3401,"title":{},"body":{"components/PaginationComponent.html":{}}}],["viewchild('search",{"_index":2749,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["viewchild(calendarcompon",{"_index":1202,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["viewchild(entrylistcompon",{"_index":968,"title":{},"body":{"components/CrudComponent.html":{}}}],["viewchild(entrypopcompon",{"_index":964,"title":{},"body":{"components/CrudComponent.html":{}}}],["viewchild(loadercompon",{"_index":970,"title":{},"body":{"components/CrudComponent.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{}}}],["viewchild(locationmapcompon",{"_index":2725,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["viewchild(locationsearchcompon",{"_index":2728,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["viewchild(popcompon",{"_index":4421,"title":{},"body":{"components/UploadComponent.html":{}}}],["viewchild(resourcelistcompon",{"_index":3772,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["viewchild(resourcepopcompon",{"_index":3775,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["viewchild(searchbarcompon",{"_index":1589,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["viewchild(slothostdirect",{"_index":1456,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["viewchild(uploadcompon",{"_index":4483,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["viewchildren",{"_index":2536,"title":{},"body":{"components/ListHeaderComponent.html":{},"components/PaginationComponent.html":{}}}],["viewchildren('filterpop",{"_index":2534,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["viewchildren('pag",{"_index":3398,"title":{},"body":{"components/PaginationComponent.html":{}}}],["viewcontain",{"_index":4053,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["viewcontainerref",{"_index":1439,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/SlotHostDirective.html":{}}}],["viewcontainerref.clear",{"_index":1462,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["viewcontainerref.createcomponent(componentfactori",{"_index":1463,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["viewencapsul",{"_index":2407,"title":{},"body":{"components/ListComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["viewencapsulation.non",{"_index":2341,"title":{},"body":{"components/ListComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["views.find(v",{"_index":3138,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["visibl",{"_index":959,"title":{},"body":{"components/CrudComponent.html":{},"classes/Field.html":{},"modules/FormModule.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationPickerComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PopComponent.html":{},"components/UploadSelectComponent.html":{}}}],["visiblefield",{"_index":4508,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["visiblefieldspip",{"_index":1884,"title":{"pipes/VisibleFieldsPipe.html":{}},"body":{"modules/FormModule.html":{},"pipes/VisibleFieldsPipe.html":{},"overview.html":{}}}],["vm",{"_index":4661,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["void",{"_index":82,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["vscode",{"_index":4648,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["wait",{"_index":510,"title":{},"body":{"components/AssetListComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{}}}],["wait(promis",{"_index":2603,"title":{},"body":{"components/LoaderComponent.html":{},"injectables/LoaderService.html":{}}}],["want",{"_index":2260,"title":{},"body":{"components/InputComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/ace-readme.html":{}}}],["warn",{"_index":2093,"title":{},"body":{"components/IconComponent.html":{},"components/ModalComponent.html":{}}}],["way",{"_index":64,"title":{},"body":{"components/AceComponent.html":{},"components/ListComponent.html":{},"components/LoaderComponent.html":{}}}],["webpack",{"_index":4664,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["webpack.config.j",{"_index":4678,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["webpack.config.js\"},notic",{"_index":4676,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["webpack:brows",{"_index":4674,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["week",{"_index":1208,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["weekday",{"_index":1189,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["weiteren",{"_index":3459,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["well",{"_index":1434,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{}}}],["werden",{"_index":610,"title":{},"body":{"guards/AuthGuard.html":{}}}],["wether",{"_index":1645,"title":{},"body":{"classes/Field.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/readme/data-readme.html":{}}}],["whenev",{"_index":2249,"title":{},"body":{"components/InputComponent.html":{}}}],["whitelistednonpeerdepend",{"_index":5027,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["whole",{"_index":1702,"title":{},"body":{"classes/Field.html":{},"components/LoaderComponent.html":{},"injectables/ResourceConfig.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["whose",{"_index":3470,"title":{},"body":{"components/PopComponent.html":{}}}],["width",{"_index":1064,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{}}}],["wildcard",{"_index":1673,"title":{},"body":{"classes/Field.html":{}}}],["window",{"_index":3294,"title":{},"body":{"injectables/NotificationsService.html":{},"components/UploadComponent.html":{}}}],["window.addeventlistener('keydown",{"_index":3521,"title":{},"body":{"injectables/PopService.html":{}}}],["window.notification(notification.titl",{"_index":3310,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["window.notification.permiss",{"_index":3302,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["window.notification.requestpermission().then((permiss",{"_index":3303,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["withload",{"_index":922,"title":{"interfaces/WithLoader.html":{}},"body":{"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadComponent.html":{},"interfaces/WithLoader.html":{}}}],["withnotif",{"_index":923,"title":{"interfaces/WithNotifications.html":{}},"body":{"components/CrudComponent.html":{},"components/LoginComponent.html":{},"components/NotificationsComponent.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/adding-new-packages.html":{}}}],["without",{"_index":1052,"title":{},"body":{"interfaces/CrudConfig.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["won't",{"_index":4724,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["wont",{"_index":2821,"title":{},"body":{"components/LoginFormComponent.html":{},"components/PopComponent.html":{},"components/SignupFormComponent.html":{},"components/TinymceComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["work",{"_index":676,"title":{},"body":{"injectables/AuthService.html":{},"directives/ImageDirective.html":{},"components/ListComponent.html":{},"components/LoaderComponent.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["workaround",{"_index":143,"title":{},"body":{"components/AceComponent.html":{},"injectables/NotificationsService.html":{}}}],["workspac",{"_index":4573,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["wrap",{"_index":12,"title":{},"body":{"components/AceComponent.html":{},"injectables/GeocodeService.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{}}}],["wrapper",{"_index":1565,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["write",{"_index":106,"title":{},"body":{"components/AceComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{}}}],["writevalu",{"_index":57,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["writevalue(valu",{"_index":104,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["wrong",{"_index":4926,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["wysiwyg",{"_index":4568,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["x",{"_index":758,"title":{},"body":{"injectables/AuthService.html":{}}}],["x.ui",{"_index":3013,"title":{},"body":{"components/ModalComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{}}}],["x.ui/src/_config",{"_index":4704,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["x.ui/src/x.ui",{"_index":4705,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["x.ui/src/x.ui.scss",{"_index":4852,"title":{},"body":{"additional-documentation/readme/style-readme.html":{}}}],["x1f682;🚃🚃🚃",{"_index":422,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{}}}],["xlcss/sass/xlcss.scss",{"_index":4703,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["xxxxxxxx",{"_index":4711,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["yarn",{"_index":4572,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["ye",{"_index":454,"title":{},"body":{"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"classes/Config.html":{},"injectables/CrudService.html":{},"pipes/DatetimePipe.html":{},"components/EntryListPopComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/LocationPickerComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"classes/Sorter.html":{}}}],["yield",{"_index":1083,"title":{},"body":{"injectables/CrudService.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"components/ImageSelectPopComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["you'll",{"_index":4794,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["yourself",{"_index":3898,"title":{},"body":{"injectables/SdkService.html":{}}}],["yyyi",{"_index":800,"title":{},"body":{"modules/CalendarModule.html":{},"interfaces/Day.html":{}}}],["z",{"_index":3165,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["z0",{"_index":1768,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{}}}],["za",{"_index":1767,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{}}}],["zone",{"_index":1392,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["zone.j",{"_index":4557,"title":{},"body":{"dependencies.html":{}}}],["zoom",{"_index":328,"title":{},"body":{"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["zurücksetzen",{"_index":3465,"title":{},"body":{"components/PasswordResetComponent.html":{}}}]],"pipeline":["stemmer"]}, - "store": {"components/AceComponent.html":{"url":"components/AceComponent.html","title":"component - AceComponent","body":"\n \n\n\n\n\n\n Components\n AceComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ace/src/lib/ace.component.ts\n\n\n \n Description\n \n \n Wraps ace editor as angular component. Implements ControlValueAccessor!\nhttps://components.entrecode.de/misc/ace?e=1\n\n \n\n \n Extends\n \n \n DefaultInputComponent\n \n\n \n Implements\n \n \n ControlValueAccessor\n OnInit\n OnChanges\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-ace\n \n\n \n styleUrls\n ace.component.scss\n \n\n\n\n \n templateUrl\n ace.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n container\n \n \n editor\n \n \n input\n \n \n propagateChange\n \n \n ready\n \n \n value\n \n \n Public\n control\n \n \n Public\n field\n \n \n Public\n group\n \n \n Public\n item\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n init\n \n \n ngOnChanges\n \n \n ngOnInit\n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n setMode\n \n \n setTheme\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n mode\n \n \n theme\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n mode\n \n \n mode that should be used (e.g. javascript). Depending on your way of importing ace you have to make sure, the mode is availabe.\n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:47\n \n \n \n \n \n \n \n \n \n theme\n \n \n theme that should be used (e.g. javascript). Depending on your way of importing ace you have to make sure, the theme is availabe.\n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:51\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \n \ninit()\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:54\n \n \n\n\n \n \n creates new ace instance if not present and sets mode and theme if given \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:97\n \n \n\n\n \n \n Re-inits the editor \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:93\n \n \n\n\n \n \n Inits the editor \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:116\n \n \n\n\n \n \n Registers change callback \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:120\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n setMode\n \n \n \n \n \n \n \nsetMode(mode: string)\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:75\n \n \n\n\n \n \n Sets the editor mode to the specified language (after ace/mode/) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n mode\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setTheme\n \n \n \n \n \n \n \nsetTheme(theme: string)\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:84\n \n \n\n\n \n \n Sets the editor theme to the specified theme (after ace/theme/) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n theme\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: any)\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:102\n \n \n\n\n \n \n writes value to editor on outside model change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n container\n \n \n \n \n \n \n \n container: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('container')\n \n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:43\n \n \n\n \n \n container element for ace editor\n\n \n \n\n \n \n \n \n \n \n \n \n \n editor\n \n \n \n \n \n \n \n editor: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:29\n \n \n\n \n \n The ace editor instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n input\n \n \n \n \n \n \n \n input: InputComponent\n\n \n \n \n \n Type : InputComponent\n\n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:39\n \n \n\n \n \n Form input component \n\n \n \n\n \n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => {\n }\n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:112\n \n \n\n\n \n \n \n \n \n \n \n \n \n ready\n \n \n \n \n \n \n \n ready: Promise\n\n \n \n \n \n Type : Promise\n\n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:37\n \n \n\n \n \n Promise that resolves when the editor has been initialized.\n\n \n \n\n \n \n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n value: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:33\n \n \n\n \n \n The current value of the editor\n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n control\n \n \n \n \n \n \n \n control: FormControl\n\n \n \n \n \n Type : FormControl\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:17\n \n \n\n \n \n The form control that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:11\n \n \n\n \n \n The field for which the input is meant. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n group\n \n \n \n \n \n \n \n group: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:15\n \n \n\n \n \n The form group that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:13\n \n \n\n \n \n The item that is targeted by the input \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, OnInit, ElementRef, ViewChild, Input, OnChanges, forwardRef } from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { DefaultInputComponent, InputComponent } from '@ec.components/ui';\n\nimport 'ace-builds/src-noconflict/ace';\nimport 'ace-builds/webpack-resolver';\n\n/** Workaround that expects ace to be imported somewhere else... */\ndeclare const ace: any;\n\n/** Wraps ace editor as angular component. Implements ControlValueAccessor!\n *\n * https://components.entrecode.de/misc/ace?e=1\n*/\n@Component({\n selector: 'ec-ace',\n templateUrl: 'ace.component.html',\n styleUrls: ['ace.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => AceComponent),\n multi: true\n }\n ]\n})\nexport class AceComponent extends DefaultInputComponent implements ControlValueAccessor, OnInit, OnChanges {\n /** The ace editor instance */\n editor: any;\n /**\n * The current value of the editor\n */\n value = '';\n /**\n * Promise that resolves when the editor has been initialized.\n */\n ready: Promise;\n /** Form input component */\n input: InputComponent;\n /**\n * container element for ace editor\n */\n @ViewChild('container') container: ElementRef;\n /**\n * mode that should be used (e.g. javascript). Depending on your way of importing ace you have to make sure, the mode is availabe.\n */\n @Input() mode: string; // https://github.com/ajaxorg/ace-builds/blob/master/src/ext-modelist.js\n /**\n * theme that should be used (e.g. javascript). Depending on your way of importing ace you have to make sure, the theme is availabe.\n */\n @Input() theme: string; // https://github.com/ajaxorg/ace-builds/blob/master/src/ext-themelist.js\n\n /** creates new ace instance if not present and sets mode and theme if given */\n init() {\n if (!this.editor) {\n this.editor = ace.edit(this.container.nativeElement);\n }\n this.ready = Promise.resolve(this.editor);\n if (this.mode) {\n this.setMode(this.mode);\n }\n if (this.theme) {\n this.setTheme(this.theme);\n }\n if (this.value) {\n this.editor.setValue(this.value, 1);\n }\n this.ready.then((editor) => {\n editor.on('change', (e) => {\n this.propagateChange(this.editor.getValue());\n });\n });\n }\n /** Sets the editor mode to the specified language (after ace/mode/) */\n setMode(mode: string) {\n this.mode = mode;\n if (!this.editor) {\n return;\n }\n this.editor.session.setMode('ace/mode/' + this.mode);\n }\n\n /** Sets the editor theme to the specified theme (after ace/theme/) */\n setTheme(theme: string) {\n this.theme = theme;\n if (!this.editor) {\n return;\n }\n this.editor.setTheme('ace/theme/' + this.theme);\n }\n\n /** Inits the editor */\n ngOnInit() {\n this.init();\n }\n /** Re-inits the editor */\n ngOnChanges() {\n this.init();\n }\n\n /** writes value to editor on outside model change. */\n writeValue(value: any) {\n this.value = value || '';\n if (!this.ready) {\n return;\n }\n this.ready.then((editor) => {\n editor.setValue(this.value, 1);\n });\n }\n\n propagateChange = (_: any) => {\n }\n\n /** Registers change callback */\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n\n registerOnTouched() {\n }\n}\n\n \n\n \n \n\n \n\n \n \n ace.component.scss\n \n .ec-ace {\n min-height: 500px;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'AceComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AceModule.html":{"url":"modules/AceModule.html","title":"module - AceModule","body":"\n \n\n\n\n\n Modules\n AceModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AceModule\n\n\n\ncluster_AceModule_declarations\n\n\n\ncluster_AceModule_exports\n\n\n\n\nAceComponent\n\nAceComponent\n\n\n\nAceModule\n\nAceModule\n\nAceModule -->\n\nAceComponent->AceModule\n\n\n\n\n\nAceComponent \n\nAceComponent \n\nAceComponent -->\n\nAceModule->AceComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ace/src/lib/ace.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AceComponent\n \n \n \n \n EntryComponents\n \n \n AceComponent\n \n \n \n \n Exports\n \n \n AceComponent\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { AceComponent } from './ace.component';\n\nexport const aceModuleConfig = {\n imports: [],\n exports: [AceComponent],\n declarations: [AceComponent],\n entryComponents: [AceComponent],\n providers: [],\n};\n\n@NgModule(aceModuleConfig)\nexport class AceModule { }\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Action.html":{"url":"interfaces/Action.html","title":"interface - Action","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Action\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/actionbar/actionbar.component.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n action\n \n \n Optional\n data\n \n \n id\n \n \n Optional\n path\n \n \n Optional\n select\n \n \n title\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n action\n \n \n \n \n action: ActionFunction\n\n \n \n\n\n \n \n Type : ActionFunction\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n data\n \n \n \n \n data: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n id\n \n \n \n \n id: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n path\n \n \n \n \n path: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n select\n \n \n \n \n select: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n title\n \n \n \n \n title: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { Component, OnInit, Input, ElementRef, ChangeDetectorRef } from '@angular/core';\nimport { SelectComponent } from '../select/select.component';\nimport { ListConfig, List, Item } from '@ec.components/core';\n\nexport type ActionFunction = (item?: Item | any, actionbar?: ActionbarComponent) => any;\n\nexport interface Action {\n title: string;\n id: string;\n path?: string;\n data?: any;\n select?: boolean;\n action?: ActionFunction;\n}\n\nexport interface ActionbarConfig extends ListConfig {\n\n}\n\n@Component({\n selector: 'ec-actionbar',\n templateUrl: '../select/select.component.html'\n})\n\nexport class ActionbarComponent extends SelectComponent implements OnInit {\n @Input() config: ActionbarConfig = {\n label: 'title',\n identifier: 'id',\n fields: {\n title: {}\n }\n };\n @Input() actions: Action[];\n actionStack: { [id: string]: Action[] } = {};\n\n constructor(\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef,\n ) {\n super(elementRef, cdr);\n this.add.subscribe((item) => {\n if (item.getBody().select !== false) {\n this.selection.add(item);\n }\n if (item.getBody().action) {\n item.getBody().action(item, this);\n }\n if (item.getBody().children) {\n this.loadActions(item.getBody().children);\n }\n this.searchbar.clear();\n });\n this.remove.subscribe((item) => {\n this.selection.remove(item);\n this.loadActionsBefore();\n });\n }\n\n loadActionsBefore() {\n const actionsBefore = this.actionStack[this.currentID()];\n if (actionsBefore) {\n this.loadActions(actionsBefore);\n }\n }\n\n ngOnInit() {\n this.loadActions(this.actions);\n }\n\n currentID() {\n if (!this.selection || this.selection.isEmpty()) {\n return 'ROOT';\n }\n return this.selection.items[this.selection.items.length - 1].id();\n }\n\n reset() {\n this.selection.removeAll();\n this.loadActions(this.actionStack[this.currentID()]);\n }\n\n currentActions() {\n return this.actionStack[this.currentID()];\n }\n\n loadActions(actions, addToStack = true) {\n if (addToStack) {\n this.actionStack[this.currentID()] = actions;\n }\n this.list = new List(actions, this.config);\n if (!this.selection) {\n this.initSelection();\n }\n setTimeout(() => {\n if (this.dropdownList) {\n this.dropdownList.focusFirst();\n }\n });\n }\n\n getPath() {\n return this.selection.getValue();\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ActionbarConfig.html":{"url":"interfaces/ActionbarConfig.html","title":"interface - ActionbarConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n ActionbarConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/actionbar/actionbar.component.ts\n \n\n\n \n Extends\n \n \n ListConfig\n \n\n\n\n\n \n\n\n \n import { Component, OnInit, Input, ElementRef, ChangeDetectorRef } from '@angular/core';\nimport { SelectComponent } from '../select/select.component';\nimport { ListConfig, List, Item } from '@ec.components/core';\n\nexport type ActionFunction = (item?: Item | any, actionbar?: ActionbarComponent) => any;\n\nexport interface Action {\n title: string;\n id: string;\n path?: string;\n data?: any;\n select?: boolean;\n action?: ActionFunction;\n}\n\nexport interface ActionbarConfig extends ListConfig {\n\n}\n\n@Component({\n selector: 'ec-actionbar',\n templateUrl: '../select/select.component.html'\n})\n\nexport class ActionbarComponent extends SelectComponent implements OnInit {\n @Input() config: ActionbarConfig = {\n label: 'title',\n identifier: 'id',\n fields: {\n title: {}\n }\n };\n @Input() actions: Action[];\n actionStack: { [id: string]: Action[] } = {};\n\n constructor(\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef,\n ) {\n super(elementRef, cdr);\n this.add.subscribe((item) => {\n if (item.getBody().select !== false) {\n this.selection.add(item);\n }\n if (item.getBody().action) {\n item.getBody().action(item, this);\n }\n if (item.getBody().children) {\n this.loadActions(item.getBody().children);\n }\n this.searchbar.clear();\n });\n this.remove.subscribe((item) => {\n this.selection.remove(item);\n this.loadActionsBefore();\n });\n }\n\n loadActionsBefore() {\n const actionsBefore = this.actionStack[this.currentID()];\n if (actionsBefore) {\n this.loadActions(actionsBefore);\n }\n }\n\n ngOnInit() {\n this.loadActions(this.actions);\n }\n\n currentID() {\n if (!this.selection || this.selection.isEmpty()) {\n return 'ROOT';\n }\n return this.selection.items[this.selection.items.length - 1].id();\n }\n\n reset() {\n this.selection.removeAll();\n this.loadActions(this.actionStack[this.currentID()]);\n }\n\n currentActions() {\n return this.actionStack[this.currentID()];\n }\n\n loadActions(actions, addToStack = true) {\n if (addToStack) {\n this.actionStack[this.currentID()] = actions;\n }\n this.list = new List(actions, this.config);\n if (!this.selection) {\n this.initSelection();\n }\n setTimeout(() => {\n if (this.dropdownList) {\n this.dropdownList.focusFirst();\n }\n });\n }\n\n getPath() {\n return this.selection.getValue();\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AdminEntryInputComponent.html":{"url":"components/AdminEntryInputComponent.html","title":"component - AdminEntryInputComponent","body":"\n \n\n\n\n\n\n Components\n AdminEntryInputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/entry-form/admin-entry-input.component.ts\n\n\n \n Description\n \n \n This component holds the input templates for all field types that require having the DatamanagerResource as api.\nThis is currently relevant for account and role fields which come from the ec.api.\n\n \n\n \n Extends\n \n \n DefaultInputComponent\n \n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n templateUrl\n ./admin-entry-input.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n api\n \n \n Public\n sdk\n \n \n Public\n control\n \n \n Public\n field\n \n \n Public\n group\n \n \n Public\n item\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService)\n \n \n \n \n Defined in packages/data/src/lib/entry-form/admin-entry-input.component.ts:13\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n api\n \n \n \n \n \n \n \n api: DataManagerResource\n\n \n \n \n \n Type : DataManagerResource\n\n \n \n \n \n Defined in packages/data/src/lib/entry-form/admin-entry-input.component.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n sdk\n \n \n \n \n \n \n \n sdk: SdkService\n\n \n \n \n \n Type : SdkService\n\n \n \n \n \n Defined in packages/data/src/lib/entry-form/admin-entry-input.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n control\n \n \n \n \n \n \n \n control: FormControl\n\n \n \n \n \n Type : FormControl\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:17\n \n \n\n \n \n The form control that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:11\n \n \n\n \n \n The field for which the input is meant. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n group\n \n \n \n \n \n \n \n group: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:15\n \n \n\n \n \n The form group that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:13\n \n \n\n \n \n The item that is targeted by the input \n\n \n \n\n \n \n\n\n\n\n\n \n import { SdkService } from '../sdk/sdk.service';\nimport { Component } from '@angular/core';\nimport { DefaultInputComponent } from '@ec.components/ui';\nimport DataManagerResource from 'ec.sdk/lib/resources/datamanager/DataManagerResource';\n\n/** This component holds the input templates for all field types that require having the DatamanagerResource as api.\n * This is currently relevant for account and role fields which come from the ec.api.\n */\n@Component({\n templateUrl: './admin-entry-input.component.html',\n})\nexport class AdminEntryInputComponent extends DefaultInputComponent {\n api: DataManagerResource;\n constructor(public sdk: SdkService) {\n super();\n /* this.sdk.root.then((root) => this.api = root); */\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n 🚂🚃🚃🚃 {{field.type}} input coming soon..\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' 🚂🚃🚃🚃 {{field.type}} input coming soon.. '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'AdminEntryInputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/AssetDirective.html":{"url":"directives/AssetDirective.html","title":"directive - AssetDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n AssetDirective\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Examples\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/files/asset/asset.directive.ts\n \n\n \n Description\n \n \n Loads an public asset by id to the template.\nassets/asset\nhttps://components.entrecode.de/assets/asset?e=1\n\n \n\n \n Implements\n \n \n OnChanges\n \n\n\n \n Metadata\n \n \n\n \n Selector\n [ecAsset]\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n asset\n \n \n promise\n \n \n Public\n sdk\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n load\n \n \n ngOnChanges\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n assetId\n \n \n autoload\n \n \n ecAsset\n \n \n levels\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n loaded\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService)\n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:30\n \n \n\n \n \n Injects the sdk \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n The api to use. Defaults to sdk.api \n\n \n Type : PublicAPI\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:26\n \n \n \n \n \n \n \n \n \n assetId\n \n \n The asset id that should be loaded\n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:18\n \n \n \n \n \n \n \n \n \n autoload\n \n \n Should the asset be loaded immediately? Defaults to true \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:22\n \n \n \n \n \n \n \n \n \n ecAsset\n \n \n The asset id that should be loaded\n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:20\n \n \n \n \n \n \n \n \n \n levels\n \n \n The levels to use. \n\n \n Type : number\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:24\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n loaded\n \n \n Fires as soon as the asset has been loaded. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:28\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n load\n \n \n \n \n \n \n \nload(id?: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:48\n \n \n\n\n \n \n Loads the asset. Can be called from template when using autoload=false \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:37\n \n \n\n\n \n \n as soon as model and id are known, the asset will be loaded. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n asset\n \n \n \n \n \n \n \n asset: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:30\n \n \n\n \n \n The current loaded asset \n\n \n \n\n \n \n \n \n \n \n \n \n \n promise\n \n \n \n \n \n \n \n promise: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:16\n \n \n\n \n \n The loading promise \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n sdk\n \n \n \n \n \n \n \n sdk: SdkService\n\n \n \n \n \n Type : SdkService\n\n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:33\n \n \n\n\n \n \n\n\n\n \n\n \n ecAsset\nThis directive can be used to load a single asset directly from the template:\n\n id: {{myAsset.asset?.assetID}}\n title: {{myAsset.asset?.title}}\n tags: {{myAsset.asset?.tags}}\n created: {{myAsset.asset?.created}}\n type: {{myAsset.asset?.type}}\n files: {{myAsset.asset?.files?.length}}\n\n \n\n \n import { Directive, EventEmitter, Input, OnChanges, Output } from '@angular/core';\nimport PublicAssetResource from 'ec.sdk/lib/resources/publicAPI/PublicAssetResource';\nimport { SdkService } from '../../sdk/sdk.service';\nimport PublicAPI from 'ec.sdk/lib/PublicAPI';\n\n/** Loads an public asset by id to the template.\n * assets/asset\n * https://components.entrecode.de/assets/asset?e=1\n */\n@Directive({\n selector: '[ecAsset]',\n exportAs: 'ecAsset'\n})\nexport class AssetDirective implements OnChanges {\n /** The loading promise */\n promise: any;\n /** The asset id that should be loaded*/\n @Input() assetId: string;\n /** The asset id that should be loaded*/\n @Input() ecAsset: string;\n /** Should the asset be loaded immediately? Defaults to true */\n @Input() autoload: boolean;\n /** The levels to use. */\n @Input() levels: number;\n /** The api to use. Defaults to sdk.api */\n @Input() api: PublicAPI;\n /** Fires as soon as the asset has been loaded. */\n @Output() loaded: EventEmitter = new EventEmitter();\n /** The current loaded asset */\n public asset: any;\n\n /** Injects the sdk */\n constructor(public sdk: SdkService) {\n }\n\n /** as soon as model and id are known, the asset will be loaded. */\n ngOnChanges() {\n if (this.ecAsset) {\n this.assetId = this.ecAsset;\n }\n if (this.autoload === false) {\n return;\n }\n this.load();\n }\n\n /** Loads the asset. Can be called from template when using autoload=false */\n load(id?: string) {\n this.assetId = id || this.assetId;\n if (!this.assetId) {\n return Promise.reject('cannot load asset: no assetId is set');\n }\n const api = this.api || this.sdk.api;\n if (!api) {\n throw new Error('cannot load asset: no api was set!');\n }\n this.promise = api.asset(this.assetId)\n .then((asset) => {\n this.asset = asset;\n this.loaded.emit(asset);\n return asset;\n });\n return this.promise;\n }\n}\n\n \n\n \n \n no-iframes\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AssetListComponent.html":{"url":"components/AssetListComponent.html","title":"component - AssetListComponent","body":"\n \n\n\n\n\n\n Components\n AssetListComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/asset-list/asset-list.component.ts\n\n\n\n \n Extends\n \n \n ResourceListComponent\n \n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-asset-list\n \n\n\n\n\n \n templateUrl\n ./asset-list.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n list\n \n \n Public\n listConfig\n \n \n resourceConfig\n \n \n Public\n route\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n Protected\n createList\n \n \n filter\n \n \n initFilterQuery\n \n \n ngOnChanges\n \n \n update\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n listResource\n \n \n loader\n \n \n loadWhen\n \n \n relation\n \n \n solo\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n The API Connector that possesses the resource list, see https://entrecode.github.io/ec.sdk/#api-connectors \n\n \n Type : Core\n\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:35\n \n \n \n \n \n \n \n \n \n listResource\n \n \n If listResource input is set, the given ListResource will be used directly and loading will be skipped. \n\n \n Type : ListResource\n\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:27\n \n \n \n \n \n \n \n \n \n loader\n \n \n The loader that should be shown while the list is loaded. \n\n \n Type : LoaderComponent\n\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:39\n \n \n \n \n \n \n \n \n \n loadWhen\n \n \n If set to false, the list will wait for the flag to turn true before loading. \n\n \n Type : boolean\n\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:31\n \n \n \n \n \n \n \n \n \n relation\n \n \n The name of the resource. If given, the generic ListResource loading will be used (api.resourceList) \n\n \n Type : string\n\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:37\n \n \n \n \n \n \n \n \n \n solo\n \n \n If true, only one item is selectable next \n\n \n Type : boolean\n\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:29\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/data/src/lib/asset-list/asset-list.component.ts:10\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Protected\n createList\n \n \n \n \n \n \n \n \n createList()\n \n \n\n\n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:62\n \n \n\n\n \n \n The method to create the list\n\n\n \n Returns : Promise | ResourceList\n\n \n \n \n \n \n \n \n \n \n \n \n \n filter\n \n \n \n \n \n \n \nfilter(property: string, value: any)\n \n \n\n\n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:128\n \n \n\n\n \n \n This method will filter the list by a given property value and optional operator. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n initFilterQuery\n \n \n \n \n \n \n \ninitFilterQuery(fieldFilter: (property: string,value: any) => void)\n \n \n\n\n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:132\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n fieldFilter\n \n function\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges(changes?)\n \n \n\n\n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:119\n \n \n\n\n \n \n When changing the model or the config, the list will update\n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n changes\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n update\n \n \n \n \n \n \n \nupdate()\n \n \n\n\n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:83\n \n \n\n\n \n \n Creates/Updates the list and subscribes Observables. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:49\n \n \n\n\n \n \n \n \n \n \n \n \n \n list\n \n \n \n \n \n \n \n list: ResourceList\n\n \n \n \n \n Type : ResourceList\n\n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:33\n \n \n\n \n \n The instance of an EntryList \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n listConfig\n \n \n \n \n \n \n \n listConfig: ListConfigService\n\n \n \n \n \n Type : ListConfigService\n\n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:48\n \n \n\n\n \n \n \n \n \n \n \n \n \n resourceConfig\n \n \n \n \n \n \n \n resourceConfig: ResourceConfig\n\n \n \n \n \n Type : ResourceConfig\n\n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n route\n \n \n \n \n \n \n \n route: ActivatedRoute\n\n \n \n \n \n Type : ActivatedRoute\n\n \n \n \n \n Decorators : \n \n \n @Optional()\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:50\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnInit } from '@angular/core';\nimport { ResourceListComponent } from '../resource-list/resource-list.component';\n\n@Component({\n selector: 'ec-asset-list',\n templateUrl: './asset-list.component.html'\n})\n\nexport class AssetListComponent extends ResourceListComponent implements OnInit {\n ngOnInit() {\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n {{group.value}}\n \n \n -->\n\n \n \n \n \n \n {{item.getBody()}}\n -->\n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{group.value}} --> {{item.getBody()}} --> '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'AssetListComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AssetgroupSelectComponent.html":{"url":"components/AssetgroupSelectComponent.html","title":"component - AssetgroupSelectComponent","body":"\n \n\n\n\n\n\n Components\n AssetgroupSelectComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-assetgroup-select\n \n\n\n\n\n \n templateUrl\n ./assetgroup-select.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n fileService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n assetGroupID\n \n \n assetGroups\n \n \n disableLegacy\n \n \n placeholder\n \n \n readOnly\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n groupChanged\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(fileService: FileService)\n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:17\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n fileService\n \n \n FileService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n assetGroupID\n \n \n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:13\n \n \n \n \n \n \n \n \n \n assetGroups\n \n \n \n Type : string[]\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:14\n \n \n \n \n \n \n \n \n \n disableLegacy\n \n \n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:15\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n \n Default value : 'select assetgroup..'\n \n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:12\n \n \n \n \n \n \n \n \n \n readOnly\n \n \n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:16\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n groupChanged\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:17\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:23\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n fileService\n \n \n \n \n \n \n \n fileService: FileService\n\n \n \n \n \n Type : FileService\n\n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:20\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\nimport { FileService } from '../file.service';\n\n// TODO: add demo + doc\n\n@Component({\n selector: 'ec-assetgroup-select',\n templateUrl: './assetgroup-select.component.html',\n})\n\nexport class AssetgroupSelectComponent implements OnInit {\n @Input() placeholder = 'select assetgroup..';\n @Input() assetGroupID: string;\n @Input() assetGroups: string[];\n @Input() disableLegacy: boolean;\n @Input() readOnly: boolean;\n @Output() groupChanged: EventEmitter = new EventEmitter();\n\n constructor(\n public fileService: FileService\n ) { }\n\n ngOnInit() {\n this.fileService.assetGroupList().then(assetGroups => this.assetGroups = assetGroups);\n }\n}\n\n \n\n \n \n {{placeholder}}\n {{assetGroup}}\n legacy Assets -->\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{placeholder}} {{assetGroup}} legacy Assets -->'\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'AssetgroupSelectComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"guards/AuthGuard.html":{"url":"guards/AuthGuard.html","title":"guard - AuthGuard","body":"\n \n\n\n\n\n\n\n\n\n\n\n Guards\n AuthGuard\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/auth/auth-guard.service.ts\n \n\n \n Description\n \n \n This guard can be used on routes that only can be activated when a user is present in the SdkService.\nIf no user is found, an error message is shown. You can then react via the redirect output. \n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n redirect\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n canActivate\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, notifications: NotificationsService)\n \n \n \n \n Defined in packages/data/src/lib/auth/auth-guard.service.ts:12\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n notifications\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n canActivate\n \n \n \n \n \n \n \ncanActivate()\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth-guard.service.ts:17\n \n \n\n\n \n \n Checks if the sdk contains a user, if not an error message is shown. \n\n\n \n Returns : any\n\n \n \n \n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { CanActivate } from '@angular/router';\nimport { SdkService } from '../sdk/sdk.service';\nimport { NotificationsService } from '@ec.components/ui';\nimport { Subject } from 'rxjs';\n\n/** This guard can be used on routes that only can be activated when a user is present in the SdkService.\n * If no user is found, an error message is shown. You can then react via the redirect output. */\n@Injectable()\nexport class AuthGuard implements CanActivate {\n /** Subject that is nexted when the user check fails. (Meant to be used for redirecting to another page e.g. login) */\n redirect: Subject = new Subject();\n\n constructor(private sdk: SdkService, private notifications: NotificationsService) {\n }\n /** Checks if the sdk contains a user, if not an error message is shown. */\n canActivate() {\n return this.sdk.ready.then(user => {\n if (!!user) {\n return true;\n }\n this.notifications.emit({\n type: 'error',\n title: 'Diese Seite kann nicht angezeigt werden.',\n message: 'Sie sind nicht eingeloggt.'\n });\n this.redirect.next();\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AuthModule.html":{"url":"modules/AuthModule.html","title":"module - AuthModule","body":"\n \n\n\n\n\n Modules\n AuthModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AuthModule\n\n\n\ncluster_AuthModule_declarations\n\n\n\ncluster_AuthModule_imports\n\n\n\ncluster_AuthModule_exports\n\n\n\ncluster_AuthModule_providers\n\n\n\n\nLoginComponent\n\nLoginComponent\n\n\n\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nLoginComponent->AuthModule\n\n\n\n\n\nPasswordResetComponent\n\nPasswordResetComponent\n\nAuthModule -->\n\nPasswordResetComponent->AuthModule\n\n\n\n\n\nSignupComponent\n\nSignupComponent\n\nAuthModule -->\n\nSignupComponent->AuthModule\n\n\n\n\n\nLoginComponent \n\nLoginComponent \n\nLoginComponent -->\n\nAuthModule->LoginComponent \n\n\n\n\n\nPasswordResetComponent \n\nPasswordResetComponent \n\nPasswordResetComponent -->\n\nAuthModule->PasswordResetComponent \n\n\n\n\n\nSignupComponent \n\nSignupComponent \n\nSignupComponent -->\n\nAuthModule->SignupComponent \n\n\n\n\n\nUiModule\n\nUiModule\n\nAuthModule -->\n\nUiModule->AuthModule\n\n\n\n\n\ncookieFactory()\n\ncookieFactory()\n\nAuthModule -->\n\ncookieFactory()->AuthModule\n\n\n\n\n\nAuthService\n\nAuthService\n\nAuthModule -->\n\nAuthService->AuthModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/data/src/lib/auth/auth.module.ts\n \n\n\n \n Description\n \n \n Module for all auth related components and services. \n\n \n\n\n \n \n \n Declarations\n \n \n LoginComponent\n \n \n PasswordResetComponent\n \n \n SignupComponent\n \n \n \n \n Providers\n \n \n AuthService\n \n \n \n \n Imports\n \n \n UiModule\n \n \n cookieFactory()\n \n \n \n \n Exports\n \n \n LoginComponent\n \n \n PasswordResetComponent\n \n \n SignupComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { ModuleWithProviders, NgModule } from '@angular/core';\nimport { ReactiveFormsModule, FormsModule } from '@angular/forms';\nimport { UiModule } from '@ec.components/ui';\nimport { CookieModule } from 'ngx-cookie';\nimport { AuthGuard } from './auth-guard.service';\nimport { AuthService } from './auth.service';\nimport { LoginComponent } from './login/login.component';\nimport { PasswordResetComponent } from './password-reset/password-reset.component';\nimport { SignupComponent } from './signup/signup.component';\n\n/** loads CookieModule */\nexport function cookieFactory(): ModuleWithProviders {\n // https://github.com/auth0/angular2-jwt/issues/305\n return CookieModule.forRoot();\n}\n/** Module for all auth related components and services. */\n@NgModule({\n declarations: [\n PasswordResetComponent,\n LoginComponent,\n SignupComponent,\n ],\n imports: [\n FormsModule,\n cookieFactory(),\n CommonModule,\n ReactiveFormsModule,\n UiModule\n ],\n exports: [\n ReactiveFormsModule,\n PasswordResetComponent,\n LoginComponent,\n SignupComponent,\n ],\n providers: [AuthGuard, AuthService]\n})\nexport class AuthModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/AuthService.html":{"url":"injectables/AuthService.html","title":"injectable - AuthService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n AuthService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/auth/auth.service.ts\n \n\n \n Description\n \n \n The SdkService exposes all instances of the ec.sdk APIs.\nTo be able to use it, you have to provide an environment like this in your module's providers:\n {\n provide: \"environment\",\n useValue: {\n datamanagerID: \"83cc6374\",\n environment: \"stage\",\n clientID: \"rest\"\n }\n }The environment is optional, defaulting to live. See\nhttps://entrecode.github.io/ec.sdk/#environment for more info. The clientID is only optional if\nyou do not plan to use authentication. See https://entrecode.github.io/ec.sdk/#environment =>\nsetClientID.\n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n checkPermission\n \n \n getAccount\n \n \n getAllowedModelMethods\n \n \n getAllowedResourceMethods\n \n \n getApi\n \n \n login\n \n \n logout\n \n \n noClientID\n \n \n resetPassword\n \n \n resolveVariables\n \n \n signup\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(resourceConfig: ResourceConfig, sdk: SdkService)\n \n \n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:24\n \n \n\n \n \n Calls init and sets ready to true when finished. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n resourceConfig\n \n \n ResourceConfig\n \n \n \n No\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n checkPermission\n \n \n \n \n \n \n \ncheckPermission(permission: string, api?)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:67\n \n \n\n\n \n \n checks given public permission for given api, defaults to this.sdk.api. Also works as ec user \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n permission\n \n string\n \n \n \n No\n \n \n\n \n \n api\n \n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAccount\n \n \n \n \n \n \n \ngetAccount(api)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:58\n \n \n\n\n \n \n Returns the current account. Works for all apis \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n api\n \n \n No\n \n \n \n this.sdk.api\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAllowedModelMethods\n \n \n \n \n \n \n \ngetAllowedModelMethods(model: string, methods?: string[])\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:113\n \n \n\n\n \n \n Returns an array of all allowed methods for the given relation \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n methods\n \n string[]\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAllowedResourceMethods\n \n \n \n \n \n \n \ngetAllowedResourceMethods(relation: string, variables: Object, methods?: string[], api?: Core)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:82\n \n \n\n\n \n \n Returns only the allowed methods for a given relation. Uses the permissions config option from resource-config. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n relation\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n variables\n \n Object\n \n \n \n No\n \n \n \n {}\n \n\n \n \n methods\n \n string[]\n \n \n \n Yes\n \n \n \n \n\n \n \n api\n \n Core\n \n \n \n Yes\n \n \n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getApi\n \n \n \n \n \n \n \ngetApi(email: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:157\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n email\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin(undefined, api?)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:31\n \n \n\n\n \n \n Generic login that works with both public and admin API. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n \n \n No\n \n \n\n \n \n api\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n logout\n \n \n \n \n \n \n \nlogout(api?)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:147\n \n \n\n\n \n \n Generic logout that works with both public and admin API. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n api\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n noClientID\n \n \n \n \n \n \n \nnoClientID()\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:171\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n resetPassword\n \n \n \n \n \n \n \nresetPassword(email, api?)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:135\n \n \n\n\n \n \n Generic password reset that works with both public and admin API. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n email\n \n \n No\n \n \n\n \n \n api\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n resolveVariables\n \n \n \n \n \n \n \nresolveVariables(string: string, variables: Object)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:74\n \n \n\n\n \n \n replaces all variables by values in a string \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n string\n \n string\n \n \n \n No\n \n \n\n \n \n variables\n \n Object\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n signup\n \n \n \n \n \n \n \nsignup(undefined, api?)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:45\n \n \n\n\n \n \n Generic Signup, works for accounts API and PublicAPI \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n \n \n No\n \n \n\n \n \n api\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport Core from 'ec.sdk/lib/Core';\nimport { ResourceConfig } from '../resource-config/resource-config.service';\nimport { SdkService } from '../sdk/sdk.service';\n\n/** The SdkService exposes all instances of the ec.sdk APIs.\n * To be able to use it, you have to provide an environment like this in your module's providers:\n *\n *```json\n {\n provide: \"environment\",\n useValue: {\n datamanagerID: \"83cc6374\",\n environment: \"stage\",\n clientID: \"rest\"\n }\n }```\n * The environment is optional, defaulting to live. See\n * https://entrecode.github.io/ec.sdk/#environment for more info. The clientID is only optional if\n * you do not plan to use authentication. See https://entrecode.github.io/ec.sdk/#environment =>\n * setClientID.\n */\n@Injectable()\nexport class AuthService {\n\n /** Calls init and sets ready to true when finished. */\n constructor(private resourceConfig: ResourceConfig, private sdk: SdkService) {\n }\n\n /** Generic login that works with both public and admin API. */\n login({ email, password }, api?) {\n if (this.noClientID()) {\n return Promise.reject(this.noClientID());\n }\n return Promise.resolve(api || this.getApi(email))\n .then((resolvedAPI) => {\n const _api = resolvedAPI || this.sdk.session;\n return !_api ? Promise.reject('api_not_found') : _api.login(email, password);\n }).then(() => {\n return this.sdk.init();\n });\n }\n\n /** Generic Signup, works for accounts API and PublicAPI */\n signup({ email, password, invite }, api?) {\n if (this.noClientID()) {\n return Promise.reject(this.noClientID());\n }\n return api ? api.signup(email, password, invite) :\n this.sdk.api.signup(email, password, invite)\n .catch(() => this.sdk.accounts.signup(email, password, invite))\n .then((res) => {\n return this.sdk.init();\n });\n }\n\n /** Returns the current account. Works for all apis */\n getAccount(api = this.sdk.api) {\n return api.me().then((account) => {\n return account || this.sdk.accounts.me();\n }).catch((err) => {\n return this.sdk.api.me();\n });\n }\n\n /** checks given public permission for given api, defaults to this.sdk.api. Also works as ec user */\n checkPermission(permission: string, api?) {\n return this.sdk.ready.then((user) => {\n api = api || this.sdk.user;\n return api.checkPermission(permission);\n });\n }\n /** replaces all variables by values in a string */\n resolveVariables(string: string, variables: Object) {\n Object.keys(variables).forEach((key) => {\n string = string.replace(``, variables[key]);\n });\n return string;\n }\n\n /** Returns only the allowed methods for a given relation. Uses the permissions config option from resource-config. */\n getAllowedResourceMethods(relation: string, variables: Object = {}, methods?: string[], api?: Core): Promise {\n if (methods) {\n return Promise.resolve(methods);\n }\n if (!this.resourceConfig.get(relation) || !this.resourceConfig.get(relation).permissions) {\n /* console.warn(`relation ${relation} has no defined permissions, defaulting to all methods available`); */\n return Promise.resolve(['get', 'post', 'put', 'delete']);\n }\n const permissions = this.resourceConfig.get(relation).permissions;\n return Object.keys(permissions)\n .map((method) => (results) => {\n return !permissions[method] ? Promise.resolve(results) :\n permissions[method] === true ? Promise.resolve(results.concat(method)) :\n this.checkPermission(`${this.resolveVariables(permissions[method], variables)}`, api)\n .then(res => {\n if (res) {\n results.push(method);\n }\n return results;\n }).catch(err => {\n return results;\n });\n })\n .reduce((a, b) => a.then(r => b(r)), Promise.resolve([]))\n .then(_methods => {\n _methods.filter(x => !!x);\n return _methods;\n });\n }\n\n /** Returns an array of all allowed methods for the given relation */\n getAllowedModelMethods(model: string, methods?: string[]): Promise {\n if (methods) {\n return Promise.resolve(methods);\n }\n return ['get', 'post', 'put', 'delete']\n .map((method) => (results) =>\n this.checkPermission(`${model}:${method}`, this.sdk.api)\n .then(res => {\n if (res) {\n results.push(method);\n }\n return results;\n })\n )\n .reduce((a, b) => a.then(r => b(r)), Promise.resolve([]))\n .then(_methods => {\n _methods.filter(x => !!x);\n return _methods;\n });\n }\n\n /** Generic password reset that works with both public and admin API. */\n resetPassword(email, api?) {\n if (this.noClientID()) {\n return Promise.reject(this.noClientID());\n }\n return Promise.resolve(api || this.getApi(email))\n .then((resolvedAPI) => {\n const _api = resolvedAPI || this.sdk.accounts;\n return !_api ? Promise.reject('api_not_found') : _api.resetPassword(email);\n });\n }\n\n /** Generic logout that works with both public and admin API. */\n logout(api?) {\n if (this.noClientID()) {\n return Promise.reject(this.noClientID());\n }\n return api ? api.logout() : this.sdk.session.logout().catch(() => this.sdk.api.logout())\n .then(() => {\n return this.sdk.init();\n });\n }\n\n getApi(email: string) {\n if (!this.sdk.api && !this.sdk.accounts) {\n return Promise.reject('no_api_found');\n }\n return this.sdk.api.emailAvailable(email)\n .then((available) => {\n if (!available) {\n return this.sdk.api;\n }\n }).catch(() => {\n return;\n });\n }\n\n noClientID() {\n if (!this.sdk.environment || !this.sdk.environment.clientID) {\n return `\nNo clientID set in environment! To enable all auth related functionalities,\nyou can create a client in your datamanager settings and provide it with your environment:\n\n providers: [\n {\n provide: 'environment',\n useValue: {\n datamanagerID: '83cc6374',\n clientID: 'myClient',\n }\n }\n ]\n`;\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/CalendarModule.html":{"url":"modules/CalendarModule.html","title":"module - CalendarModule","body":"\n \n\n\n\n\n Modules\n CalendarModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_CalendarModule\n\n\n\ncluster_CalendarModule_declarations\n\n\n\ncluster_CalendarModule_exports\n\n\n\n\nCalendarComponent\n\nCalendarComponent\n\n\n\nCalendarModule\n\nCalendarModule\n\nCalendarModule -->\n\nCalendarComponent->CalendarModule\n\n\n\n\n\nDaterangeComponent\n\nDaterangeComponent\n\nCalendarModule -->\n\nDaterangeComponent->CalendarModule\n\n\n\n\n\nDatetimePipe\n\nDatetimePipe\n\nCalendarModule -->\n\nDatetimePipe->CalendarModule\n\n\n\n\n\nHeatmapComponent\n\nHeatmapComponent\n\nCalendarModule -->\n\nHeatmapComponent->CalendarModule\n\n\n\n\n\nMonthComponent\n\nMonthComponent\n\nCalendarModule -->\n\nMonthComponent->CalendarModule\n\n\n\n\n\nCalendarComponent \n\nCalendarComponent \n\nCalendarComponent -->\n\nCalendarModule->CalendarComponent \n\n\n\n\n\nDaterangeComponent \n\nDaterangeComponent \n\nDaterangeComponent -->\n\nCalendarModule->DaterangeComponent \n\n\n\n\n\nDatetimePipe \n\nDatetimePipe \n\nDatetimePipe -->\n\nCalendarModule->DatetimePipe \n\n\n\n\n\nHeatmapComponent \n\nHeatmapComponent \n\nHeatmapComponent -->\n\nCalendarModule->HeatmapComponent \n\n\n\n\n\nMonthComponent \n\nMonthComponent \n\nMonthComponent -->\n\nCalendarModule->MonthComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/calendar/src/lib/calendar.module.ts\n \n\n\n \n Description\n \n \n This Module contains all calendar related components \n\n \n\n\n \n \n \n Declarations\n \n \n CalendarComponent\n \n \n DaterangeComponent\n \n \n DatetimePipe\n \n \n HeatmapComponent\n \n \n MonthComponent\n \n \n \n \n Exports\n \n \n CalendarComponent\n \n \n DaterangeComponent\n \n \n DatetimePipe\n \n \n HeatmapComponent\n \n \n MonthComponent\n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n forRoot\n \n \n \n \n \n \n \n \n forRoot(formats: literal type)\n \n \n\n\n \n \n Defined in packages/calendar/src/lib/calendar.module.ts:46\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n formats\n \n literal type\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { NgModule, ModuleWithProviders } from '@angular/core';\nimport { DatetimePipe } from './datetime.pipe';\nimport { CalendarComponent } from './calendar/calendar.component';\nimport { HeatmapComponent } from './heatmap/heatmap.component';\nimport { DaterangeComponent } from './daterange/daterange.component';\nimport { MonthComponent } from './calendar/month.component';\nimport { CommonModule } from '@angular/common';\n\nexport const calendarModuleConfig = {\n imports: [\n CommonModule\n ],\n exports: [\n DatetimePipe,\n CalendarComponent,\n HeatmapComponent,\n DaterangeComponent,\n MonthComponent,\n ],\n declarations: [\n DatetimePipe,\n CalendarComponent,\n HeatmapComponent,\n DaterangeComponent,\n MonthComponent,\n ],\n providers: [\n {\n provide: 'moment.format.date',\n useValue: 'DD.MM.YYYY'\n },\n {\n provide: 'moment.format.time',\n useValue: 'HH:mm'\n },\n {\n provide: 'moment.format.month',\n useValue: 'MMMM YYYY'\n }\n ]\n};\n\n/** This Module contains all calendar related components */\n@NgModule(calendarModuleConfig)\nexport class CalendarModule {\n static forRoot(formats: { date?, time?, month?}): ModuleWithProviders {\n return {\n ngModule: CalendarModule,\n providers: [\n {\n provide: 'moment.format.date',\n useValue: formats.date\n },\n {\n provide: 'moment.format.time',\n useValue: formats.time\n },\n {\n provide: 'moment.format.month',\n useValue: formats.month\n },\n ]\n };\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Collection.html":{"url":"classes/Collection.html","title":"class - Collection","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Collection\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/collection/collection.ts\n \n\n \n Description\n \n \n A Collection is a more sophisticated Array. It is fundamental for other classes like List.\n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n items\n \n \n Protected\n update\n \n \n Public\n update$\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n add\n \n \n addAll\n \n \n has\n \n \n hasAll\n \n \n index\n \n \n isEmpty\n \n \n move\n \n \n remove\n \n \n removeAll\n \n \n replaceWith\n \n \n toggle\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(items: Array)\n \n \n \n \n Defined in packages/core/src/lib/collection/collection.ts:14\n \n \n\n \n \n Constructs the collection with the given item Array (optional).\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n items\n \n \n Array\n \n \n \n No\n \n \n \n \n \n Example :\n \n * const numbers = new Collection([1, 2, 3]);\n *\n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n items\n \n \n \n \n \n \n \n items: Array\n\n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in packages/core/src/lib/collection/collection.ts:10\n \n \n\n \n \n The items must all have the same type T.\n\n \n \n\n \n \n \n \n \n \n \n \n \n Protected\n update\n \n \n \n \n \n \n \n update: Subject>\n\n \n \n \n \n Type : Subject>\n\n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in packages/core/src/lib/collection/collection.ts:12\n \n \n\n \n \n Subject that is nexted when the items update \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n update$\n \n \n \n \n \n \n \n update$: Observable>\n\n \n \n \n \n Type : Observable>\n\n \n \n \n \n Default value : this.update.asObservable()\n \n \n \n \n Defined in packages/core/src/lib/collection/collection.ts:14\n \n \n\n \n \n Subject that is nexted when the items change \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n add\n \n \n \n \n \n \n \nadd(item: T, unique?: boolean, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:71\n \n \n\n\n \n \n Adds the given item to the Collection. If the unique flag is set, the item will only be added\nif it is not contained.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n item\n \n T\n \n \n \n No\n \n \n \n \n\n \n \n unique\n \n boolean\n \n \n \n Yes\n \n \n \n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n Example :\n \n * numbers.add(4);\n *\n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n addAll\n \n \n \n \n \n \n \naddAll(items: Array, unique: boolean, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:89\n \n \n\n\n \n \n Adds the given items to the Collection. If the unique flag is set, only items that are not\ncontained will be added.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n items\n \n Array\n \n \n \n No\n \n \n \n []\n \n\n \n \n unique\n \n boolean\n \n \n \n No\n \n \n \n false\n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n Example :\n \n * numbers.addAll([5, 6, 7]);\n *\n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n has\n \n \n \n \n \n \n \nhas(item: T)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:42\n \n \n\n\n \n \n Checks if the Collection contains the given item.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n item\n \n T\n \n \n \n No\n \n \n\n \n \n \n \n \n Example :\n \n * numbers.has(2); //true\n *\n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n hasAll\n \n \n \n \n \n \n \nhasAll(items: Array)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:53\n \n \n\n\n \n \n Checks if the Collection contains all given items.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n items\n \n Array\n \n \n \n No\n \n \n \n []\n \n\n \n \n \n \n \n Example :\n \n * numbers.has([1,2]); //true\n *\n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n index\n \n \n \n \n \n \n \nindex(item: T)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:31\n \n \n\n\n \n \n Returns the index of the given item \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n item\n \n T\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : number\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isEmpty\n \n \n \n \n \n \n \nisEmpty()\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:160\n \n \n\n\n \n \n Returns true if the collection is empty \n\n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n move\n \n \n \n \n \n \n \nmove(item: T, index: number, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:165\n \n \n\n\n \n \n Moves the given item to the given array index. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n item\n \n T\n \n \n \n No\n \n \n \n \n\n \n \n index\n \n number\n \n \n \n No\n \n \n \n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n remove\n \n \n \n \n \n \n \nremove(item: T, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:106\n \n \n\n\n \n \n Removes the given item from the Collection.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n item\n \n T\n \n \n \n No\n \n \n \n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n Example :\n \n * numbers.remove(4);\n *\n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n removeAll\n \n \n \n \n \n \n \nremoveAll(items?: Array, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:123\n \n \n\n\n \n \n Removes all items from the Collection.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n items\n \n Array\n \n \n \n Yes\n \n \n \n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n Example :\n \n * numbers.removeAll();\n *\n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n replaceWith\n \n \n \n \n \n \n \nreplaceWith(items: Array, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:147\n \n \n\n\n \n \n Replaces all current items with the given items. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n items\n \n Array\n \n \n \n No\n \n \n \n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n toggle\n \n \n \n \n \n \n \ntoggle(item: T, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:138\n \n \n\n\n \n \n Toggles the item in and out of collection \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n item\n \n T\n \n \n \n No\n \n \n \n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n\n \n Collection\nCollection is a more sophisticated Array:\nconst collection = new Collection([1, 2, 3]);\ncollection.has(1); //true\ncollection.has(4); //false\ncollection.add(4);\ncollection.remove(4);\ncollection.index(1); //0\ncollection.addAll([10,11,12]); //true\ncollection.hasAll([1,10,11]); //true\ncollection.removeAll();It is the Parent Class of List and Selection.\n\n \n\n \n import { Observable, Subject } from 'rxjs';\n\n/**\n * A Collection is a more sophisticated Array. It is fundamental for other classes like List.\n */\nexport class Collection {\n /**\n * The items must all have the same type T.\n */\n public items: Array;\n /** Subject that is nexted when the items update */\n protected update: Subject> = new Subject();\n /** Subject that is nexted when the items change */\n public update$: Observable> = this.update.asObservable();\n\n /**\n * Constructs the collection with the given item Array (optional).\n * @example\n * ```typescript\n * const numbers = new Collection([1, 2, 3]);\n * ```\n */\n constructor(items: Array = []) {\n this.items = [];\n items.forEach((item) => {\n this.items.push(item);\n });\n }\n\n /** Returns the index of the given item */\n index(item: T): number {\n return this.items.indexOf(item);\n }\n\n /**\n * Checks if the Collection contains the given item.\n * @example\n * ```typescript\n * numbers.has(2); //true\n * ```\n */\n has(item: T): boolean {\n return this.index(item) !== -1;\n }\n\n /**\n * Checks if the Collection contains all given items.\n * @example\n * ```typescript\n * numbers.has([1,2]); //true\n * ```\n */\n hasAll(items: Array = []): boolean {\n if (items === null) {\n // console.warn('has all fail', this, items);\n return false;\n }\n return items.reduce((has, item) => {\n return has && this.has(item);\n }, true);\n }\n\n /**\n * Adds the given item to the Collection. If the unique flag is set, the item will only be added\n * if it is not contained.\n * @example\n * ```typescript\n * numbers.add(4);\n * ```\n */\n add(item: T, unique?: boolean, event: boolean = true) {\n if (unique && this.has(item)) {\n return false;\n }\n this.items.push(item);\n if (event) {\n this.update.next(this);\n }\n }\n\n /**\n * Adds the given items to the Collection. If the unique flag is set, only items that are not\n * contained will be added.\n * @example\n * ```typescript\n * numbers.addAll([5, 6, 7]);\n * ```\n */\n addAll(items: Array = [], unique: boolean = false, event: boolean = true) {\n const length = this.items.length;\n items.forEach((item) => {\n this.add(item, unique, false);\n });\n if (this.items.length > length && event) {\n this.update.next(this);\n }\n }\n\n /**\n * Removes the given item from the Collection.\n * @example\n * ```typescript\n * numbers.remove(4);\n * ```\n */\n remove(item: T, event: boolean = true) {\n if (!this.has(item)) {\n return false;\n }\n this.items.splice(this.index(item), 1);\n if (event) {\n this.update.next(this);\n }\n }\n\n /**\n * Removes all items from the Collection.\n * @example\n * ```typescript\n * numbers.removeAll();\n * ```\n */\n removeAll(items?: Array, event: boolean = true) {\n const length = this.items.length;\n if (items) {\n items.forEach((item) => {\n this.remove(item, false);\n });\n } else {\n this.items.length = 0;\n }\n if (this.items.length , event: boolean = true) {\n if (this.items && this.items.length) {\n this.removeAll(undefined, false);\n }\n if (items.length) {\n this.addAll(items, false, false);\n }\n if (event) {\n this.update.next(this);\n }\n }\n\n /** Returns true if the collection is empty */\n isEmpty() {\n return this.items.length === 0;\n }\n\n /** Moves the given item to the given array index. */\n move(item: T, index: number, event: boolean = true) {\n if (!this.has(item) || this.items.indexOf(item) === index) {\n return;\n }\n this.items.splice(index, 0, this.items.splice(this.items.indexOf(item), 1)[0]);\n if (event) {\n this.update.next(this);\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Config.html":{"url":"classes/Config.html","title":"class - Config","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Config\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/config/config.ts\n \n\n \n Description\n \n \n The Root class for all Configurations. \n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n config\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n Optional\n configure\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n config\n \n \n \n \n \n \n \n config: literal type\n\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in packages/core/src/lib/config/config.ts:5\n \n \n\n \n \n The config object. \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n Optional\n configure\n \n \n \n \n \n \n \n \n configure(key: string, property: string, config?: Object)\n \n \n\n\n \n \n Defined in packages/core/src/lib/config/config.ts:13\n \n \n\n\n \n \n This method is a getter and setter for configurations. The key stands for the config (e.g. model).\nThe property is a sub property if the config (e.g. fields => model.fields).\nIf no config is given, the method just returns the configuration for the given property.\nIf a config is given, the property config is merged via Object.assign. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n \n \n No\n \n \n\n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n config\n \n Object\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n\n\n \n export abstract class Config {\n // TODO use Map !!!! (like simi did in EventEmitter.ts)\n /** The config object. */\n private config: {\n [key: string]: Object,\n } = {};\n\n /** This method is a getter and setter for configurations. The key stands for the config (e.g. model).\n * The property is a sub property if the config (e.g. fields => model.fields).\n * If no config is given, the method just returns the configuration for the given property.\n * If a config is given, the property config is merged via Object.assign. */\n public configure?(key: string, property: string, config?: Object) {\n if (!this.config[key]) {\n this.config[key] = {};\n }\n if (!config) {\n return this.config[key][property];\n }\n if (!this.config[key][property]) {\n this.config[key][property] = {};\n }\n Object.assign(this.config[key][property], config);\n return this;\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/CrudComponent.html":{"url":"components/CrudComponent.html","title":"component - CrudComponent","body":"\n \n\n\n\n\n\n Components\n CrudComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/data/src/lib/crud/crud.component.ts\n\n\n \n Description\n \n \n The CrudComponent takes at least a model name to render an entry list with create/edit/delete functionality out of the box.\n * \n *https://components.entrecode.de/entries/crud?e=1\n\n \n\n\n \n Implements\n \n \n OnInit\n WithLoader\n WithNotifications\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-crud\n \n\n\n\n\n \n templateUrl\n ./crud.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n entryPop\n \n \n list\n \n \n loader\n \n \n notifications\n \n \n Public\n route\n \n \n Public\n router\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n hasMethod\n \n \n Private\n loadEntry\n \n \n Public\n mustReload\n \n \n ngOnInit\n \n \n Public\n selectEntry\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n config\n \n \n model\n \n \n selection\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n columnClicked\n \n \n selected\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, auth: AuthService, loaderService: LoaderService, modelConfig: ModelConfigService, notificationService: NotificationsService, symbol: SymbolService, cdr: ChangeDetectorRef, router: Router, route: ActivatedRoute)\n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:49\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n auth\n \n \n AuthService\n \n \n \n No\n \n \n \n \n loaderService\n \n \n LoaderService\n \n \n \n No\n \n \n \n \n modelConfig\n \n \n ModelConfigService\n \n \n \n No\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n config\n \n \n CrudConfig for customization of the crud's UI.\n\n \n Type : CrudConfig\n\n \n \n Default value : {}\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:35\n \n \n \n \n \n \n \n \n \n model\n \n \n The model that should be crud'ed. \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:33\n \n \n \n \n \n \n \n \n \n selection\n \n \n The selection that should be used \n\n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:37\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n columnClicked\n \n \n Emits when a list element is clicked \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:45\n \n \n \n \n \n \n \n \n \n selected\n \n \n Emits when the selection has changed \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:47\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n hasMethod\n \n \n \n \n \n \n \n \n hasMethod(method: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:79\n \n \n\n\n \n \n Returns true if the given method is part of the methods array (or if there is no methods array) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n method\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n loadEntry\n \n \n \n \n \n \n \n \n loadEntry(item)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:91\n \n \n\n\n \n \n Loads the clicked entry item, depending on the configured levels. Reloads the entry if the form has fields the which list has not. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n mustReload\n \n \n \n \n \n \n \n \n mustReload(item)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:84\n \n \n\n\n \n \n Returns true if the visible fields in the list differ from the visible fields in the form\n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:70\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n selectEntry\n \n \n \n \n \n \n \n \n selectEntry(item)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:115\n \n \n\n\n \n \n Is called when an item in the list is clicked. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n entryPop\n \n \n \n \n \n \n \n entryPop: EntryPopComponent\n\n \n \n \n \n Type : EntryPopComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(EntryPopComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:41\n \n \n\n \n \n The Pop inside the template. \n\n \n \n\n \n \n \n \n \n \n \n \n \n list\n \n \n \n \n \n \n \n list: EntryListComponent\n\n \n \n \n \n Type : EntryListComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(EntryListComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:39\n \n \n\n \n \n The EntryList inside the template. \n\n \n \n\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: LoaderComponent\n\n \n \n \n \n Type : LoaderComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LoaderComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:43\n \n \n\n \n \n The lists loader \n\n \n \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:49\n \n \n\n \n \n Emitted Notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n route\n \n \n \n \n \n \n \n route: ActivatedRoute\n\n \n \n \n \n Type : ActivatedRoute\n\n \n \n \n \n Decorators : \n \n \n @Optional()\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:59\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n router\n \n \n \n \n \n \n \n router: Router\n\n \n \n \n \n Type : Router\n\n \n \n \n \n Decorators : \n \n \n @Optional()\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:58\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n Component, EventEmitter, Input, OnInit, Optional,\n Output, ViewChild, ChangeDetectorRef\n} from '@angular/core';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CrudConfig } from './crud-config.interface';\nimport { EntryListComponent } from '../entry-list/entry-list.component';\nimport { SdkService } from '../sdk/sdk.service';\nimport { Selection } from '@ec.components/core';\nimport { LoaderComponent } from '@ec.components/ui';\nimport { NotificationsService, LoaderService } from '@ec.components/ui';\nimport { AuthService } from '../auth/auth.service';\nimport { EntryPopComponent } from '../entry-pop/entry-pop.component';\nimport { WithLoader } from '@ec.components/ui';\nimport { Notification, WithNotifications, SymbolService } from '@ec.components/ui';\nimport { ModelConfigService } from '../model-config/model-config.service';\n\n/** The CrudComponent takes at least a model name to render an entry list with create/edit/delete functionality out of the box.\n * ```html\n * \n * ```\n * https://components.entrecode.de/entries/crud?e=1\n * */\n@Component({\n selector: 'ec-crud',\n templateUrl: './crud.component.html',\n})\nexport class CrudComponent implements OnInit, WithLoader, WithNotifications {\n /** The model that should be crud'ed. */\n @Input() model: string;\n /** CrudConfig for customization of the crud's UI.*/\n @Input() config: CrudConfig = {};\n /** The selection that should be used */\n @Input() selection: Selection;\n /** The EntryList inside the template. */\n @ViewChild(EntryListComponent) list: EntryListComponent;\n /** The Pop inside the template. */\n @ViewChild(EntryPopComponent) entryPop: EntryPopComponent;\n /** The lists loader */\n @ViewChild(LoaderComponent) loader: LoaderComponent;\n /** Emits when a list element is clicked */\n @Output() columnClicked: EventEmitter = new EventEmitter();\n /** Emits when the selection has changed */\n @Output() selected: EventEmitter = new EventEmitter();\n /** Emitted Notifications */\n notifications: Notification[] = [];\n\n constructor(private sdk: SdkService,\n private auth: AuthService,\n private loaderService: LoaderService,\n private modelConfig: ModelConfigService,\n private notificationService: NotificationsService,\n private symbol: SymbolService,\n private cdr: ChangeDetectorRef,\n @Optional() public router: Router,\n @Optional() public route: ActivatedRoute) {\n /* if (route) {\n merge(route.data, route.params, route.queryParams)\n .subscribe(({ model }) => {\n if (model) {\n this.model = model;\n }\n });\n } */\n }\n\n ngOnInit() {\n this.auth.getAllowedModelMethods(this.model, this.config.methods)\n .then((methods) => {\n this.config.methods = methods;\n this.cdr.markForCheck();\n });\n }\n\n /** Returns true if the given method is part of the methods array (or if there is no methods array) */\n public hasMethod(method: string) {\n return this.config.methods && this.config.methods.indexOf(method) !== -1;\n }\n\n /** Returns true if the visible fields in the list differ from the visible fields in the form*/\n public mustReload(item) {\n return !Object.keys(item.config.fields).reduce((equal, property) => {\n return equal && (item.config.fields[property].list !== false || item.config.fields[property].form === false);\n }, true);\n }\n\n /** Loads the clicked entry item, depending on the configured levels. Reloads the entry if the form has fields the which list has not. */\n private loadEntry(item) {\n return this.modelConfig.getMinLevel(this.model, this.config.fields)\n .then((minLevel) => {\n const levels = Math.max(minLevel, this.config.levels || 1);\n if (!this.config.alwaysLoadEntry && !this.mustReload(item) && levels === 1) {\n return item.getBody();\n }\n return this.sdk.api.entry(this.model, item.id(), levels);\n }).then((loadedEntry) => {\n this.entryPop.edit(loadedEntry);\n this.notificationService.emit({ hide: this.notifications });\n }).catch((err) => {\n console.log('error while loading entry to edit', err);\n this.notificationService.emit({\n title: this.symbol.resolve('error.load'),\n error: err,\n sticky: true,\n hide: this.notifications,\n replace: this.notifications\n });\n });\n }\n\n /** Is called when an item in the list is clicked. */\n public selectEntry(item) {\n if (!item) {\n return;\n }\n if (this.columnClicked.observers.length) {\n this.columnClicked.emit(item);\n return;\n }\n this.loaderService.wait(this.loadEntry(item), this.loader);\n }\n}\n\n \n\n \n \n \n \n \n {{config?.createLabel}}\n \n \n \n \n \n \n \n \n \n \n\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{config?.createLabel}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'CrudComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/CrudConfig.html":{"url":"interfaces/CrudConfig.html","title":"interface - CrudConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n CrudConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/crud/crud-config.interface.ts\n \n\n \n Description\n \n \n The CrudConfig allows a quick customization of an ec-crud component. \n\n \n\n \n Extends\n \n \n ListConfig\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n alwaysLoadEntry\n \n \n Optional\n createLabel\n \n \n Optional\n customUpload\n \n \n Optional\n deleteOnRemove\n \n \n Optional\n develop\n \n \n Optional\n disableCreatePop\n \n \n Optional\n disableListPop\n \n \n Optional\n disableSearchbar\n \n \n Optional\n disableSelectSwitch\n \n \n Optional\n disableUrlUpload\n \n \n Optional\n fileOptions\n \n \n Optional\n hideAssetGroupSelect\n \n \n Optional\n keepPopOpen\n \n \n Optional\n levels\n \n \n Optional\n loader\n \n \n Optional\n methods\n \n \n Optional\n nestedPopActive\n \n \n Optional\n notifications\n \n \n Optional\n permissions\n \n \n Optional\n placeholder\n \n \n Optional\n pluralLabel\n \n \n Optional\n popColumns\n \n \n Optional\n safeDelete\n \n \n Optional\n singularLabel\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n alwaysLoadEntry\n \n \n \n \n alwaysLoadEntry: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, an entry is always loaded when opened, even with lvl1 \n\n \n \n \n \n \n \n \n \n \n createLabel\n \n \n \n \n createLabel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The label for the entry create button \n\n \n \n \n \n \n \n \n \n \n customUpload\n \n \n \n \n customUpload: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, a pop will open before upload to set up custom options \n\n \n \n \n \n \n \n \n \n \n deleteOnRemove\n \n \n \n \n deleteOnRemove: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, selects will delete entries that are removed from the selection \n\n \n \n \n \n \n \n \n \n \n develop\n \n \n \n \n develop: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, an extra develop button will be shown\n\n \n \n \n \n \n \n \n \n \n disableCreatePop\n \n \n \n \n disableCreatePop: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no create pop will be available at selects \n\n \n \n \n \n \n \n \n \n \n disableListPop\n \n \n \n \n disableListPop: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no list pop will be available at selects \n\n \n \n \n \n \n \n \n \n \n disableSearchbar\n \n \n \n \n disableSearchbar: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no dropdown will be accessible \n\n \n \n \n \n \n \n \n \n \n disableSelectSwitch\n \n \n \n \n disableSelectSwitch: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no select mode switch will be shown \n\n \n \n \n \n \n \n \n \n \n disableUrlUpload\n \n \n \n \n disableUrlUpload: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, assets cannot be upload via url \n\n \n \n \n \n \n \n \n \n \n fileOptions\n \n \n \n \n fileOptions: FileOptions\n\n \n \n\n\n \n \n Type : FileOptions\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Default options for file uploads \n\n \n \n \n \n \n \n \n \n \n hideAssetGroupSelect\n \n \n \n \n hideAssetGroupSelect: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Hides the assetGroup select in asset-list-pop \n\n \n \n \n \n \n \n \n \n \n keepPopOpen\n \n \n \n \n keepPopOpen: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the entry pop will remain open after the entry has been successfully saved. \n\n \n \n \n \n \n \n \n \n \n levels\n \n \n \n \n levels: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n With how many levels should a list entry be loaded? Defaults to 1 (taking entry directly from the list, without loading)\n\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n \n loader: LoaderComponent\n\n \n \n\n\n \n \n Type : LoaderComponent\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n An external loader component that should be used, falls back to internal. \n\n \n \n \n \n \n \n \n \n \n methods\n \n \n \n \n methods: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n An Array of Methods that should be supported. Possible values are create, read, update and delete\n\n \n \n \n \n \n \n \n \n \n nestedPopActive\n \n \n \n \n nestedPopActive: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, a nested pop will be active immediately \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n notifications: NotificationsComponent\n\n \n \n\n\n \n \n Type : NotificationsComponent\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n An external notifications component that should be used, falls back to internal \n\n \n \n \n \n \n \n \n \n \n permissions\n \n \n \n \n permissions: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n maps the permissions to the methods post put create delete \n\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n \n \n placeholder: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Sets a placeholder. Used e.g. for empty entry-select \n\n \n \n \n \n \n \n \n \n \n pluralLabel\n \n \n \n \n pluralLabel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The label for multiple entities \n\n \n \n \n \n \n \n \n \n \n popColumns\n \n \n \n \n popColumns: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Defines the column width of the pops used. Defaults to popService.defaultColumns \n\n \n \n \n \n \n \n \n \n \n safeDelete\n \n \n \n \n safeDelete: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, delete operations need confirmation \n\n \n \n \n \n \n \n \n \n \n singularLabel\n \n \n \n \n singularLabel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The label for one entity \n\n \n \n \n \n \n \n\n\n \n import { ListConfig } from '@ec.components/core';\nimport { NotificationsComponent, LoaderComponent } from '@ec.components/ui';\nimport { FileOptions } from '../files/file.service';\n\n/** The CrudConfig allows a quick customization of an ec-crud component. */\nexport interface CrudConfig extends ListConfig {\n /** The label for one entity */\n singularLabel?: string;\n /** The label for multiple entities */\n pluralLabel?: string;\n /** The label for the entry create button */\n createLabel?: string;\n /** An Array of Methods that should be supported. Possible values are create, read, update and delete*/\n methods?: Array;\n /** An external loader component that should be used, falls back to internal. */\n loader?: LoaderComponent;\n /** An external notifications component that should be used, falls back to internal */\n notifications?: NotificationsComponent;\n /** If true, an extra develop button will be shown*/\n develop?: boolean;\n /** If true, the entry pop will remain open after the entry has been successfully saved. */\n keepPopOpen?: boolean;\n /** With how many levels should a list entry be loaded? Defaults to 1 (taking entry directly from the list, without loading)*/\n levels?: number;\n /** If true, an entry is always loaded when opened, even with lvl1 */\n alwaysLoadEntry?: boolean;\n /** maps the permissions to the methods post put create delete */\n permissions?: { put?: string | boolean, post?: string | boolean, get?: string | boolean, delete?: string | boolean };\n /** If true, no select mode switch will be shown */\n disableSelectSwitch?: boolean;\n /** If true, no list pop will be available at selects */\n disableListPop?: boolean;\n /** If true, assets cannot be upload via url */\n disableUrlUpload?: boolean;\n /** If true, no create pop will be available at selects */\n disableCreatePop?: boolean;\n /** If true, no dropdown will be accessible */\n disableSearchbar?: boolean;\n /** If true, selects will delete entries that are removed from the selection */\n deleteOnRemove?: boolean;\n /** If true, delete operations need confirmation */\n safeDelete?: boolean;\n /** Hides the assetGroup select in asset-list-pop */\n hideAssetGroupSelect?: boolean;\n /** Default options for file uploads */\n fileOptions?: FileOptions;\n /** If true, a pop will open before upload to set up custom options */\n customUpload?: boolean;\n /** Defines the column width of the pops used. Defaults to popService.defaultColumns */\n popColumns?: number;\n /** If true, a nested pop will be active immediately */\n nestedPopActive?: boolean;\n /** Sets a placeholder. Used e.g. for empty entry-select */\n placeholder?: string;\n\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/CrudService.html":{"url":"injectables/CrudService.html","title":"injectable - CrudService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n CrudService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/crud/crud.service.ts\n \n\n \n Description\n \n \n The CRUD service is meant to be used when modifying entries.\nAs the letters state it should be used to create update and delete entries.\nEach action fires up a change that can be subscribed upon in any component to react to relevant\nchanges.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n resourceService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n change\n \n \n clean\n \n \n create\n \n \n del\n \n \n isImmutableProperty\n \n \n save\n \n \n update\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, resourceService: ResourceService)\n \n \n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:13\n \n \n\n \n \n Injects sdk \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n resourceService\n \n \n ResourceService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n change\n \n \n \n \n \n \n \nchange(filter?: any)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:20\n \n \n\n\n \n \n Yields an observable that emits for all updates that match the given filter \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n filter\n \n any\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n clean\n \n \n \n \n \n \n \nclean(value: Object)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:71\n \n \n\n\n \n \n Removes all null or undefined values from the given object \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Object\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n create\n \n \n \n \n \n \n \ncreate(model: string, value: Object)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:86\n \n \n\n\n \n \n Creates a new entry with the given value for the given model. Fires the \"create\" change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n del\n \n \n \n \n \n \n \ndel(model: string, entry: EntryResource)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:98\n \n \n\n\n \n \n deletes the given entry and emits the \"delete\" change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n entry\n \n EntryResource\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isImmutableProperty\n \n \n \n \n \n \n \nisImmutableProperty(key: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:65\n \n \n\n\n \n \n Returns true if the given field key is an immutable system property \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n save\n \n \n \n \n \n \n \nsave(model: string, entry: EntryResource, value: Object)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:38\n \n \n\n\n \n \n Saves the given entry with the given value. If the entry is not yet existing, it will be created. Otherwise it will be updated. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n entry\n \n EntryResource\n \n \n \n No\n \n \n\n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n update\n \n \n \n \n \n \n \nupdate(model, entry: EntryResource, value: Object, safePut)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:51\n \n \n\n\n \n \n Updates the given entry with the new value. Fires the \"update\" change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n model\n \n \n \n \n No\n \n \n \n \n\n \n \n entry\n \n EntryResource\n \n \n \n No\n \n \n \n \n\n \n \n value\n \n Object\n \n \n \n No\n \n \n \n \n\n \n \n safePut\n \n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n resourceService\n \n \n \n \n \n \n \n resourceService: ResourceService\n\n \n \n \n \n Type : ResourceService\n\n \n \n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:16\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\nimport { SdkService } from '../sdk/sdk.service';\nimport { Observable } from 'rxjs';\nimport { ResourceService } from '../resource-config/resource.service';\n\n/** The CRUD service is meant to be used when modifying entries.\n * As the letters state it should be used to create update and delete entries.\n * Each action fires up a change that can be subscribed upon in any component to react to relevant\n * changes.\n * */\n@Injectable()\nexport class CrudService {\n\n /** Injects sdk */\n constructor(private sdk: SdkService, public resourceService: ResourceService) {\n }\n\n /** Yields an observable that emits for all updates that match the given filter */\n change(filter?: any): Observable {\n if (filter.model) {\n filter.relation = `model.${filter.model}`;\n delete filter.model;\n }\n console.warn(`CrudService.change is deprecated! Use ResourceService.change instead!\n Make sure to change the \"model\" property to \"relation\" with prefix \"model.\":\n\n this.crud.change({model:'muffin'}) // OLD\n // CHANGE TO\n this.resourceService.change({relation:'model.muffin'}) // NEW\n\n The CrudService#change method will be removed in a future release!\n `);\n return this.resourceService.change(filter);\n }\n\n /** Saves the given entry with the given value. If the entry is not yet existing, it will be created. Otherwise it will be updated. */\n save(model: string, entry: EntryResource, value: Object) {\n if (entry && entry.save) {\n return this.update(model, entry, value);\n }\n return this.create(model, value)\n .then((_entry) => {\n return _entry;\n }).catch((err) => {\n return Promise.reject(err);\n });\n }\n\n /** Updates the given entry with the new value. Fires the \"update\" change. */\n update(model, entry: EntryResource, value: Object, safePut = true): Promise {\n const oldValues = {}; // save old values\n Object.keys(value).forEach((key) => oldValues[key] = entry[key]);\n Object.assign(entry, this.clean(value)); // assign new form values\n return entry.save(safePut).then((_entry) => {\n this.resourceService.changes.next({ relation: `model.${model}`, resource: _entry, type: 'put' });\n return _entry;\n }).catch((err) => {\n Object.assign(entry, this.clean(oldValues)); // fall back to old values\n return Promise.reject(err);\n });\n }\n\n /** Returns true if the given field key is an immutable system property */\n isImmutableProperty(key: string) {\n return key[0] === '_' ||\n ['id', 'created', 'modified'].indexOf(key) !== -1;\n }\n\n /** Removes all null or undefined values from the given object */\n clean(value: Object): Object {\n for (const key in value) {\n if (value.hasOwnProperty(key)) {\n if (value[key] === '') { // clear empty strings\n value[key] = null;\n }\n if (this.isImmutableProperty(key)) { // filter system properties\n delete value[key];\n }\n }\n }\n return value;\n }\n\n /** Creates a new entry with the given value for the given model. Fires the \"create\" change. */\n create(model: string, value: Object): Promise {\n return this.sdk.api.createEntry(model, this.clean(value))\n .then((entry: EntryResource) => {\n // TODO: make sure leveled entries are returned leveled\n this.resourceService.changes.next({ relation: `model.${model}`, resource: entry, type: 'post' });\n return entry;\n }).catch((err) => {\n return Promise.reject(err);\n });\n }\n\n /** deletes the given entry and emits the \"delete\" change. */\n del(model: string, entry: EntryResource) {\n return entry.del().then((res) => {\n this.resourceService.changes.next({ relation: `model.${model}`, resource: entry, type: 'delete' });\n return res;\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/DataModule.html":{"url":"modules/DataModule.html","title":"module - DataModule","body":"\n \n\n\n\n\n Modules\n DataModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_DataModule\n\n\n\ncluster_DataModule_declarations\n\n\n\ncluster_DataModule_imports\n\n\n\ncluster_DataModule_exports\n\n\n\ncluster_DataModule_providers\n\n\n\n\nAdminEntryInputComponent\n\nAdminEntryInputComponent\n\n\n\nDataModule\n\nDataModule\n\nDataModule -->\n\nAdminEntryInputComponent->DataModule\n\n\n\n\n\nCrudComponent\n\nCrudComponent\n\nDataModule -->\n\nCrudComponent->DataModule\n\n\n\n\n\nDefaultEntryInputComponent\n\nDefaultEntryInputComponent\n\nDataModule -->\n\nDefaultEntryInputComponent->DataModule\n\n\n\n\n\nDefaultEntryOutputComponent\n\nDefaultEntryOutputComponent\n\nDataModule -->\n\nDefaultEntryOutputComponent->DataModule\n\n\n\n\n\nEntriesDirective\n\nEntriesDirective\n\nDataModule -->\n\nEntriesDirective->DataModule\n\n\n\n\n\nEntryDirective\n\nEntryDirective\n\nDataModule -->\n\nEntryDirective->DataModule\n\n\n\n\n\nEntryFormComponent\n\nEntryFormComponent\n\nDataModule -->\n\nEntryFormComponent->DataModule\n\n\n\n\n\nEntryListComponent\n\nEntryListComponent\n\nDataModule -->\n\nEntryListComponent->DataModule\n\n\n\n\n\nEntryListPopComponent\n\nEntryListPopComponent\n\nDataModule -->\n\nEntryListPopComponent->DataModule\n\n\n\n\n\nEntryListSelectComponent\n\nEntryListSelectComponent\n\nDataModule -->\n\nEntryListSelectComponent->DataModule\n\n\n\n\n\nEntryPopComponent\n\nEntryPopComponent\n\nDataModule -->\n\nEntryPopComponent->DataModule\n\n\n\n\n\nEntrySelectComponent\n\nEntrySelectComponent\n\nDataModule -->\n\nEntrySelectComponent->DataModule\n\n\n\n\n\nAuthModule \n\nAuthModule \n\nAuthModule -->\n\nDataModule->AuthModule \n\n\n\n\n\nCrudComponent \n\nCrudComponent \n\nCrudComponent -->\n\nDataModule->CrudComponent \n\n\n\n\n\nEntriesDirective \n\nEntriesDirective \n\nEntriesDirective -->\n\nDataModule->EntriesDirective \n\n\n\n\n\nEntryDirective \n\nEntryDirective \n\nEntryDirective -->\n\nDataModule->EntryDirective \n\n\n\n\n\nEntryFormComponent \n\nEntryFormComponent \n\nEntryFormComponent -->\n\nDataModule->EntryFormComponent \n\n\n\n\n\nEntryListComponent \n\nEntryListComponent \n\nEntryListComponent -->\n\nDataModule->EntryListComponent \n\n\n\n\n\nEntryListPopComponent \n\nEntryListPopComponent \n\nEntryListPopComponent -->\n\nDataModule->EntryListPopComponent \n\n\n\n\n\nEntryListSelectComponent \n\nEntryListSelectComponent \n\nEntryListSelectComponent -->\n\nDataModule->EntryListSelectComponent \n\n\n\n\n\nEntryPopComponent \n\nEntryPopComponent \n\nEntryPopComponent -->\n\nDataModule->EntryPopComponent \n\n\n\n\n\nEntrySelectComponent \n\nEntrySelectComponent \n\nEntrySelectComponent -->\n\nDataModule->EntrySelectComponent \n\n\n\n\n\nFilesModule \n\nFilesModule \n\nFilesModule -->\n\nDataModule->FilesModule \n\n\n\n\n\nResourceModule \n\nResourceModule \n\nResourceModule -->\n\nDataModule->ResourceModule \n\n\n\n\n\nSdkModule \n\nSdkModule \n\nSdkModule -->\n\nDataModule->SdkModule \n\n\n\n\n\nUiModule \n\nUiModule \n\nUiModule -->\n\nDataModule->UiModule \n\n\n\n\n\nAuthModule\n\nAuthModule\n\nDataModule -->\n\nAuthModule->DataModule\n\n\n\n\n\nFilesModule\n\nFilesModule\n\nDataModule -->\n\nFilesModule->DataModule\n\n\n\n\n\nResourceModule\n\nResourceModule\n\nDataModule -->\n\nResourceModule->DataModule\n\n\n\n\n\nSdkModule\n\nSdkModule\n\nDataModule -->\n\nSdkModule->DataModule\n\n\n\n\n\nUiModule\n\nUiModule\n\nDataModule -->\n\nUiModule->DataModule\n\n\n\n\n\nCrudService\n\nCrudService\n\nDataModule -->\n\nCrudService->DataModule\n\n\n\n\n\nHistoryService\n\nHistoryService\n\nDataModule -->\n\nHistoryService->DataModule\n\n\n\n\n\nModelConfigService\n\nModelConfigService\n\nDataModule -->\n\nModelConfigService->DataModule\n\n\n\n\n\nTypeConfigService\n\nTypeConfigService\n\nDataModule -->\n\nTypeConfigService->DataModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/data/src/lib/data.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AdminEntryInputComponent\n \n \n CrudComponent\n \n \n DefaultEntryInputComponent\n \n \n DefaultEntryOutputComponent\n \n \n EntriesDirective\n \n \n EntryDirective\n \n \n EntryFormComponent\n \n \n EntryListComponent\n \n \n EntryListPopComponent\n \n \n EntryListSelectComponent\n \n \n EntryPopComponent\n \n \n EntrySelectComponent\n \n \n \n \n EntryComponents\n \n \n AdminEntryInputComponent\n \n \n DefaultEntryInputComponent\n \n \n DefaultEntryOutputComponent\n \n \n EntryListPopComponent\n \n \n EntryListSelectComponent\n \n \n EntrySelectComponent\n \n \n \n \n Providers\n \n \n CrudService\n \n \n HistoryService\n \n \n ModelConfigService\n \n \n TypeConfigService\n \n \n \n \n Imports\n \n \n AuthModule\n \n \n FilesModule\n \n \n ResourceModule\n \n \n SdkModule\n \n \n UiModule\n \n \n \n \n Exports\n \n \n AuthModule\n \n \n CrudComponent\n \n \n EntriesDirective\n \n \n EntryDirective\n \n \n EntryFormComponent\n \n \n EntryListComponent\n \n \n EntryListPopComponent\n \n \n EntryListSelectComponent\n \n \n EntryPopComponent\n \n \n EntrySelectComponent\n \n \n FilesModule\n \n \n ResourceModule\n \n \n SdkModule\n \n \n UiModule\n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n forEnvironment\n \n \n \n \n \n \n \n \n forEnvironment(environment)\n \n \n\n\n \n \n Defined in packages/data/src/lib/data.module.ts:94\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n environment\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { ModuleWithProviders, NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { RouterModule } from '@angular/router';\nimport { UiModule } from '@ec.components/ui';\nimport { DndModule } from 'ngx-drag-drop';\nimport { AuthModule } from './auth/auth.module';\nimport { CrudComponent } from './crud/crud.component';\nimport { CrudService } from './crud/crud.service';\nimport { EntriesDirective } from './entries/entries.directive';\nimport { AdminEntryInputComponent } from './entry-form/admin-entry-input.component';\nimport { DefaultEntryInputComponent } from './entry-form/default-entry-input.component';\nimport { DefaultEntryOutputComponent } from './entry-form/default-entry-output.component';\nimport { EntryFormComponent } from './entry-form/entry-form.component';\nimport { EntryListPopComponent } from './entry-list-pop/entry-list-pop.component';\nimport { EntryListComponent } from './entry-list/entry-list.component';\nimport { EntryPopComponent } from './entry-pop/entry-pop.component';\nimport { EntrySelectComponent } from './entry-select/entry-select.component';\nimport { EntryDirective } from './entry/entry.directive';\nimport { FilesModule } from './files/files.module';\nimport { ModelConfigService } from './model-config/model-config.service';\nimport { TypeConfigService } from './model-config/type-config.service';\nimport { ResourceModule } from './resource/resource.module';\nimport { HistoryService } from './sdk/history.service';\nimport { SdkModule } from './sdk/sdk.module';\nimport { EntryListSelectComponent } from './entry-list-select/entry-list-select.component';\n\nexport const dataModuleConfig = {\n entryComponents: [\n DefaultEntryInputComponent,\n DefaultEntryOutputComponent,\n AdminEntryInputComponent,\n EntrySelectComponent,\n EntryListSelectComponent,\n EntryListPopComponent,\n ],\n declarations: [\n EntryListComponent,\n EntryDirective,\n EntriesDirective,\n EntryFormComponent,\n EntryPopComponent,\n DefaultEntryInputComponent,\n DefaultEntryOutputComponent,\n AdminEntryInputComponent,\n EntryListSelectComponent,\n CrudComponent,\n EntrySelectComponent,\n EntryListPopComponent,\n ],\n imports: [\n FormsModule,\n CommonModule,\n UiModule,\n SdkModule,\n FilesModule,\n AuthModule,\n ResourceModule,\n DndModule\n ],\n exports: [\n EntryListComponent,\n EntryDirective,\n EntriesDirective,\n EntryFormComponent,\n EntryPopComponent,\n CrudComponent,\n EntrySelectComponent,\n EntryListSelectComponent,\n EntryListPopComponent,\n RouterModule,\n UiModule,\n SdkModule,\n FilesModule,\n AuthModule,\n ResourceModule\n ],\n providers: [\n CrudService,\n TypeConfigService,\n ModelConfigService,\n HistoryService,\n {\n provide: 'environment',\n useValue: {\n environment: 'live'\n }\n }\n ]\n};\n\n@NgModule(dataModuleConfig)\nexport class DataModule {\n static forEnvironment(environment): ModuleWithProviders {\n return {\n ngModule: DataModule,\n providers: [\n {\n provide: 'environment',\n useValue: Object.assign(\n {\n environment: 'live'\n },\n environment\n )\n }\n ]\n };\n }\n constructor() { }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DatetimeComponent.html":{"url":"components/DatetimeComponent.html","title":"component - DatetimeComponent","body":"\n \n\n\n\n\n\n Components\n DatetimeComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/form/datetime/datetime.component.ts\n\n\n \n Description\n \n \n Input for a datetime.\nhttps://components.entrecode.de/ui/datetime?e=1\n\n \n\n\n \n Implements\n \n \n ControlValueAccessor\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => DatetimeComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-datetime\n \n\n\n\n\n \n templateUrl\n datetime.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n calendar\n \n \n propagateChange\n \n \n Public\n weekdays\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n date\n \n \n disableTime\n \n \n formControl\n \n \n placeholder\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n date\n \n \n The date that should be displayed at start. \n\n \n Type : moment.Moment\n\n \n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:24\n \n \n \n \n \n \n \n \n \n disableTime\n \n \n If true, the time will not be displayed nor will be editable. \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:32\n \n \n \n \n \n \n \n \n \n formControl\n \n \n The form control that holds the date \n\n \n Type : FormControl\n\n \n \n Default value : new FormControl()\n \n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:26\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n The input's placeholder \n\n \n Default value : ''\n \n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:34\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:46\n \n \n\n\n \n \n registerOnChange implementation of ControlValueAccessor \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:51\n \n \n\n\n \n \n registerOnTouched implementation of ControlValueAccessor \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: Date)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:37\n \n \n\n\n \n \n Selects the given Date when the model changes. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n Date\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n calendar\n \n \n \n \n \n \n \n calendar: CalendarComponent\n\n \n \n \n \n Type : CalendarComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(CalendarComponent)\n \n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:28\n \n \n\n \n \n The used calendar component \n\n \n \n\n \n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => {\n }\n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:42\n \n \n\n \n \n Change propagation for ControlValueAccessor \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n weekdays\n \n \n \n \n \n \n \n weekdays: string[]\n\n \n \n \n \n Type : string[]\n\n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:30\n \n \n\n \n \n Array of the days of a week. \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, forwardRef, Input, ViewChild } from '@angular/core';\nimport { ControlValueAccessor, FormControl, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport moment from 'moment-es6';\nimport { CalendarComponent } from '@ec.components/calendar';\n\n/** Input for a datetime.\n *\n * https://components.entrecode.de/ui/datetime?e=1\n *\n*/\n@Component({\n selector: 'ec-datetime',\n templateUrl: 'datetime.component.html',\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => DatetimeComponent),\n multi: true\n }\n ]\n})\nexport class DatetimeComponent implements ControlValueAccessor {\n /** The date that should be displayed at start. */\n @Input() date: moment.Moment;\n /** The form control that holds the date */\n @Input() formControl: FormControl = new FormControl();\n /** The used calendar component */\n @ViewChild(CalendarComponent) calendar: CalendarComponent;\n /** Array of the days of a week. */\n public weekdays: string[];\n /** If true, the time will not be displayed nor will be editable. */\n @Input() disableTime: boolean;\n /** The input's placeholder */\n @Input() placeholder = '';\n\n /** Selects the given Date when the model changes. */\n writeValue(value: Date) {\n this.calendar.writeValue(value);\n }\n\n /** Change propagation for ControlValueAccessor */\n propagateChange = (_: any) => {\n }\n\n /** registerOnChange implementation of ControlValueAccessor */\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n\n /** registerOnTouched implementation of ControlValueAccessor */\n registerOnTouched() {\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DatetimeComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/DatetimePipe.html":{"url":"pipes/DatetimePipe.html","title":"pipe - DatetimePipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n DatetimePipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/calendar/src/lib/datetime.pipe.ts\n \n\n \n Description\n \n \n The GroupPipe filters an array of Item instances by a given property value.\nIt is meant to be used to get only the items with the exact same value. \n\n \n\n\n \n Metadata\n \n \n \n Name\n datetime\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(value: Date | string, pattern: string | string[], raw?: string)\n \n \n\n\n \n \n Defined in packages/calendar/src/lib/datetime.pipe.ts:12\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n value\n \n Date | string\n \n \n \n No\n \n \n \n \n\n \n \n pattern\n \n string | string[]\n \n \n \n No\n \n \n \n this.dateFormat\n \n\n \n \n raw\n \n string\n \n \n \n Yes\n \n \n \n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n\n\n\n \n\n\n \n import { Pipe, PipeTransform, Inject } from '@angular/core';\nimport moment from 'moment-es6';\n/* import { SymbolService } from '../../symbol/symbol.service'; */\n\n/** The GroupPipe filters an array of Item instances by a given property value.\n * It is meant to be used to get only the items with the exact same value. */\n@Pipe({\n name: 'datetime'\n})\nexport class DatetimePipe implements PipeTransform {\n constructor(@Inject('moment.format.date') private dateFormat/* private symbol: SymbolService */) { }\n transform(\n value: Date | string,\n pattern: string | string[] = this.dateFormat/* this.symbol.resolve('moment.format.date') */,\n raw?: string\n ): string {\n if (!value) {\n return '';\n }\n if (raw) {\n console.log('raw', raw);\n }\n const typed = moment(value, pattern, true);\n if (!typed.isValid()) {\n return '';\n }\n if (Array.isArray(pattern)) {\n pattern = pattern[0];\n }\n return moment(value).format(pattern);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Day.html":{"url":"interfaces/Day.html","title":"interface - Day","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Day\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/calendar/src/lib/calendar/month.component.ts\n \n\n \n Description\n \n \n Interface for a day inside the a month.\nhttps://components.entrecode.de/ui/datetime?e=1\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n date\n \n \n draggable\n \n \n first\n \n \n format\n \n \n Optional\n heat\n \n \n index\n \n \n last\n \n \n today\n \n \n Optional\n type\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n date\n \n \n \n \n date: moment.Moment\n\n \n \n\n\n \n \n Type : moment.Moment\n\n \n \n\n\n\n\n\n \n \n The moment that is represented by the day. \n\n \n \n \n \n \n \n \n \n \n draggable\n \n \n \n \n draggable: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n determines if the day can be dragged to change the timespan \n\n \n \n \n \n \n \n \n \n \n first\n \n \n \n \n first: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n if the day is the first in the timespan \n\n \n \n \n \n \n \n \n \n \n format\n \n \n \n \n format: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n The formatted day number. \n\n \n \n \n \n \n \n \n \n \n heat\n \n \n \n \n heat: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n custom class \n\n \n \n \n \n \n \n \n \n \n index\n \n \n \n \n index: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n The cell index \n\n \n \n \n \n \n \n \n \n \n last\n \n \n \n \n last: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n if the day is the last in the timespan \n\n \n \n \n \n \n \n \n \n \n today\n \n \n \n \n today: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n Flag that is true if the day is today. \n\n \n \n \n \n \n \n \n \n \n type\n \n \n \n \n type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Can be given a type, to set a class. \n\n \n \n \n \n \n \n\n\n \n import { Component, EventEmitter, Input, OnChanges, OnInit, Output, Inject } from '@angular/core';\n/* import { SymbolService } from '../../symbol/symbol.service'; */\nimport moment from 'moment-es6';\nimport { debounceTime } from 'rxjs/operators';\nimport { Subject } from 'rxjs';\n\n/** Interface for a day inside the a month.\n * https://components.entrecode.de/ui/datetime?e=1\n * */\nexport interface Day {\n /** The cell index */\n index: number;\n /** The moment that is represented by the day. */\n date: moment.Moment;\n /** Can be given a type, to set a class. */\n type?: string;\n /** The formatted day number. */\n format: string;\n /** Flag that is true if the day is today. */\n today: boolean;\n /** if the day is the first in the timespan */\n first: boolean;\n /** if the day is the last in the timespan */\n last: boolean;\n /** determines if the day can be dragged to change the timespan */\n draggable: boolean;\n /** custom class */\n heat?: string;\n}\n\n/** Displays the days of a month in a calendarish table. */\n@Component({\n selector: 'ec-month',\n templateUrl: 'month.component.html'\n})\nexport class MonthComponent implements OnInit, OnChanges {\n dragged: any;\n /** The current selected date */\n @Input() selected: moment.Moment;\n /** Color mapping for day cells. E.g. to view a month heatmap */\n @Input() colors: Object;\n /** Class mapping for day cells. E.g. to apply different background classes */\n @Input() heatmap: Object;\n /** Timespan that is reflected. Marks days inside the span */\n @Input() timespan: moment.Moment[];\n /** The current date (for showing month) */\n @Input() date: moment.Moment;\n /** The color of days that are inside the timespan */\n @Input() spancolor = '#ccc';\n /** If true, the timespan start cannot be dragged */\n @Input() disableDragStart = false;\n /** If true, the timespan end cannot be dragged */\n @Input() disableDragEnd = false;\n /** The current month as string */\n public formatted: string;\n /** The cells containing the days */\n public cells: Array;\n /** Format for month in header */\n public monthFormat = 'MMMM YYYY';\n /** Emits when the selected day changes. */\n @Output() dayClicked: EventEmitter = new EventEmitter();\n /** Changed Timespan selection */\n @Output() spanChanged: EventEmitter = new EventEmitter();\n\n protected drag: Subject = new Subject();\n protected changeSpan: Subject = new Subject();\n\n constructor(\n @Inject('moment.format.month') protected defaultMonthFormat\n /* public symbol: SymbolService */\n ) {\n /* this.monthFormat = this.symbol.resolve('moment.format.month') || this.monthFormat; */\n this.monthFormat = this.defaultMonthFormat || this.monthFormat;\n this.drag.asObservable()\n .pipe(debounceTime(100))\n .subscribe((day) => this.dropDay(day));\n this.changeSpan.asObservable().pipe(debounceTime(800))\n .subscribe(timespan => this.spanChanged.emit(this.timespan));\n }\n\n dropDay(day: Day) {\n if (!this.dragged || (day.first && this.dragged.first || day.last && this.dragged.last)) {\n return;\n }\n const newTimespan = [].concat(this.timespan);\n newTimespan[this.dragged.first ? 0 : 1] = day.date.clone();\n if (newTimespan[0].isAfter(newTimespan[1])) {\n this.dragged.first = !this.dragged.first;\n this.dragged.last = !this.dragged.last;\n newTimespan.reverse();\n }\n this.timespan = newTimespan;\n this.changeSpan.next(this.timespan);\n /* if (this.cells[0] === day || this.cells[this.cells.length - 1] === day) {\n // change month if dragging to edge\n this.setDate(day.date.clone().subtract(1, 'days'));\n } else {\n this.setDate();\n } */\n this.setDate();\n }\n\n dragStart(day, e) {\n if ((this.disableDragStart && day.first) || (this.disableDragEnd && day.last)) {\n return;\n }\n this.dragged = day;\n e.preventDefault();\n }\n\n mouseUp(day, e) {\n if (!this.dragged) {\n return;\n }\n delete this.dragged;\n e.preventDefault();\n }\n\n mouseOver(day, e) {\n if (!this.dragged || this.dragged === day) {\n return;\n }\n e.preventDefault();\n this.drag.next(day);\n }\n\n getDayColor(_moment: moment.Moment) {\n if (this.colors && this.colors[_moment.toISOString()]) {\n return this.colors[_moment.toISOString()];\n }\n }\n\n getDayHeat(_moment: moment.Moment) {\n if (this.heatmap && this.heatmap[_moment.toISOString()]) {\n return this.heatmap[_moment.toISOString()];\n }\n }\n\n /** Initializes the calendar. */\n ngOnInit() {\n this.setDate();\n }\n\n /** When changing the date or selected input, the calendar will update its view to display the month containing it. */\n ngOnChanges(change) {\n if (change.selected) {\n this.setDate(this.selected);\n return;\n } else if (change.date) {\n this.setDate(this.date);\n } else if (change.timespan) {\n this.setDate();\n } if (change.colors || change.heatmap) {\n this.cells = this.getMonth(this.date.clone(), 'current');\n }\n }\n\n /** Returns days of current month */\n getMonth(day = moment(), type?: string): Array {\n const begin = day.clone().startOf('month').startOf('week'); // .subtract(weeksbefore * 7, 'days');\n return new Array(42)\n .fill(0)\n .map((d, index) => begin.clone().add(index, 'days'))\n .map((date, index) => {\n const isStart = this.timespan && date.clone().startOf('day').isSame(this.timespan[0].clone().startOf('day'));\n const isEnd = this.timespan && date.clone().startOf('day').isSame(this.timespan[1].clone().startOf('day'));\n return {\n index,\n date,\n type: date.format('MM YYYY') === day.format('MM YYYY') ? 'current' : 'other',\n active: this.timespan && date.isBetween(this.timespan[0], this.timespan[1], 'days', '[]'),\n first: isStart,\n last: isEnd,\n draggable: (!this.disableDragStart && isStart) || (!this.disableDragEnd && isEnd),\n color: this.getDayColor(date),\n heat: this.getDayHeat(date),\n format: date.format('DD'),\n today: moment().startOf('day').diff(date, 'days') === 0,\n };\n });\n }\n\n\n /** Sets the calendars viewed date to the given moment's month. Renders always 42 cells to keep the layout consistent. */\n setDate(date: moment.Moment = this.selected || this.date || moment()) {\n this.date = date.clone();\n this.formatted = date.format(this.monthFormat);\n this.cells = this.getMonth(date.clone(), 'current');\n }\n\n /** Selects the day of the given moment. */\n selectDay(_moment: moment.Moment): void {\n this.setDate(_moment);\n this.selected = _moment;\n this.dayClicked.emit(_moment);\n }\n\n /** Clears the current selected date*/\n clearSelection(): void {\n delete this.selected;\n }\n\n /** Returns true if the given moment is currently selected (on a day basis) */\n isSelected(_moment: moment.Moment): boolean {\n if (!this.selected) {\n return;\n }\n return this.selected.startOf('day').diff(_moment, 'days') === 0;\n }\n\n canAlter(value, span: string) {\n if (!this.timespan) {\n return true;\n }\n const newDate = this.date.clone().add(value, span);\n return newDate.isBetween(this.timespan[0], this.timespan[1], 'months', '[]');\n }\n\n /** Updates the viewed date to reflect the given relative changes. */\n alter(value, span: string): void {\n if (!this.canAlter(value, span)) {\n return;\n }\n this.setDate(this.date.clone().add(value, span));\n }\n\n /** Sets the current viewed date to today. */\n today(): void {\n this.setDate(moment());\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DefaultEntryInputComponent.html":{"url":"components/DefaultEntryInputComponent.html","title":"component - DefaultEntryInputComponent","body":"\n \n\n\n\n\n\n Components\n DefaultEntryInputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/entry-form/default-entry-input.component.ts\n\n\n \n Description\n \n \n This component holds the input templates for all field types that can not be represented by the default input template. \n\n \n\n \n Extends\n \n \n DefaultInputComponent\n \n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n templateUrl\n ./default-entry-input.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n sdk\n \n \n Public\n control\n \n \n Public\n field\n \n \n Public\n group\n \n \n Public\n item\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService)\n \n \n \n \n Defined in packages/data/src/lib/entry-form/default-entry-input.component.ts:9\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n sdk\n \n \n \n \n \n \n \n sdk: SdkService\n\n \n \n \n \n Type : SdkService\n\n \n \n \n \n Defined in packages/data/src/lib/entry-form/default-entry-input.component.ts:10\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n control\n \n \n \n \n \n \n \n control: FormControl\n\n \n \n \n \n Type : FormControl\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:17\n \n \n\n \n \n The form control that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:11\n \n \n\n \n \n The field for which the input is meant. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n group\n \n \n \n \n \n \n \n group: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:15\n \n \n\n \n \n The form group that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:13\n \n \n\n \n \n The item that is targeted by the input \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { DefaultInputComponent } from '@ec.components/ui';\nimport { SdkService } from '../sdk/sdk.service';\n\n/** This component holds the input templates for all field types that can not be represented by the default input template. */\n@Component({\n templateUrl: './default-entry-input.component.html',\n})\nexport class DefaultEntryInputComponent extends DefaultInputComponent {\n constructor(public sdk: SdkService) {\n super();\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n 🚂🚃🚃🚃 {{field.type}} input coming soon..\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' 🚂🚃🚃🚃 {{field.type}} input coming soon.. '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DefaultEntryInputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DefaultEntryOutputComponent.html":{"url":"components/DefaultEntryOutputComponent.html","title":"component - DefaultEntryOutputComponent","body":"\n \n\n\n\n\n\n Components\n DefaultEntryOutputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/entry-form/default-entry-output.component.ts\n\n\n \n Description\n \n \n This component holds the templates for all output types that cannot be represented by the default output component. \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-default-entry-output\n \n\n\n\n\n \n templateUrl\n ./default-entry-output.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n field\n \n \n item\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Defined in packages/data/src/lib/entry-form/default-entry-output.component.ts:11\n \n \n\n \n \n The field to output. \n\n \n \n\n \n \n \n \n \n \n \n \n \n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Defined in packages/data/src/lib/entry-form/default-entry-output.component.ts:13\n \n \n\n \n \n The item to display \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { Field, Item } from '@ec.components/core';\n\n/** This component holds the templates for all output types that cannot be represented by the default output component. */\n@Component({\n selector: 'ec-default-entry-output',\n templateUrl: './default-entry-output.component.html',\n})\nexport class DefaultEntryOutputComponent {\n /** The field to output. */\n field: Field;\n /** The item to display */\n item: Item;\n}\n\n \n\n \n \n \n \n JSON\n \n \n 🚂🚃🚃🚃 {{field.type}} output coming soon!-->\n {{item?.display(field.property)}}\n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' JSON 🚂🚃🚃🚃 {{field.type}} output coming soon!--> {{item?.display(field.property)}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DefaultEntryOutputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DefaultInputComponent.html":{"url":"components/DefaultInputComponent.html","title":"component - DefaultInputComponent","body":"\n \n\n\n\n\n\n Components\n DefaultInputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/form/default-input/default-input.component.ts\n\n\n \n Description\n \n \n This component holds the templates for all basic field types. \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n templateUrl\n ./default-input.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n control\n \n \n Public\n field\n \n \n Public\n group\n \n \n Public\n item\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n control\n \n \n \n \n \n \n \n control: FormControl\n\n \n \n \n \n Type : FormControl\n\n \n \n \n \n Defined in packages/ui/src/lib/form/default-input/default-input.component.ts:17\n \n \n\n \n \n The form control that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Defined in packages/ui/src/lib/form/default-input/default-input.component.ts:11\n \n \n\n \n \n The field for which the input is meant. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n group\n \n \n \n \n \n \n \n group: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in packages/ui/src/lib/form/default-input/default-input.component.ts:15\n \n \n\n \n \n The form group that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Defined in packages/ui/src/lib/form/default-input/default-input.component.ts:13\n \n \n\n \n \n The item that is targeted by the input \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { FormControl, FormGroup } from '@angular/forms';\nimport { Field, Item } from '@ec.components/core';\n\n/** This component holds the templates for all basic field types. */\n@Component({\n templateUrl: './default-input.component.html',\n})\nexport class DefaultInputComponent {\n /** The field for which the input is meant. */\n public field: Field;\n /** The item that is targeted by the input */\n public item: Item;\n /** The form group that is used */\n public group: FormGroup;\n /** The form control that is used */\n public control: FormControl;\n}\n\n \n\n \n \n \n\n \n\n \n\n \n \n \n \n \n\n \n \n {{field.placeholder}}\n \n\n \n\n \n\n \n\n \n\n \n \n \n {{option.label?option.label:option}}\n \n \n\n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{field.placeholder}} {{option.label?option.label:option}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DefaultInputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DefaultOutputComponent.html":{"url":"components/DefaultOutputComponent.html","title":"component - DefaultOutputComponent","body":"\n \n\n\n\n\n\n Components\n DefaultOutputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/form/default-output/default-output.component.ts\n\n\n \n Description\n \n \n Holds the templates to output item field values. \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-default-output\n \n\n\n\n\n \n templateUrl\n ./default-output.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n field\n \n \n item\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Defined in packages/ui/src/lib/form/default-output/default-output.component.ts:11\n \n \n\n \n \n The field that should be displayed \n\n \n \n\n \n \n \n \n \n \n \n \n \n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Defined in packages/ui/src/lib/form/default-output/default-output.component.ts:13\n \n \n\n \n \n The item that is targeted by the input \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { Field, Item } from '@ec.components/core';\n\n/** Holds the templates to output item field values. */\n@Component({\n selector: 'ec-default-output',\n templateUrl: './default-output.component.html',\n})\nexport class DefaultOutputComponent {\n /** The field that should be displayed */\n field: Field;\n /** The item that is targeted by the input */\n item: Item;\n}\n\n \n\n \n \n \n \n {{label}}\n \n (field.maxItems||10)\">\n …\n \n \n\n {{item?.display(field.property)}}\n\n \n ✔\n \n \n {{item?.display(field.property)}}\n \n\n \n {{item?.display(field.property)}}\n \n \n {{item?.display(field.property)}}\n \n\n \n \n {{item?.display(field.property)}}\n \n\n \n \n \n\n \n \n {{item?.resolve(field.property)?.length}}\n \n\n \n \n \n\n \n \n {{item?.resolve(field.property)?.length}}\n \n\n \n \n \n\n \n \n \n\n \n \n \n\n \n {{item?.display(field.property)}}\n \n \n\n \n \n text\n \n \n {{item?.display(field.property)}}-->\n JSON\n \n \n {{item?.display(field.property)}}\n \n \n \n {{item?.display(field.property)}}\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{label}} (field.maxItems||10)\"> … {{item?.display(field.property)}} ✔ {{item?.display(field.property)}} {{item?.display(field.property)}} {{item?.display(field.property)}} {{item?.display(field.property)}} {{item?.resolve(field.property)?.length}} {{item?.resolve(field.property)?.length}} {{item?.display(field.property)}} text {{item?.display(field.property)}}--> JSON {{item?.display(field.property)}} {{item?.display(field.property)}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DefaultOutputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/DropzoneDirective.html":{"url":"directives/DropzoneDirective.html","title":"directive - DropzoneDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n DropzoneDirective\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/files/dropzone/dropzone.directive.ts\n \n\n \n Description\n \n \n Directive that turns any element into a zone to drop files. TODO: demo \n\n \n\n\n\n \n Metadata\n \n \n\n \n Selector\n [ecDropzone]\n \n\n \n \n \n\n \n Index\n \n \n\n\n \n \n Inputs\n \n \n \n \n \n \n disabled\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n ecDropzone\n \n \n \n \n\n \n \n HostBindings\n \n \n \n \n \n \n class.is-active\n \n \n \n \n\n \n \n HostListeners\n \n \n \n \n \n \n dragleave\n \n \n dragover\n \n \n drop\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(el: ElementRef)\n \n \n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:46\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n el\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n disabled\n \n \n If true the element acts normal \n\n \n Default value : false\n \n \n \n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:11\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n ecDropzone\n \n \n Emits when files are dropped \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:9\n \n \n \n \n\n \n HostBindings \n \n \n \n \n \n \n class.is-active\n \n \n \n \n \n \n \n class.is-active: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:7\n \n \n\n \n \n The is-active class is bound to the host when dragover is active \n\n \n \n\n \n \n\n\n \n HostListeners \n \n \n \n \n \n \n dragleave\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndragleave(e)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:37\n \n \n\n\n \n \n flips active to false on dragleave \n\n\n \n \n \n \n \n \n \n \n \n \n \n dragover\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndragover(e)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:13\n \n \n\n\n \n \n flips active to true on dragover \n\n\n \n \n \n \n \n \n \n \n \n \n \n drop\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndrop(e)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:24\n \n \n\n\n \n \n emits dropped files and flips active to false on drop \n\n\n \n \n \n \n\n\n\n\n\n \n\n\n \n import { Directive, ElementRef, EventEmitter, HostBinding, HostListener, Input, Output } from '@angular/core';\n\n/** Directive that turns any element into a zone to drop files. TODO: demo */\n@Directive({ selector: '[ecDropzone]' })\nexport class DropzoneDirective {\n /** The is-active class is bound to the host when dragover is active */\n @HostBinding('class.is-active') public active: boolean;\n /** Emits when files are dropped */\n @Output() ecDropzone: EventEmitter = new EventEmitter();\n /** If true the element acts normal */\n @Input() disabled = false;\n /** flips active to true on dragover */\n @HostListener('dragover', ['$event']) onDragOver(e) {\n if (this.disabled) {\n return;\n }\n e.preventDefault();\n e.stopPropagation();\n if (!this.active) {\n this.active = true;\n }\n }\n /** emits dropped files and flips active to false on drop */\n @HostListener('drop', ['$event']) onDrop(e) {\n if (this.disabled) {\n return;\n }\n e.preventDefault();\n e.stopPropagation();\n if (!e.dataTransfer.files || !e.dataTransfer.files.length) {\n return;\n }\n this.ecDropzone.emit(e);\n this.active = false;\n }\n /** flips active to false on dragleave */\n @HostListener('dragleave', ['$event']) onDragLeave(e) {\n if (this.disabled) {\n return;\n }\n e.preventDefault();\n e.stopPropagation();\n if (this.active) {\n this.active = false;\n }\n }\n constructor(private el: ElementRef) {\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DynamicRackComponent.html":{"url":"components/DynamicRackComponent.html","title":"component - DynamicRackComponent","body":"\n \n\n\n\n\n\n Components\n DynamicRackComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/io/dynamic-rack/dynamic-rack.component.ts\n\n\n \n Description\n \n \n This directive can be used to display a field. It is used inside ec-form as well as ec-list. \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n templateUrl\n ./dynamic-rack.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n\n \n Constructor\n \n \n \n \nconstructor(componentFactoryResolver: ComponentFactoryResolver)\n \n \n \n \n Defined in packages/ui/src/lib/io/dynamic-rack/dynamic-rack.component.ts:10\n \n \n\n \n \n The constructor provides the instance of ViewContainerRef which is later used to create embedded views\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n componentFactoryResolver\n \n \n ComponentFactoryResolver\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n import { Component, ComponentFactoryResolver } from '@angular/core';\n\n// import { CustomFieldComponent } from './custom-field.component';\n\n/** This directive can be used to display a field. It is used inside ec-form as well as ec-list. */\n@Component({\n // selector: 'ec-dynamic-rack',\n templateUrl: './dynamic-rack.component.html'\n})\nexport class DynamicRackComponent {\n /** The constructor provides the instance of ViewContainerRef which is later used to create embedded views*/\n constructor(private componentFactoryResolver: ComponentFactoryResolver) {\n }\n}\n\n \n\n \n \n \n -->\n -->\n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' --> --> '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DynamicRackComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DynamicSlotComponent.html":{"url":"components/DynamicSlotComponent.html","title":"component - DynamicSlotComponent","body":"\n \n\n\n\n\n\n Components\n DynamicSlotComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/io/dynamic-slot/dynamic-slot.component.ts\n\n\n \n Description\n \n \n This directive can be used to display a field. It is used inside ec-form as well as ec-list. \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-dynamic-slot\n \n\n\n\n\n \n templateUrl\n ./dynamic-slot.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n componentFactoryResolver\n \n \n fieldHost\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n loadComponent\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(componentFactoryResolver: ComponentFactoryResolver)\n \n \n \n \n Defined in packages/ui/src/lib/io/dynamic-slot/dynamic-slot.component.ts:11\n \n \n\n \n \n The constructor provides the instance of ViewContainerRef which is later used to create embedded views\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n componentFactoryResolver\n \n \n ComponentFactoryResolver\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n loadComponent\n \n \n \n \n \n \n \nloadComponent(component: Type, data: Object)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/dynamic-slot/dynamic-slot.component.ts:18\n \n \n\n\n \n \n Loads the given component inside the fieldHost. Sets current item and field by default. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n component\n \n Type\n \n \n \n No\n \n \n \n \n\n \n \n data\n \n Object\n \n \n \n No\n \n \n \n {}\n \n\n \n \n \n \n \n \n \n Returns : ComponentRef\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n componentFactoryResolver\n \n \n \n \n \n \n \n componentFactoryResolver: ComponentFactoryResolver\n\n \n \n \n \n Type : ComponentFactoryResolver\n\n \n \n \n \n Defined in packages/ui/src/lib/io/dynamic-slot/dynamic-slot.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n fieldHost\n \n \n \n \n \n \n \n fieldHost: SlotHostDirective\n\n \n \n \n \n Type : SlotHostDirective\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(SlotHostDirective)\n \n \n \n \n \n Defined in packages/ui/src/lib/io/dynamic-slot/dynamic-slot.component.ts:11\n \n \n\n \n \n The FieldHostDirective will be used to nest custom components into the field \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, ComponentFactoryResolver, ComponentRef, Type, ViewChild } from '@angular/core';\nimport { SlotHostDirective } from '../slot-host.directive';\n\n/** This directive can be used to display a field. It is used inside ec-form as well as ec-list. */\n@Component({\n selector: 'ec-dynamic-slot',\n templateUrl: './dynamic-slot.component.html'\n})\nexport class DynamicSlotComponent {\n /** The FieldHostDirective will be used to nest custom components into the field */\n @ViewChild(SlotHostDirective) fieldHost: SlotHostDirective;\n\n /** The constructor provides the instance of ViewContainerRef which is later used to create embedded views*/\n constructor(public componentFactoryResolver: ComponentFactoryResolver) {\n }\n\n /** Loads the given component inside the fieldHost. Sets current item and field by default. */\n loadComponent(component: Type, data: Object = {}): ComponentRef {\n const componentFactory = this.componentFactoryResolver.resolveComponentFactory(component);\n const viewContainerRef = this.fieldHost.viewContainerRef;\n viewContainerRef.clear();\n const componentRef = viewContainerRef.createComponent(componentFactory);\n Object.assign(componentRef.instance, data);\n return componentRef;\n }\n}\n\n \n\n \n \n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DynamicSlotComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/EntriesDirective.html":{"url":"directives/EntriesDirective.html","title":"directive - EntriesDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n EntriesDirective\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Examples\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/entries/entries.directive.ts\n \n\n \n Description\n \n \n Loads an entryList of a given model with the given config.\nhttps://components.entrecode.de/entries/entries?e=1\n\n \n\n \n Implements\n \n \n OnChanges\n WithLoader\n \n\n\n \n Metadata\n \n \n\n \n Selector\n [ecEntries]\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n entryList\n \n \n Public\n items\n \n \n Public\n notificationService\n \n \n Private\n promise\n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n entries\n \n \n isFirst\n \n \n isLast\n \n \n load\n \n \n next\n \n \n ngOnChanges\n \n \n prev\n \n \n useList\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n autoload\n \n \n endless\n \n \n loader\n \n \n model\n \n \n options\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, symbol: SymbolService, notificationService: NotificationsService)\n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:35\n \n \n\n \n \n Injects sdk \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n autoload\n \n \n Should the entries be loaded immediately? Defaults to true \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:30\n \n \n \n \n \n \n \n \n \n endless\n \n \n If true, calling next will append the next page to the items, making the list grow.\n\n \n Default value : false\n \n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:28\n \n \n \n \n \n \n \n \n \n loader\n \n \n The loader that should be used. \n\n \n Type : LoaderComponent\n\n \n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:32\n \n \n \n \n \n \n \n \n \n model\n \n \n The model to load from. \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:24\n \n \n \n \n \n \n \n \n \n options\n \n \n The filterOptions for loading. \n\n \n Type : any\n\n \n \n Default value : {}\n \n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:26\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n entries\n \n \n \n \n \n \n \nentries()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:108\n \n \n\n\n \n \n This helper returns all items of the current entryList. \n\n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n isFirst\n \n \n \n \n \n \n \nisFirst()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:100\n \n \n\n\n \n \n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n isLast\n \n \n \n \n \n \n \nisLast()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:96\n \n \n\n\n \n \n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n load\n \n \n \n \n \n \n \nload()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:58\n \n \n\n\n \n \n Loads the entries \n\n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n next\n \n \n \n \n \n \n \nnext()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:45\n \n \n\n\n \n \n When the model is known, the entryList will be loaded. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n prev\n \n \n \n \n \n \n \nprev()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:89\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n useList\n \n \n \n \n \n \n \nuseList(entryList)\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:71\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n entryList\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n entryList\n \n \n \n \n \n \n \n entryList: EntryList\n\n \n \n \n \n Type : EntryList\n\n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:34\n \n \n\n \n \n The current loaded entryList \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n items\n \n \n \n \n \n \n \n items: EntryResource[]\n\n \n \n \n \n Type : EntryResource[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:35\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n notificationService\n \n \n \n \n \n \n \n notificationService: NotificationsService\n\n \n \n \n \n Type : NotificationsService\n\n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:41\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n promise\n \n \n \n \n \n \n \n promise: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:22\n \n \n\n \n \n The promise of the entryList call. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:40\n \n \n\n\n \n \n\n\n\n \n\n \n ec-entries\nThis component can be used to load a list of entries from the template:\n\n \n {{muffin.name}}\n \n\n \n\n \n import { Directive, Input, OnChanges } from '@angular/core';\nimport { LoaderComponent, WithLoader, NotificationsService } from '@ec.components/ui';\nimport EntryList from 'ec.sdk/lib/resources/publicAPI/EntryList';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\nimport { SdkService } from '../sdk/sdk.service';\nimport { SymbolService } from '@ec.components/ui';\n\n// import { filterOptions } from 'ec.sdk/lib/resources/ListResource';\n\n/** Loads an entryList of a given model with the given config.\n * https://components.entrecode.de/entries/entries?e=1\n*/\n@Directive({\n selector: '[ecEntries]',\n exportAs: 'ecEntries'\n})\nexport class EntriesDirective implements OnChanges, WithLoader {\n /** The promise of the entryList call. */\n private promise: any;\n /** The model to load from. */\n @Input() model: string;\n /** The filterOptions for loading. */\n @Input() options: any = {}; // TODO cannot import #simibug : filterOptions;\n /** If true, calling next will append the next page to the items, making the list grow.*/\n @Input() endless = false;\n /** Should the entries be loaded immediately? Defaults to true */\n @Input() autoload: boolean;\n /** The loader that should be used. */\n @Input() loader: LoaderComponent;\n /** The current loaded entryList */\n private entryList: EntryList;\n public items: EntryResource[] = [];\n\n /** Injects sdk */\n constructor(\n private sdk: SdkService,\n public symbol: SymbolService,\n public notificationService: NotificationsService) {\n }\n\n /** When the model is known, the entryList will be loaded. */\n ngOnChanges() {\n if (!this.model) {\n return;\n }\n if (this.endless && this.options.page && this.options.page > 1) {\n console.warn('cannot init ecEntries on page!==1 with strategy=endless');\n }\n if (this.autoload !== false) {\n this.load();\n }\n }\n\n /** Loads the entries */\n load() {\n this.promise = this.sdk.api.entryList(this.model, this.options)\n .then(list => this.useList(list))\n .catch(error => this.notificationService.emit({\n title: this.symbol.resolve('entries.load.error'),\n error\n }));\n if (this.loader) {\n this.loader.wait(this.promise);\n }\n return this.promise;\n }\n\n useList(entryList) {\n this.entryList = entryList;\n const items = this.entryList.getAllItems();\n if (this.endless) {\n this.items = this.items.concat(items);\n this.items = this.items.filter((item) => this.items.find((_item) => _item.id === item.id));\n } else {\n this.items = this.entryList.getAllItems();\n }\n }\n\n next() {\n this.promise = this.entryList.followNextLink().then(list => this.useList(list));\n if (this.loader) {\n this.loader.wait(this.promise);\n }\n }\n\n prev() {\n this.promise = this.entryList.followPrevLink().then(list => this.useList(list));\n if (this.loader) {\n this.loader.wait(this.promise);\n }\n }\n\n isLast() {\n return !this.entryList || !this.entryList.hasNextLink();\n }\n\n isFirst() {\n if (this.endless) {\n return true;\n }\n return !this.entryList || !this.entryList.hasFirstLink();\n }\n\n /** This helper returns all items of the current entryList. */\n entries() {\n if (!this.entryList) {\n return [];\n }\n return this.entryList.getAllItems();\n }\n}\n\n \n\n \n \n no-iframes\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/EntryDirective.html":{"url":"directives/EntryDirective.html","title":"directive - EntryDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n EntryDirective\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Examples\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/entry/entry.directive.ts\n \n\n \n Description\n \n \n Loads an entry by id to the template.\nhttps://components.entrecode.de/entries/entries?e=1\n\n \n\n \n Implements\n \n \n OnChanges\n WithLoader\n \n\n\n \n Metadata\n \n \n\n \n Selector\n [ecEntry]\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n entry\n \n \n Public\n notificationService\n \n \n promise\n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n load\n \n \n ngOnChanges\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n autoload\n \n \n entryId\n \n \n levels\n \n \n loader\n \n \n model\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n loaded\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, symbol: SymbolService, notificationService: NotificationsService)\n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:33\n \n \n\n \n \n Injects the sdk \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n autoload\n \n \n Should the entry be loaded immediately? Defaults to true \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:25\n \n \n \n \n \n \n \n \n \n entryId\n \n \n The entry id that should be loaded\n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:21\n \n \n \n \n \n \n \n \n \n levels\n \n \n The levels to use. \n\n \n Type : number\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:27\n \n \n \n \n \n \n \n \n \n loader\n \n \n The loader that should be used. \n\n \n Type : LoaderComponent\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:31\n \n \n \n \n \n \n \n \n \n model\n \n \n The model to load from \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:23\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n loaded\n \n \n Fires as soon as the entry has been loaded. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:29\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n load\n \n \n \n \n \n \n \nload()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:50\n \n \n\n\n \n \n Loads the entry. Can be called from template when using autoload=false \n\n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:42\n \n \n\n\n \n \n as soon as model and id are known, the entry will be loaded. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n entry\n \n \n \n \n \n \n \n entry: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:33\n \n \n\n \n \n The current loaded entry \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n notificationService\n \n \n \n \n \n \n \n notificationService: NotificationsService\n\n \n \n \n \n Type : NotificationsService\n\n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:38\n \n \n\n\n \n \n \n \n \n \n \n \n \n promise\n \n \n \n \n \n \n \n promise: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:19\n \n \n\n \n \n The loading promise \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:37\n \n \n\n\n \n \n\n\n\n \n\n \n ec-entry\nThis directive can be used to load a single entry directly from the template:\n\n{{muffin.entry?.name}}\n \n\n \n import { Directive, EventEmitter, Input, OnChanges, Output } from '@angular/core';\nimport { SdkService } from '../sdk/sdk.service';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\nimport { WithLoader, LoaderComponent, NotificationsService } from '@ec.components/ui';\nimport { SymbolService } from '@ec.components/ui';\n\n/** Loads an entry by id to the template.\n * https://components.entrecode.de/entries/entries?e=1\n * */\n@Directive({\n selector: '[ecEntry]',\n exportAs: 'ecEntry'\n})\nexport class EntryDirective implements OnChanges, WithLoader {\n /** The loading promise */\n promise: any;\n /** The entry id that should be loaded*/\n @Input() entryId: string;\n /** The model to load from */\n @Input() model: string;\n /** Should the entry be loaded immediately? Defaults to true */\n @Input() autoload: boolean;\n /** The levels to use. */\n @Input() levels: number;\n /** Fires as soon as the entry has been loaded. */\n @Output() loaded: EventEmitter = new EventEmitter();\n /** The loader that should be used. */\n @Input() loader: LoaderComponent;\n /** The current loaded entry */\n entry: any;\n\n /** Injects the sdk */\n constructor(private sdk: SdkService,\n public symbol: SymbolService,\n public notificationService: NotificationsService) {\n }\n\n /** as soon as model and id are known, the entry will be loaded. */\n ngOnChanges() {\n if (this.autoload === false) {\n return;\n }\n this.load();\n }\n\n /** Loads the entry. Can be called from template when using autoload=false */\n load() {\n if (!this.entryId || !this.model) {\n return;\n }\n this.promise = this.sdk.api.entry(this.model, this.entryId, this.levels)\n .then((entry) => {\n this.entry = entry;\n this.loaded.emit(entry);\n return entry;\n })\n .catch(error =>\n this.notificationService.emit({\n title: this.symbol.resolve('entry.load.error'),\n error\n }));\n if (this.loader) {\n this.loader.wait(this.promise);\n }\n return this.promise;\n }\n}\n\n \n\n \n \n no-iframes\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/EntryListPopComponent.html":{"url":"components/EntryListPopComponent.html","title":"component - EntryListPopComponent","body":"\n \n\n\n\n\n\n Components\n EntryListPopComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts\n\n\n \n Description\n \n \n A Pop that contains an entry list. TODO: add demo \n\n \n\n \n Extends\n \n \n PopComponent\n \n\n \n Implements\n \n \n OnChanges\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-entry-list-pop\n \n\n\n\n\n \n templateUrl\n ./entry-list-pop.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n Public\n elementRef\n \n \n lightModel\n \n \n Public\n modelConfig\n \n \n Public\n popService\n \n \n searchbar\n \n \n activated\n \n \n clickEvent\n \n \n Public\n elementRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getHeader\n \n \n ngOnChanges\n \n \n select\n \n \n Public\n hide\n \n \n isOutside\n \n \n Public\n show\n \n \n Public\n toggle\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n config\n \n \n model\n \n \n selection\n \n \n active\n \n \n hideOnClickOutside\n \n \n type\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n columnClicked\n \n \n toggle\n \n \n \n \n\n \n \n HostBindings\n \n \n \n \n \n \n class\n \n \n \n \n\n \n \n HostListeners\n \n \n \n \n \n \n document:click\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(modelConfig: ModelConfigService, popService: PopService, elementRef: ElementRef, cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:22\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n modelConfig\n \n \n ModelConfigService\n \n \n \n No\n \n \n \n \n popService\n \n \n PopService\n \n \n \n No\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n config\n \n \n \n Type : CrudConfig\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:16\n \n \n \n \n \n \n \n \n \n model\n \n \n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:15\n \n \n \n \n \n \n \n \n \n selection\n \n \n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:17\n \n \n \n \n \n \n \n \n \n active\n \n \n If true, .ec-pop is part of the DOM (*ngIf) + .active is set on .ec-pop-container. \n\n \n Type : boolean\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:29\n \n \n \n \n \n \n \n \n \n hideOnClickOutside\n \n \n If set to true, the pop will hide when a click happens outside the pop. \n\n \n Default value : false\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:35\n \n \n \n \n \n \n \n \n \n type\n \n \n The used type on the host element \n\n \n Type : string\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:33\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n columnClicked\n \n \n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:18\n \n \n \n \n \n \n \n \n \n toggle\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:37\n \n \n \n \n\n \n HostBindings \n \n \n \n \n \n \n class\n \n \n \n \n \n \n \n class: \n\n \n \n \n \n Default value : 'toast-wrapper'\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:21\n \n \n\n \n \n Set host class to make sure the type is used \n\n \n \n\n \n \n\n\n \n HostListeners \n \n \n \n \n \n \n document:click\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndocument:click($event)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:42\n \n \n\n\n \n \n Listens for document:click and hides \n\n\n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getHeader\n \n \n \n \n \n \n \ngetHeader(entryList)\n \n \n\n\n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:50\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n entryList\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:33\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \n \nselect(item)\n \n \n\n\n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:41\n \n \n\n\n \n \n emits columnClicked event or toggles selection if no observers. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n hide\n \n \n \n \n \n \n \n \n hide()\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:90\n \n \n\n\n \n \n Hides the pop. Sets active false and removes pop from popService.stack \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n isOutside\n \n \n \n \n \n \n \nisOutside(element)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:61\n \n \n\n\n \n \n yields true if the given element is outside the pop / or is the wrapper element itself (the backdrop) \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n element\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n show\n \n \n \n \n \n \n \n \n show(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:77\n \n \n\n\n \n \n Shows the pop. Sets active true and adds pop to popService.stack \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n toggle\n \n \n \n \n \n \n \n \n toggle(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:67\n \n \n\n\n \n \n Shows if not active, hides if active. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n lightModel\n \n \n \n \n \n \n \n lightModel: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:22\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n modelConfig\n \n \n \n \n \n \n \n modelConfig: ModelConfigService\n\n \n \n \n \n Type : ModelConfigService\n\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n popService\n \n \n \n \n \n \n \n popService: PopService\n\n \n \n \n \n Type : PopService\n\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n searchbar\n \n \n \n \n \n \n \n searchbar: SearchbarComponent\n\n \n \n \n \n Type : SearchbarComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(SearchbarComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n activated\n \n \n \n \n \n \n \n activated: \n\n \n \n \n \n Default value : false\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:31\n \n \n\n \n \n Flip and stays true after first show \n\n \n \n\n \n \n \n \n \n \n \n \n \n clickEvent\n \n \n \n \n \n \n \n clickEvent: \n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:39\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:55\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectorRef, Component, ElementRef, EventEmitter, HostBinding, Input, OnChanges, Output, ViewChild } from '@angular/core';\nimport { Item, Selection } from '@ec.components/core';\nimport { PopComponent, PopService, SearchbarComponent } from '@ec.components/ui';\nimport { CrudConfig } from '../crud/crud-config.interface';\nimport { ModelConfigService } from '../model-config/model-config.service';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\n\n/** A Pop that contains an entry list. TODO: add demo */\n@Component({\n selector: 'ec-entry-list-pop',\n templateUrl: './entry-list-pop.component.html',\n\n})\nexport class EntryListPopComponent extends PopComponent implements OnChanges {\n @Input() model: string;\n @Input() config: CrudConfig;\n @Input() selection: Selection;\n @Output() columnClicked: EventEmitter> = new EventEmitter();\n @ViewChild(SearchbarComponent) searchbar: SearchbarComponent;\n /** Set host class to make sure the type is used */\n @HostBinding('class') class = 'toast-wrapper';\n lightModel: any;\n\n constructor(\n public modelConfig: ModelConfigService,\n public popService: PopService,\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef\n ) {\n super(popService, elementRef, cdr);\n }\n\n ngOnChanges() {\n if (this.model) {\n this.modelConfig.getLightModel(this.model).then(model => this.lightModel = model);\n }\n this.config = Object.assign({}, this.config || {}, { hidePagination: true, disableHeader: true });\n }\n\n /** emits columnClicked event or toggles selection if no observers. */\n select(item) {\n if (this.columnClicked.observers.length) {\n this.columnClicked.emit(item);\n } else if (this.selection) {\n this.selection.toggle(item);\n }\n this.searchbar.focusEvent.emit(true);\n }\n\n getHeader(entryList) {\n const label = this.config.singularLabel || entryList.model;\n return `${label}`;\n }\n}\n\n \n\n \n \n \n \n \n \n {{getHeader(entryList)}}\n \n \n \n \n \n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{getHeader(entryList)}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'EntryListPopComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ErrorComponent.html":{"url":"components/ErrorComponent.html","title":"component - ErrorComponent","body":"\n \n\n\n\n\n\n Components\n ErrorComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/notifications/error/error.component.ts\n\n\n \n Description\n \n \n The CrudComponent takes at least a model name to render an entry list with create/edit/delete functionality out of the box. \n\n \n\n\n \n Implements\n \n \n OnInit\n OnChanges\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-error\n \n\n\n\n\n \n templateUrl\n ./error.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnChanges\n \n \n ngOnInit\n \n \n update\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n error\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(symbol: SymbolService)\n \n \n \n \n Defined in packages/ui/src/lib/notifications/error/error.component.ts:12\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n error\n \n \n The error that should be displayed \n\n \n Type : any\n\n \n \n \n \n \n Defined in packages/ui/src/lib/notifications/error/error.component.ts:12\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/notifications/error/error.component.ts:22\n \n \n\n\n \n \n change update \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/notifications/error/error.component.ts:18\n \n \n\n\n \n \n initial update \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n update\n \n \n \n \n \n \n \nupdate()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/notifications/error/error.component.ts:26\n \n \n\n\n \n \n updates error message \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n\n \n import { Component, Input, OnChanges, OnInit } from '@angular/core';\nimport { SymbolService } from '../../symbol/symbol.service';\n\n/** The CrudComponent takes at least a model name to render an entry list with create/edit/delete functionality out of the box. */\n@Component({\n selector: 'ec-error',\n templateUrl: './error.component.html'\n})\n/** Displays an error thrown by the SDK. */\nexport class ErrorComponent implements OnInit, OnChanges {\n /** The error that should be displayed */\n @Input() error: any;\n\n constructor(private symbol: SymbolService) {\n }\n\n /** initial update */\n ngOnInit() {\n this.update();\n }\n /** change update */\n ngOnChanges() {\n this.update();\n }\n /** updates error message */\n update() {\n if (!this.error) {\n return;\n }\n const message = this.symbol.resolve('error.' + this.error.code);\n if (message) {\n this.error.message = message;\n }\n }\n}\n\n \n\n \n {{error.code}}\n{{error.dataPath}}\n{{error?.message}}\n{{error.detail}}{{error.verbose?': '+error.verbose:''}}\n\n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = '{{error.code}}{{error.dataPath}}{{error?.message}}{{error.detail}}{{error.verbose?\\': \\'+error.verbose:\\'\\'}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ErrorComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Field.html":{"url":"classes/Field.html","title":"class - Field","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Field\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/field/field.ts\n \n\n\n\n \n Implements\n \n \n FieldConfigProperty\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n class\n \n \n Optional\n filterable\n \n \n Optional\n filterOperator\n \n \n Optional\n filterPopClass\n \n \n Optional\n form\n \n \n Optional\n hidden\n \n \n Optional\n icon\n \n \n id\n \n \n Optional\n input\n \n \n Optional\n label\n \n \n Optional\n maxItems\n \n \n Optional\n output\n \n \n Optional\n placeholder\n \n \n Optional\n property\n \n \n Optional\n required\n \n \n Optional\n sortable\n \n \n Optional\n type\n \n \n Optional\n validate\n \n \n values\n \n \n Optional\n view\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getColumns\n \n \n getPlaceholder\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(property: string, config: FieldConfigProperty)\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:47\n \n \n\n \n \n A Field is constructed by assigning the given config and the property to itself\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n property\n \n \n string\n \n \n \n No\n \n \n \n \n config\n \n \n FieldConfigProperty\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n class\n \n \n \n \n \n \n \n class: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:35\n \n \n\n \n \n Class string \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n filterable\n \n \n \n \n \n \n \n filterable: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:41\n \n \n\n \n \n if false, the field will not be filterable in a list \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n filterOperator\n \n \n \n \n \n \n \n filterOperator: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:27\n \n \n\n \n \n The operator to use for filtering: exact, search, any etc.. see ec.sdk doc \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n filterPopClass\n \n \n \n \n \n \n \n filterPopClass: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:29\n \n \n\n \n \n Defines the class for the filter pop, e.g. in list header. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n form\n \n \n \n \n \n \n \n form: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:31\n \n \n\n \n \n Wether or not the field should appear in default forms \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n hidden\n \n \n \n \n \n \n \n hidden: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:11\n \n \n\n \n \n If true, the field will not be visible anywhere \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n icon\n \n \n \n \n \n \n \n icon: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:45\n \n \n\n \n \n Icon name that should be associated with the field \n\n \n \n\n \n \n \n \n \n \n \n \n \n id\n \n \n \n \n \n \n \n id: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:37\n \n \n\n \n \n id for form labels \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n input\n \n \n \n \n \n \n \n input: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:19\n \n \n\n \n \n Custom Component to display form input *\n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n label\n \n \n \n \n \n \n \n label: string | boolean\n\n \n \n \n \n Type : string | boolean\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:25\n \n \n\n \n \n Label for Inputs. Defaults to property name. If false, the label is empty. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n maxItems\n \n \n \n \n \n \n \n maxItems: number\n\n \n \n \n \n Type : number\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:43\n \n \n\n \n \n Defines the maximum of visible item (for tags view or similar). Defaults to 10 \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n output\n \n \n \n \n \n \n \n output: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:21\n \n \n\n \n \n Custom Component to display value *\n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n placeholder\n \n \n \n \n \n \n \n placeholder: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:23\n \n \n\n \n \n Placeholder in inputs \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n property\n \n \n \n \n \n \n \n property: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:9\n \n \n\n \n \n The name of the field's property \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n required\n \n \n \n \n \n \n \n required: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:7\n \n \n\n \n \n Tells if the field is required in forms \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n sortable\n \n \n \n \n \n \n \n sortable: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:39\n \n \n\n \n \n if false, the field will not be sortable in a list \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n type\n \n \n \n \n \n \n \n type: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:13\n \n \n\n \n \n The field's type \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n validate\n \n \n \n \n \n \n \n validate: function\n\n \n \n \n \n Type : function\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:17\n \n \n\n \n \n Custom Validation function \n\n \n \n\n \n \n \n \n \n \n \n \n \n values\n \n \n \n \n \n \n \n values: any[]\n\n \n \n \n \n Type : any[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:33\n \n \n\n \n \n Possible Values e.g. in a select \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n view\n \n \n \n \n \n \n \n view: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:15\n \n \n\n \n \n The field's view \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getColumns\n \n \n \n \n \n \n \ngetColumns()\n \n \n\n\n \n \n Defined in packages/core/src/lib/field/field.ts:63\n \n \n\n\n \n \n Returns the column class for data-col, based on configured columns \n\n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPlaceholder\n \n \n \n \n \n \n \ngetPlaceholder()\n \n \n\n\n \n \n Defined in packages/core/src/lib/field/field.ts:59\n \n \n\n\n \n \n Returns placeholder if any \n\n\n \n Returns : string | true\n\n \n \n \n \n \n\n\n \n Indexable\n \n \n \n \n [key: string]: any\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:45\n \n \n \n \n wildcard for custom config values \n\n \n \n \n \n\n\n\n\n\n\n \n\n \n Field\nA Field represents a property of an Object, without a specific value.\nIt is used to describe a column or field of one or multiple equally structured objects.\nThe field config (see FieldConfigProperty) can contain different transformation methods, such as:\n\nresolve: This method is used to resolve the field value from the object body.\nIt runs before all other transformation methods.\ndisplay: Transforms the resolved value to a human readable output. It is used for e.g. in list cells.\ngroup: Should return a value that is suitable for grouping multiple different values together, like in a list.\n\nExample Usage:\nconst field = new Field('name', {\n resolve: (body) => body.value.name,\n display: (value) => value.toUpperCase(),\n group: (value) => value.length + ' Buchstaben',\n sort: (value) => value.length\n });\nconst name = field.resolve({value:{name:'bobby'}}); // 'bobby'\nfield.display(name); // => 'Bobby'\nfield.group(name); // => '5 Buchstaben'\nfield.sort(name); // => 5The above example is of course only viable to show the concept.\nWhen using the components as a whole, those methods will be called automatically from Item, List or Form.\n\n \n\n \n import { FieldConfigProperty } from '../config/field-config-property.interface';\n\nexport class Field implements FieldConfigProperty {\n /** Tells if the field is required in forms */\n required?: boolean;\n /** The name of the field's property */\n property?: string;\n /** If true, the field will not be visible anywhere */\n hidden?: boolean;\n /** The field's type */\n type?: string;\n /** The field's view */\n view?: string;\n /** Custom Validation function */\n validate?: (value, field) => any;\n /** Custom Component to display form input **/\n input?: any;\n /** Custom Component to display value **/\n output?: any;\n /** Placeholder in inputs */\n placeholder?: string;\n /** Label for Inputs. Defaults to property name. If false, the label is empty. */\n label?: string | boolean;\n /** The operator to use for filtering: exact, search, any etc.. see ec.sdk doc */\n filterOperator?: string;\n /** Defines the class for the filter pop, e.g. in list header. */\n filterPopClass?: string;\n /** Wether or not the field should appear in default forms */\n form?: boolean;\n /** Possible Values e.g. in a select */\n values: any[] = [];\n /** Class string */\n class = '';\n /** id for form labels */\n id: string;\n /** if false, the field will not be sortable in a list */\n sortable?: boolean;\n /** if false, the field will not be filterable in a list */\n filterable?: boolean;\n /** Defines the maximum of visible item (for tags view or similar). Defaults to 10 */\n maxItems?: number;\n /** Icon name that should be associated with the field */\n icon?: string;\n /** wildcard for custom config values */\n [key: string]: any;\n\n /** A Field is constructed by assigning the given config and the property to itself*/\n constructor(property: string, config: FieldConfigProperty) {\n if (config) {\n Object.assign(this, config);\n }\n Object.assign(this, { property: property });\n this.id = `${this.property}_${Date.now()}`;\n }\n\n /** Returns placeholder if any */\n getPlaceholder() {\n return this.placeholder || this.label || this.property;\n }\n /** Returns the column class for data-col, based on configured columns */\n getColumns() {\n return (this.columns || 12) + '-sm';\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/FieldConfig.html":{"url":"interfaces/FieldConfig.html","title":"interface - FieldConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n FieldConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/config/field-config.interface.ts\n \n\n \n Description\n \n \n Configuration for list fields.\n\n \n\n\n\n\n \n Indexable\n \n \n \n \n [key: string]: FieldConfigProperty\n\n \n \n \n \n Defined in packages/core/src/lib/config/field-config.interface.ts:6\n \n \n \n \n Each field can be configured in the form of FieldConfigProperty. \n\n \n \n \n \n\n\n \n\n\n \n import { FieldConfigProperty } from './field-config-property.interface';\n\n/**\n * Configuration for list fields.\n */\nexport interface FieldConfig {\n /** Each field can be configured in the form of FieldConfigProperty. */\n [key: string]: FieldConfigProperty;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/FileOptions.html":{"url":"interfaces/FileOptions.html","title":"interface - FileOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n FileOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/files/file.service.ts\n \n\n \n Description\n \n \n Interface for file options used by new assets \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n deduplicate\n \n \n Optional\n fieldName\n \n \n Optional\n fileName\n \n \n Optional\n ignoreDuplicates\n \n \n Optional\n includeAssetIDInPath\n \n \n Optional\n preserveFilenames\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n deduplicate\n \n \n \n \n deduplicate: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Deduplicate upload \n\n \n \n \n \n \n \n \n \n \n fieldName\n \n \n \n \n fieldName: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Custom file form fieldName \n\n \n \n \n \n \n \n \n \n \n fileName\n \n \n \n \n fileName: string[]\n\n \n \n\n\n \n \n Type : string[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Optional custom names for assets. Mapped by indices to assets. \n\n \n \n \n \n \n \n \n \n \n ignoreDuplicates\n \n \n \n \n ignoreDuplicates: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Ignores duplicates \n\n \n \n \n \n \n \n \n \n \n includeAssetIDInPath\n \n \n \n \n includeAssetIDInPath: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Includes assetID in path \n\n \n \n \n \n \n \n \n \n \n preserveFilenames\n \n \n \n \n preserveFilenames: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Preserves Filenames \n\n \n \n \n \n \n \n\n\n \n import { EventEmitter, Injectable } from '@angular/core';\nimport { Item } from '@ec.components/core';\nimport DMAssetList from 'ec.sdk/lib/resources/publicAPI/DMAssetList';\nimport DMAssetResource from 'ec.sdk/lib/resources/publicAPI/DMAssetResource';\nimport PublicAssetList from 'ec.sdk/lib/resources/publicAPI/PublicAssetList';\nimport PublicAssetResource from 'ec.sdk/lib/resources/publicAPI/PublicAssetResource';\nimport { TypeConfigService } from '../model-config/type-config.service';\nimport { ResourceConfig } from '../resource-config/resource-config.service';\nimport { ResourceService } from '../resource-config/resource.service';\nimport { ResourceList } from '../resource-list/resource-list';\nimport { SdkService } from '../sdk/sdk.service';\n\n/** Instances of Update are emitted by the changes EventEmitter of the CrudService. */\nexport interface Upload {\n /** The relevant asset. */\n asset?: PublicAssetResource;\n /** The relevant assets (when uploading multiple). */\n assets?: PublicAssetResource[];\n /** The uploaded asset as item */\n item?: Item;\n /** The uploaded asset as item */\n items?: Array>;\n /** The list where it happened. */\n list?: ResourceList;\n}\n\n/** Interface for file options used by new assets */\nexport interface FileOptions {\n /** Preserves Filenames */\n preserveFilenames?: boolean;\n /** Includes assetID in path */\n includeAssetIDInPath?: boolean;\n /** Ignores duplicates */\n ignoreDuplicates?: boolean;\n /** Optional custom names for assets. Mapped by indices to assets. */\n fileName?: string[];\n /** Custom file form fieldName */\n fieldName?: string;\n /** Deduplicate upload */\n deduplicate?: boolean;\n}\n\n/** The CRUD service is meant to be used when modifying entries.\n * As the letters state it should be used to create update and delete entries.\n * Each action fires up a change that can be subscribed upon in any component to react to relevant\n * changes.\n * */\n@Injectable()\nexport class FileService {\n /** Promise that resolves assetGroupList from sdk */\n assetGroupListPromise: Promise;\n /** The changes event is emitted everytime an entry is created or updated. */\n public uploads: EventEmitter = new EventEmitter();\n /** Default options for file upload */\n public defaultOptions: FileOptions = {\n preserveFilenames: true,\n includeAssetIDInPath: true,\n ignoreDuplicates: false,\n deduplicate: false,\n fileName: []\n };\n /** config for new assets */\n public dmAssetConfig = Object.assign({}, this.resourceConfig.get('dmAsset'));\n /** config for legacy assets */\n public legacyAssetConfig = Object.assign({}, this.resourceConfig.get('legacyAsset'), { forceGroup: true });\n /** All the possible assetGroupIDs that are interpreted as old. Comes from validation of field */\n public oldAssetGroupIDs = ['image', 'video', 'audio', 'plain', 'document', 'spreadsheet', 'legacyAsset'];\n\n /** Injects sdk */\n constructor(private sdk: SdkService,\n private typeConfig: TypeConfigService,\n private resourceService: ResourceService,\n private resourceConfig: ResourceConfig) {\n }\n\n public getAssetConfig(assetGroupID) {\n if (this.isOldAssetGroupID(assetGroupID)) {\n const config = Object.assign({}, this.legacyAssetConfig);\n if (this.oldAssetGroupIDs.includes(assetGroupID) && assetGroupID !== 'legacyAsset') {\n config.filter = Object.assign({}, (config.filter || {}), {\n type: assetGroupID\n });\n }\n return config;\n } else {\n return Object.assign({}, this.dmAssetConfig);\n }\n }\n\n /** returns true if the given asset is a new one (DMAssetResource) */\n public isNewAsset(asset: Array | string | DMAssetResource | PublicAssetResource, only = false) {\n if (Array.isArray(asset)) {\n return asset.reduce(\n (match, a) =>\n ((only && (match && this.isNewAsset(a)) ||\n (!only && (match || this.isNewAsset(a)))))\n , only);\n }\n const id = typeof asset === 'string' ? asset : asset.assetID;\n return /^[a-zA-Z0-9\\-_]{22}$/.test(id);\n }\n\n /** Returns form data for a file list. You have to append options (even if empty) to get formData for new assets! */\n public getFormData(files: FileList, options?: FileOptions): FormData {\n const formData: FormData = new FormData();\n for (let i = 0; i {\n if (key in options) {\n formData.append(key, `${options[key]}`);\n }\n });\n }\n return formData;\n }\n\n /** Upload New Assets */\n public uploadAssets(files, assetGroupID, options: FileOptions = {}, api = this.sdk.api): Promise {\n if (!files.length) {\n return;\n }\n const data = files[0].url ? files.map(f => f.url) : this.getFormData(files, options);\n return api.createDMAssets(assetGroupID, data, options)\n .then((assetList: DMAssetList) => {\n const assets = assetList.getAllItems();\n return {\n asset: assets[0],\n assets,\n item: new Item(assets[0], this.resourceConfig.get('dmAsset')),\n items: assets.map(asset => new Item(asset, this.resourceConfig.get('dmAsset')))\n };\n }).then((upload: Upload) => {\n this.uploads.emit(upload);\n this.resourceService.changes.next({ relation: 'dmAsset', type: 'post' });\n return upload;\n });\n }\n\n /** Upload old assets */\n public uploadFiles(files): Promise {\n if (!files.length) {\n return;\n }\n const data = this.getFormData(files);\n return Promise.resolve().then((): Promise Promise> => {\n if (files.length === 1) {\n return this.sdk.api.createAsset(data, {});\n }\n return this.sdk.api.createAssets(data, {});\n })\n .then(res => res())\n .then((response) => {\n if (response['getAllItems']) {\n return response['getAllItems']();\n }\n return [response];\n }).then((assets) => {\n return {\n asset: assets[0],\n assets,\n item: new Item(assets[0], this.resourceConfig.get('legacyAsset')),\n items: assets.map(asset => new Item(asset, this.resourceConfig.get('legacyAsset')))\n };\n }).then((upload: Upload) => {\n this.uploads.emit(upload);\n this.resourceService.changes.next({ relation: 'legacyAsset', type: 'post' });\n this.resourceService.changes.next({ relation: 'asset', type: 'post' });\n return upload;\n });\n }\n\n /** Resolves all assetIDs to PublicAssetResources */\n public resolveAssets(assets: Array, assetGroupID?: string):\n Promise> {\n console.warn('FileService#resolveAssets is deprecated. I doubt somebody ever used it but if you see this, stop it. please.');\n const unresolved = assets.reduce((ids, asset) => {\n if (typeof asset === 'string') {\n ids.push(asset);\n }\n return ids;\n }, []);\n if (unresolved.length === 0) {\n return Promise.resolve(>assets);\n }\n if (!assetGroupID && this.isNewAsset(unresolved)) {\n console.warn('wont resolve new asset without knowing assetGroupID');\n return Promise.resolve([]);\n }\n if (assetGroupID) { // new assets\n return this.sdk.api.dmAssetList(assetGroupID, { assetID: { any: unresolved }, size: 100 })\n .then(dmAssetList => dmAssetList.getAllItems());\n }\n return Promise.resolve().then((): any => {\n if (unresolved.length === 1) {\n return this.sdk.api.asset(unresolved[0]).then(asset => {\n return [asset];\n });\n }\n return this.sdk.api.assetList({ assetID: { any: unresolved }, page: 1 })\n .then((assetList) => {\n const resolved = assetList.getAllItems();\n return assets.map((asset) =>\n typeof asset === 'string' ?\n resolved.find((resource) => resource.assetID === asset) : asset);\n });\n\n });\n }\n\n public assetGroupList(forceReload = false) {\n return (!forceReload && this.assetGroupListPromise) || this.sdk.api.assetGroupList();\n }\n\n /** Yields true if the given assetGroupID is an old one. Also checks for old validation types */\n public isOldAssetGroupID(assetGroupID) {\n return !assetGroupID || this.oldAssetGroupIDs.includes(assetGroupID);\n }\n /** Yields true if the given assetGroupID is not an old one, meaning it is defined and legacyAsset or an old asset type. */\n public isNewAssetGroupID(assetGroupID) {\n return !this.isOldAssetGroupID(assetGroupID);\n }\n\n /** method that can be called after the upload to select the uploaded item(s). */\n selectUpload(upload: Upload, selection: any) {\n if (!selection) {\n console.warn('no selection');\n return;\n }\n if (selection.config.solo) {\n selection.select(upload.item);\n } else {\n selection.toggleAll(upload.items, false, true);\n }\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/FilesModule.html":{"url":"modules/FilesModule.html","title":"module - FilesModule","body":"\n \n\n\n\n\n Modules\n FilesModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_FilesModule\n\n\n\ncluster_FilesModule_declarations\n\n\n\ncluster_FilesModule_imports\n\n\n\ncluster_FilesModule_exports\n\n\n\ncluster_FilesModule_providers\n\n\n\n\nAssetDirective\n\nAssetDirective\n\n\n\nFilesModule\n\nFilesModule\n\nFilesModule -->\n\nAssetDirective->FilesModule\n\n\n\n\n\nAssetListComponent\n\nAssetListComponent\n\nFilesModule -->\n\nAssetListComponent->FilesModule\n\n\n\n\n\nAssetListPopComponent\n\nAssetListPopComponent\n\nFilesModule -->\n\nAssetListPopComponent->FilesModule\n\n\n\n\n\nAssetSelectComponent\n\nAssetSelectComponent\n\nFilesModule -->\n\nAssetSelectComponent->FilesModule\n\n\n\n\n\nAssetgroupSelectComponent\n\nAssetgroupSelectComponent\n\nFilesModule -->\n\nAssetgroupSelectComponent->FilesModule\n\n\n\n\n\nDropzoneDirective\n\nDropzoneDirective\n\nFilesModule -->\n\nDropzoneDirective->FilesModule\n\n\n\n\n\nImageDirective\n\nImageDirective\n\nFilesModule -->\n\nImageDirective->FilesModule\n\n\n\n\n\nImageSelectPopComponent\n\nImageSelectPopComponent\n\nFilesModule -->\n\nImageSelectPopComponent->FilesModule\n\n\n\n\n\nTagSelectComponent\n\nTagSelectComponent\n\nFilesModule -->\n\nTagSelectComponent->FilesModule\n\n\n\n\n\nUploadComponent\n\nUploadComponent\n\nFilesModule -->\n\nUploadComponent->FilesModule\n\n\n\n\n\nUploadSelectComponent\n\nUploadSelectComponent\n\nFilesModule -->\n\nUploadSelectComponent->FilesModule\n\n\n\n\n\nAssetDirective \n\nAssetDirective \n\nAssetDirective -->\n\nFilesModule->AssetDirective \n\n\n\n\n\nAssetListComponent \n\nAssetListComponent \n\nAssetListComponent -->\n\nFilesModule->AssetListComponent \n\n\n\n\n\nAssetListPopComponent \n\nAssetListPopComponent \n\nAssetListPopComponent -->\n\nFilesModule->AssetListPopComponent \n\n\n\n\n\nAssetSelectComponent \n\nAssetSelectComponent \n\nAssetSelectComponent -->\n\nFilesModule->AssetSelectComponent \n\n\n\n\n\nAssetgroupSelectComponent \n\nAssetgroupSelectComponent \n\nAssetgroupSelectComponent -->\n\nFilesModule->AssetgroupSelectComponent \n\n\n\n\n\nDropzoneDirective \n\nDropzoneDirective \n\nDropzoneDirective -->\n\nFilesModule->DropzoneDirective \n\n\n\n\n\nImageDirective \n\nImageDirective \n\nImageDirective -->\n\nFilesModule->ImageDirective \n\n\n\n\n\nImageSelectPopComponent \n\nImageSelectPopComponent \n\nImageSelectPopComponent -->\n\nFilesModule->ImageSelectPopComponent \n\n\n\n\n\nSdkModule \n\nSdkModule \n\nSdkModule -->\n\nFilesModule->SdkModule \n\n\n\n\n\nTagSelectComponent \n\nTagSelectComponent \n\nTagSelectComponent -->\n\nFilesModule->TagSelectComponent \n\n\n\n\n\nUploadComponent \n\nUploadComponent \n\nUploadComponent -->\n\nFilesModule->UploadComponent \n\n\n\n\n\nUploadSelectComponent \n\nUploadSelectComponent \n\nUploadSelectComponent -->\n\nFilesModule->UploadSelectComponent \n\n\n\n\n\nResourceModule\n\nResourceModule\n\nFilesModule -->\n\nResourceModule->FilesModule\n\n\n\n\n\nSdkModule\n\nSdkModule\n\nFilesModule -->\n\nSdkModule->FilesModule\n\n\n\n\n\nUiModule\n\nUiModule\n\nFilesModule -->\n\nUiModule->FilesModule\n\n\n\n\n\nFileService\n\nFileService\n\nFilesModule -->\n\nFileService->FilesModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/data/src/lib/files/files.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AssetDirective\n \n \n AssetListComponent\n \n \n AssetListPopComponent\n \n \n AssetSelectComponent\n \n \n AssetgroupSelectComponent\n \n \n DropzoneDirective\n \n \n ImageDirective\n \n \n ImageSelectPopComponent\n \n \n TagSelectComponent\n \n \n UploadComponent\n \n \n UploadSelectComponent\n \n \n \n \n EntryComponents\n \n \n AssetSelectComponent\n \n \n AssetgroupSelectComponent\n \n \n TagSelectComponent\n \n \n UploadComponent\n \n \n \n \n Providers\n \n \n FileService\n \n \n \n \n Imports\n \n \n ResourceModule\n \n \n SdkModule\n \n \n UiModule\n \n \n \n \n Exports\n \n \n AssetDirective\n \n \n AssetListComponent\n \n \n AssetListPopComponent\n \n \n AssetSelectComponent\n \n \n AssetgroupSelectComponent\n \n \n DropzoneDirective\n \n \n ImageDirective\n \n \n ImageSelectPopComponent\n \n \n SdkModule\n \n \n TagSelectComponent\n \n \n UploadComponent\n \n \n UploadSelectComponent\n \n \n \n \n \n\n\n \n\n\n \n // import { BrowserModule } from '@angular/platform-browser';\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { UiModule } from '@ec.components/ui';\nimport { AssetListComponent } from '../asset-list/asset-list.component';\nimport { ResourceModule } from '../resource/resource.module';\nimport { SdkModule } from '../sdk/sdk.module';\nimport { AssetListPopComponent } from './asset-list-pop/asset-list-pop.component';\nimport { AssetSelectComponent } from './asset-select/asset-select.component';\nimport { AssetDirective } from './asset/asset.directive';\nimport { AssetgroupSelectComponent } from './assetgroup-select/assetgroup-select.component';\nimport { DropzoneDirective } from './dropzone/dropzone.directive';\nimport { FileService } from './file.service';\nimport { ImageDirective } from './image/image.directive';\nimport { UploadComponent } from './upload/upload.component';\nimport { UploadSelectComponent } from './upload-select/upload-select.component';\nimport { ImageSelectPopComponent } from './image-select-pop/image-select-pop.component';\nimport { TagSelectComponent } from './tag-select/tag-select.component';\n\n@NgModule({\n entryComponents: [\n AssetSelectComponent,\n AssetgroupSelectComponent,\n UploadComponent,\n TagSelectComponent,\n ],\n declarations: [\n AssetListComponent,\n AssetListPopComponent,\n AssetSelectComponent,\n AssetgroupSelectComponent,\n AssetDirective,\n DropzoneDirective,\n ImageDirective,\n UploadComponent,\n UploadSelectComponent,\n ImageSelectPopComponent,\n TagSelectComponent\n ],\n imports: [\n CommonModule,\n FormsModule,\n UiModule,\n SdkModule,\n ResourceModule\n ],\n exports: [\n AssetListComponent,\n AssetListPopComponent,\n AssetSelectComponent,\n AssetgroupSelectComponent,\n AssetDirective,\n DropzoneDirective,\n ImageDirective,\n UploadComponent,\n UploadSelectComponent,\n SdkModule,\n ImageSelectPopComponent,\n TagSelectComponent\n ],\n providers: [\n FileService\n ],\n})\nexport class FilesModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Focus.html":{"url":"interfaces/Focus.html","title":"interface - Focus","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Focus\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/utility/focus/focus.interface.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n focusEvent\n \n \n \n \n \n \n Methods\n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \n \nngAfterViewInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/focus/focus.interface.ts:6\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n focusEvent\n \n \n \n \n focusEvent: EventEmitter\n\n \n \n\n\n \n \n Type : EventEmitter\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { EventEmitter } from '@angular/core';\n\nexport interface Focus {\n focusEvent: EventEmitter;\n\n ngAfterViewInit();\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/FocusDirective.html":{"url":"directives/FocusDirective.html","title":"directive - FocusDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n FocusDirective\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/utility/focus/focus.directive.ts\n \n\n\n \n Implements\n \n \n OnInit\n \n\n\n \n Metadata\n \n \n\n \n Selector\n [ecFocus]\n \n\n \n \n \n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n ecFocus\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(element: ElementRef)\n \n \n \n \n Defined in packages/ui/src/lib/utility/focus/focus.directive.ts:8\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n ecFocus\n \n \n \n Type : EventEmitter\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/focus/focus.directive.ts:8\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/focus/focus.directive.ts:13\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n \n\n\n \n import { Directive, ElementRef, EventEmitter, Input, OnInit } from '@angular/core';\n\n@Directive({\n // tslint:disable-next-line:directive-selector\n selector: '[ecFocus]',\n})\nexport class FocusDirective implements OnInit {\n @Input() ecFocus: EventEmitter;\n\n constructor(private element: ElementRef) {\n }\n\n ngOnInit() {\n this.ecFocus\n .subscribe((event: boolean) => {\n if (event) {\n this.element.nativeElement.focus();\n } else {\n this.element.nativeElement.blur();\n }\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/FormConfig.html":{"url":"interfaces/FormConfig.html","title":"interface - FormConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n FormConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/form/form-config.interface.ts\n \n\n \n Description\n \n \n FormConfig is an extension of ItemConfig. \n\n \n\n \n Extends\n \n \n ItemConfig\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n hideSubmitButton\n \n \n Optional\n submitButtonLabel\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n hideSubmitButton\n \n \n \n \n hideSubmitButton: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no submit button will be rendered. \n\n \n \n \n \n \n \n \n \n \n submitButtonLabel\n \n \n \n \n submitButtonLabel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The label of the submit button \n\n \n \n \n \n \n \n\n\n \n import { ItemConfig } from '../item/item-config.interface';\n\n/** FormConfig is an extension of ItemConfig. */\nexport interface FormConfig extends ItemConfig {\n /** If true, no submit button will be rendered. */\n hideSubmitButton?: boolean;\n /** The label of the submit button */\n submitButtonLabel?: string;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/FormModule.html":{"url":"modules/FormModule.html","title":"module - FormModule","body":"\n \n\n\n\n\n Modules\n FormModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_FormModule\n\n\n\ncluster_FormModule_declarations\n\n\n\ncluster_FormModule_imports\n\n\n\ncluster_FormModule_exports\n\n\n\ncluster_FormModule_providers\n\n\n\n\nDatetimeComponent\n\nDatetimeComponent\n\n\n\nFormModule\n\nFormModule\n\nFormModule -->\n\nDatetimeComponent->FormModule\n\n\n\n\n\nDefaultInputComponent\n\nDefaultInputComponent\n\nFormModule -->\n\nDefaultInputComponent->FormModule\n\n\n\n\n\nDefaultOutputComponent\n\nDefaultOutputComponent\n\nFormModule -->\n\nDefaultOutputComponent->FormModule\n\n\n\n\n\nFormComponent\n\nFormComponent\n\nFormModule -->\n\nFormComponent->FormModule\n\n\n\n\n\nMaxItemsPipe\n\nMaxItemsPipe\n\nFormModule -->\n\nMaxItemsPipe->FormModule\n\n\n\n\n\nToggleComponent\n\nToggleComponent\n\nFormModule -->\n\nToggleComponent->FormModule\n\n\n\n\n\nVisibleFieldsPipe\n\nVisibleFieldsPipe\n\nFormModule -->\n\nVisibleFieldsPipe->FormModule\n\n\n\n\n\nDatetimeComponent \n\nDatetimeComponent \n\nDatetimeComponent -->\n\nFormModule->DatetimeComponent \n\n\n\n\n\nFormComponent \n\nFormComponent \n\nFormComponent -->\n\nFormModule->FormComponent \n\n\n\n\n\nIoModule \n\nIoModule \n\nIoModule -->\n\nFormModule->IoModule \n\n\n\n\n\nMaxItemsPipe \n\nMaxItemsPipe \n\nMaxItemsPipe -->\n\nFormModule->MaxItemsPipe \n\n\n\n\n\nPopModule \n\nPopModule \n\nPopModule -->\n\nFormModule->PopModule \n\n\n\n\n\nToggleComponent \n\nToggleComponent \n\nToggleComponent -->\n\nFormModule->ToggleComponent \n\n\n\n\n\nVisibleFieldsPipe \n\nVisibleFieldsPipe \n\nVisibleFieldsPipe -->\n\nFormModule->VisibleFieldsPipe \n\n\n\n\n\nCalendarModule\n\nCalendarModule\n\nFormModule -->\n\nCalendarModule->FormModule\n\n\n\n\n\nIconModule\n\nIconModule\n\nFormModule -->\n\nIconModule->FormModule\n\n\n\n\n\nIoModule\n\nIoModule\n\nFormModule -->\n\nIoModule->FormModule\n\n\n\n\n\nLoaderModule\n\nLoaderModule\n\nFormModule -->\n\nLoaderModule->FormModule\n\n\n\n\n\nPopModule\n\nPopModule\n\nFormModule -->\n\nPopModule->FormModule\n\n\n\n\n\nSymbolModule\n\nSymbolModule\n\nFormModule -->\n\nSymbolModule->FormModule\n\n\n\n\n\nFormService\n\nFormService\n\nFormModule -->\n\nFormService->FormModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/form/form.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n DatetimeComponent\n \n \n DefaultInputComponent\n \n \n DefaultOutputComponent\n \n \n FormComponent\n \n \n MaxItemsPipe\n \n \n ToggleComponent\n \n \n VisibleFieldsPipe\n \n \n \n \n EntryComponents\n \n \n DefaultInputComponent\n \n \n DefaultOutputComponent\n \n \n \n \n Providers\n \n \n FormService\n \n \n \n \n Imports\n \n \n CalendarModule\n \n \n IconModule\n \n \n IoModule\n \n \n LoaderModule\n \n \n PopModule\n \n \n SymbolModule\n \n \n \n \n Exports\n \n \n DatetimeComponent\n \n \n FormComponent\n \n \n IoModule\n \n \n MaxItemsPipe\n \n \n PopModule\n \n \n ToggleComponent\n \n \n VisibleFieldsPipe\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormComponent } from './form.component';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { PopModule } from '../pop/pop.module';\nimport { FormService } from './form.service';\nimport { VisibleFieldsPipe } from './visible-fields.pipe';\nimport { IoModule } from '../io/io.module';\nimport { DatetimeComponent } from './datetime/datetime.component';\nimport { ToggleComponent } from './toggle/toggle.component';\nimport { LoaderModule } from '../loader/loader.module';\nimport { IconModule } from '../icon/icon.module';\nimport { MaxItemsPipe } from './max-items.pipe';\nimport { SymbolModule } from '../symbol/symbol.module';\nimport { DefaultInputComponent } from './default-input/default-input.component';\nimport { DefaultOutputComponent } from './default-output/default-output.component';\nimport { CalendarModule } from '@ec.components/calendar';\n\nexport const formModuleConfig = {\n entryComponents: [\n DefaultInputComponent,\n DefaultOutputComponent,\n ],\n declarations: [\n FormComponent,\n DatetimeComponent,\n VisibleFieldsPipe,\n MaxItemsPipe,\n ToggleComponent,\n DefaultInputComponent,\n DefaultOutputComponent,\n ],\n imports: [\n CommonModule,\n ReactiveFormsModule,\n PopModule,\n IoModule,\n LoaderModule,\n IconModule,\n SymbolModule,\n CalendarModule\n ],\n exports: [\n ReactiveFormsModule,\n IoModule,\n FormComponent,\n DatetimeComponent,\n PopModule,\n VisibleFieldsPipe,\n MaxItemsPipe,\n ToggleComponent,\n ],\n providers: [\n FormService,\n /* {\n provide: 'moment.format.date',\n useValue: SymbolService.resolve('moment.format.date')\n },\n {\n provide: 'moment.format.time',\n useValue: SymbolService.resolve('moment.format.time')\n },\n {\n provide: 'moment.format.month',\n useValue: SymbolService.resolve('moment.format.month')\n } */\n ]\n};\n\n@NgModule(formModuleConfig)\nexport class FormModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/FormService.html":{"url":"injectables/FormService.html","title":"injectable - FormService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n FormService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/form/form.service.ts\n \n\n \n Description\n \n \n This service is the interface between Angular Forms and ec.components core classes. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n addField\n \n \n getFormLabel\n \n \n Public\n getGroup\n \n \n getValidators\n \n \n Public\n shouldBePartOfForm\n \n \n validateFactory\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(symbol: SymbolService)\n \n \n \n \n Defined in packages/ui/src/lib/form/form.service.ts:16\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n addField\n \n \n \n \n \n \n \n \n addField(field: Field, form: Form, group: FormGroup)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/form.service.ts:48\n \n \n\n\n \n \n adds a new field to a form. handles form group and control \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n field\n \n Field\n \n \n \n No\n \n \n\n \n \n form\n \n Form\n \n \n \n No\n \n \n\n \n \n group\n \n FormGroup\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getFormLabel\n \n \n \n \n \n \n \ngetFormLabel(form: FormComponent, label)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/form.service.ts:83\n \n \n\n\n \n \n Returns label for given form (e.g. Edit label) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n form\n \n FormComponent\n \n \n \n No\n \n \n \n \n\n \n \n label\n \n \n \n \n No\n \n \n \n this.symbol.resolve('resource.generic')\n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n getGroup\n \n \n \n \n \n \n \n \n getGroup(form: Form)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/form.service.ts:35\n \n \n\n\n \n \n Initializes the form group from the form fields\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n form\n \n Form\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getValidators\n \n \n \n \n \n \n \ngetValidators(field: Field)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/form.service.ts:56\n \n \n\n\n \n \n Extracts all validators from a given Field instance. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n field\n \n Field\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : ValidatorFn[]\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n shouldBePartOfForm\n \n \n \n \n \n \n \n \n shouldBePartOfForm(field, form)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/form.service.ts:24\n \n \n\n\n \n \n Returns true if the field should be included in the form.\nDecides based on field config values form, edit and create \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n field\n \n \n No\n \n \n\n \n \n form\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n validateFactory\n \n \n \n \n \n \n \nvalidateFactory(field: Field)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/form.service.ts:68\n \n \n\n\n \n \n Returns a Validation function from the given field (using field.validate) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n field\n \n Field\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : ValidationErrors | null\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/ui/src/lib/form/form.service.ts:19\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Form, Field } from '@ec.components/core';\nimport {\n AbstractControl,\n FormControl,\n FormGroup,\n ValidationErrors,\n ValidatorFn,\n Validators\n} from '@angular/forms';\nimport { SymbolService } from '../symbol/symbol.service';\nimport { FormComponent } from '../form/form.component';\n\n/** This service is the interface between Angular Forms and ec.components core classes. */\n@Injectable()\nexport class FormService {\n\n constructor(\n public symbol: SymbolService\n ) { }\n\n /** Returns true if the field should be included in the form.\n * Decides based on field config values form, edit and create */\n public shouldBePartOfForm(field, form) {\n if (field.create === false && !form.getBody()) {\n return false;\n }\n if (field.edit === false && !!form.getBody()) {\n return false;\n }\n return field.form !== false;\n }\n\n /** Initializes the form group from the form fields*/\n public getGroup(form: Form) {\n const controls = {};\n form.fields.filter((field) => this.shouldBePartOfForm(field, form))\n .forEach((field) => {\n const validators = this.getValidators(field);\n controls[field.property] = new FormControl(form.getValue(field.property), validators);\n // TODO use { updateOn: blur } when updating to angular 5.0.0\n // see https://github.com/angular/angular/commit/333a708bb632d4258ecb5fd4a0e86229fe9d26e4\n });\n return new FormGroup(controls);\n }\n\n /** adds a new field to a form. handles form group and control */\n public addField(field: Field, form: Form, group: FormGroup) {\n console.warn('addField is experimental!');\n const validators = this.getValidators(field);\n const control = new FormControl(form.getValue(field.property), validators);\n group.addControl(field.property, control);\n }\n\n /** Extracts all validators from a given Field instance. */\n getValidators(field: Field): ValidatorFn[] {\n const validators = [];\n if (field.required) {\n validators.push(Validators.required);\n }\n if (field.validate) {\n validators.push(this.validateFactory(field));\n }\n return validators;\n }\n\n /** Returns a Validation function from the given field (using field.validate) */\n validateFactory(field: Field): ValidationErrors | null {\n return (control: AbstractControl) => {\n if (!field.validate) {\n return;\n }\n const error = field.validate(control.value, field);\n if (error) {\n return {\n custom: error\n };\n }\n };\n }\n\n /** Returns label for given form (e.g. Edit label) */\n getFormLabel(form: FormComponent, label = this.symbol.resolve('resource.generic')) {\n if (!form || !form.form) {\n return '';\n }\n return `${this.symbol.resolve('resource.' + (form.form.isEditing() ? 'edit' : 'create'))}\n ${label} ${form.form.display() ? `\"${form.form.display()}\"` : ''}`;\n }\n\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/GeocodeService.html":{"url":"injectables/GeocodeService.html","title":"injectable - GeocodeService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n GeocodeService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/location/src/lib/geocode.service.ts\n \n\n \n Description\n \n \n Wraps google maps api to handle geocode operations \n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n autocompleteAddress\n \n \n geocodeLatLng\n \n \n Public\n getNearestAddress\n \n \n Public\n observeElement\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(mapLoader: MapsAPILoader, ngZone: NgZone)\n \n \n \n \n Defined in packages/location/src/lib/geocode.service.ts:12\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n mapLoader\n \n \n MapsAPILoader\n \n \n \n No\n \n \n \n \n ngZone\n \n \n NgZone\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n autocompleteAddress\n \n \n \n \n \n \n \n \n autocompleteAddress(el)\n \n \n\n\n \n \n Defined in packages/location/src/lib/geocode.service.ts:43\n \n \n\n\n \n \n Turns an input element to an maps autocomplete searchbar. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n el\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n geocodeLatLng\n \n \n \n \n \n \n \ngeocodeLatLng(geocoder, location)\n \n \n\n\n \n \n Defined in packages/location/src/lib/geocode.service.ts:49\n \n \n\n\n \n \n Reverse address lookup for a given location \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n geocoder\n \n \n No\n \n \n\n \n \n location\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n getNearestAddress\n \n \n \n \n \n \n \n \n getNearestAddress(location: literal type)\n \n \n\n\n \n \n Defined in packages/location/src/lib/geocode.service.ts:62\n \n \n\n\n \n \n Returns the nearest address for a given location \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n location\n \n literal type\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n observeElement\n \n \n \n \n \n \n \n \n observeElement(el)\n \n \n\n\n \n \n Defined in packages/location/src/lib/geocode.service.ts:18\n \n \n\n\n \n \n Observes a given input element, transforming it into an autocomplete \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n el\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n \n\n\n \n import { MapsAPILoader } from '@agm/core';\nimport { Injectable, NgZone } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { switchMap } from 'rxjs/operators';\nimport { from } from 'rxjs';\n\n/** declares google namespace */\ndeclare var google: any;\n\n/** Wraps google maps api to handle geocode operations */\n@Injectable()\nexport class GeocodeService {\n\n constructor(private mapLoader: MapsAPILoader,\n private ngZone: NgZone) { }\n\n /** Observes a given input element, transforming it into an autocomplete */\n public observeElement(el) {\n return new Observable(observer => {\n const autocomplete = new google.maps.places.Autocomplete(el, {\n types: ['address']\n });\n autocomplete.addListener('place_changed', () => {\n this.ngZone.run(() => {\n // get the place result\n const place = autocomplete.getPlace();\n // verify result\n if (place.geometry === undefined || place.geometry === null) {\n return;\n }\n const coords = {\n latitude: place.geometry.location.lat(),\n longitude: place.geometry.location.lng()\n };\n observer.next(coords);\n /* observer.complete(); */\n });\n });\n });\n }\n\n /** Turns an input element to an maps autocomplete searchbar. */\n public autocompleteAddress(el): Observable {\n return from(this.mapLoader.load())\n .pipe(switchMap(() => this.observeElement(el)));\n }\n\n /** Reverse address lookup for a given location */\n geocodeLatLng(geocoder, location): Promise {\n return new Promise((resolve, reject) => {\n geocoder.geocode({ location }, (results, status) => {\n if (status === 'OK') {\n resolve(results);\n } else {\n reject(status);\n }\n });\n });\n }\n\n /** Returns the nearest address for a given location */\n public getNearestAddress(location: { latitude: number, longitude: number }): Promise> {\n return this.mapLoader.load().then(() => {\n return this.geocodeLatLng(\n new google.maps.Geocoder, {\n lat: location.latitude,\n lng: location.longitude\n }\n );\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/GroupPipe.html":{"url":"pipes/GroupPipe.html","title":"pipe - GroupPipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n GroupPipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/list/group.pipe.ts\n \n\n \n Description\n \n \n The GroupPipe filters an array of Item instances by a given property value.\nIt is meant to be used to get only the items with the exact same value. \n\n \n\n\n \n Metadata\n \n \n \n Name\n group\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(items: Array>, property: string, value: any)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/group.pipe.ts:10\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n items\n \n Array>\n \n \n \n No\n \n \n\n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n \n\n\n \n import { Pipe, PipeTransform } from '@angular/core';\nimport { Item } from '@ec.components/core';\n\n/** The GroupPipe filters an array of Item instances by a given property value.\n * It is meant to be used to get only the items with the exact same value. */\n@Pipe({\n name: 'group'\n})\nexport class GroupPipe implements PipeTransform {\n transform(items: Array>, property: string, value: any): any {\n if (!property) {\n return items;\n }\n return items.filter((item) => {\n return item.group(property) === value;\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/HistoryService.html":{"url":"injectables/HistoryService.html","title":"injectable - HistoryService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n HistoryService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/sdk/history.service.ts\n \n\n \n Description\n \n \n The HistoryService keeps track of live updates for models entries and datamanagers. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n eventSources\n \n \n Public\n loaderService\n \n \n Public\n notificationService\n \n \n promises\n \n \n Public\n resourceService\n \n \n Public\n router\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n disableUpdates\n \n \n enableUpdates\n \n \n toggle\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(notificationService: NotificationsService, loaderService: LoaderService, router: Router, resourceService: ResourceService)\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:17\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n loaderService\n \n \n LoaderService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n resourceService\n \n \n ResourceService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n disableUpdates\n \n \n \n \n \n \n \ndisableUpdates(key)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:42\n \n \n\n\n \n \n Closes the event stream for the given key \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n key\n \n \n No\n \n \n \n this.router.url.split('?')[0]\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n enableUpdates\n \n \n \n \n \n \n \nenableUpdates(resource: ModelResource | DataManagerResource | EntryResource, relation: string, key)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:52\n \n \n\n\n \n \n Enables Updates for the given resource. The relation is passed through the Update instances on change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n resource\n \n ModelResource | DataManagerResource | EntryResource\n \n \n \n No\n \n \n \n \n\n \n \n relation\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n key\n \n \n \n \n No\n \n \n \n this.router.url.split('?')[0]\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n toggle\n \n \n \n \n \n \n \ntoggle(resource: ModelResource | DataManagerResource | EntryResource, relation: string, key)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:26\n \n \n\n\n \n \n Toggles live updates on the resource and stores them under the given key.\nThe relation is passed through the Update instances on change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n resource\n \n ModelResource | DataManagerResource | EntryResource\n \n \n \n No\n \n \n \n \n\n \n \n relation\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n key\n \n \n \n \n No\n \n \n \n this.router.url.split('?')[0]\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n eventSources\n \n \n \n \n \n \n \n eventSources: literal type\n\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:17\n \n \n\n \n \n EventSources that are active \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n loaderService\n \n \n \n \n \n \n \n loaderService: LoaderService\n\n \n \n \n \n Type : LoaderService\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n notificationService\n \n \n \n \n \n \n \n notificationService: NotificationsService\n\n \n \n \n \n Type : NotificationsService\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:20\n \n \n\n\n \n \n \n \n \n \n \n \n \n promises\n \n \n \n \n \n \n \n promises: literal type\n\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:15\n \n \n\n \n \n Current loaded histories \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n resourceService\n \n \n \n \n \n \n \n resourceService: ResourceService\n\n \n \n \n \n Type : ResourceService\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:23\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n router\n \n \n \n \n \n \n \n router: Router\n\n \n \n \n \n Type : Router\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:22\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport ModelResource from 'ec.sdk/lib/resources/datamanager/ModelResource';\nimport DataManagerResource from 'ec.sdk/lib/resources/datamanager/DataManagerResource';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\nimport { ResourceService } from '../resource-config/resource.service';\nimport { NotificationsService, LoaderService } from '@ec.components/ui';\nimport { Router } from '@angular/router';\nimport DataManager from 'ec.sdk/lib/DataManager';\nimport * as EventSource from 'eventsource/lib/eventsource-polyfill';\n\n/** The HistoryService keeps track of live updates for models entries and datamanagers. */\n@Injectable()\nexport class HistoryService {\n /** Current loaded histories */\n promises: { [relation: string]: Promise } = {};\n /** EventSources that are active */\n eventSources: { [relation: string]: any } = {}; // EventSource[]\n\n constructor(\n public notificationService: NotificationsService,\n public loaderService: LoaderService,\n public router: Router,\n public resourceService: ResourceService) { }\n /** Toggles live updates on the resource and stores them under the given key.\n * The relation is passed through the Update instances on change. */\n toggle(resource: ModelResource | DataManagerResource | EntryResource, relation: string, key = this.router.url.split('?')[0]) {\n if (this.promises[key] && !this.eventSources[relation]) {\n return this.promises[key];\n }\n this.disableUpdates(key);\n this.promises[key] = this.enableUpdates(resource, relation, key)\n .then(source => {\n this.eventSources[key] = source;\n })\n .catch(error => {\n delete this.promises[key];\n });\n this.loaderService.wait(this.promises[key]);\n }\n\n /** Closes the event stream for the given key */\n disableUpdates(key = this.router.url.split('?')[0]) {\n if (this.eventSources[key]) {\n this.eventSources[key].close();\n delete this.promises[key];\n delete this.eventSources[key];\n return;\n }\n }\n\n /** Enables Updates for the given resource. The relation is passed through the Update instances on change. */\n enableUpdates(resource: ModelResource | DataManagerResource | EntryResource, relation: string, key = this.router.url.split('?')[0]) {\n if (!resource || !resource.newHistory) {\n throw new Error('cannot get history: no newHistory method found on given resource');\n }\n if (this.promises[key]) {\n return this.promises[key];\n }\n DataManager.enableHistoryEvents(EventSource);\n const loading = resource.newHistory()\n .then(source => {\n source.addEventListener('entryUpdated', (e) => {\n const data = JSON.parse(e.data);\n this.resourceService.changes.next({\n relation,\n type: 'put',\n identifier: data ? data.entryID : ''\n });\n }, false);\n source.addEventListener('entryCreated', (e) => {\n const data = JSON.parse(e.data);\n this.resourceService.changes.next({\n relation,\n type: 'post',\n identifier: data ? data.entryID : ''\n });\n }, false);\n return source;\n })\n .catch(error => {\n this.notificationService.emit({\n title: 'History Error',\n error\n });\n });\n this.loaderService.wait(loading);\n return loading;\n }\n\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/IconComponent.html":{"url":"components/IconComponent.html","title":"component - IconComponent","body":"\n \n\n\n\n\n\n Components\n IconComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/icon/icon.component.ts\n\n\n \n Description\n \n \n Displays icons by name. If the matching Icon (from registry contains a content, the content is shown.\nIf not, is is expected to be a ec-icon.\nhttps://components.entrecode.de/ui/icons?e=1\n\n \n\n\n \n Implements\n \n \n OnInit\n OnChanges\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-icon\n \n\n\n\n\n \n templateUrl\n ./icon.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n icon\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnChanges\n \n \n ngOnInit\n \n \n resolve\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n name\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(iconService: IconService)\n \n \n \n \n Defined in packages/ui/src/lib/icon/icon.component.ts:19\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n iconService\n \n \n IconService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n name\n \n \n The name of the icon. An Icon with this name is expected to be present in the current iconService registry. \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/icon/icon.component.ts:17\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/icon/icon.component.ts:32\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/icon/icon.component.ts:29\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n resolve\n \n \n \n \n \n \n \nresolve()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/icon/icon.component.ts:23\n \n \n\n\n \n \n The component will resolve the icon from the current iconService registry. A warning is logged if no icon can be found. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n icon\n \n \n \n \n \n \n \n icon: Symbol\n\n \n \n \n \n Type : Symbol\n\n \n \n \n \n Defined in packages/ui/src/lib/icon/icon.component.ts:19\n \n \n\n \n \n The resolved icon (by name) \n\n \n \n\n \n \n\n\n\n\n \n Icon\nOpen Demo\nDisplays an icon:\nThe default icon set uses ec-icons. You have to embedd them to your index.html (or similar):\n Using another icon set\nYou can also use other icons:\nimport { emojiIcons } from '@ec.components/ui/src/icon/emoji-icons';\nexport class SomeModule {\n constructor(public iconService: IconService) {\n this.iconService.use(emojiIcons);\n }\n}Overriding icons\nYou can also override the current icon registry:\nimport { emojiIcons } from '@ec.components/ui/src/icon/emoji-icons';\nexport class SomeModule {\n constructor(public iconService: IconService) {\n this.iconService.set(emojiIcons);\n }\n}This will override the icon registry with the given icons, but keep the rest.\n\n \n\n \n import { Component, OnInit, Input, ChangeDetectionStrategy, OnChanges } from '@angular/core';\nimport { IconService } from './icon.service';\nimport { Symbol } from '../symbol/symbol.interface';\n\n/** Displays icons by name. If the matching Icon (from registry contains a content, the content is shown.\n * If not, is is expected to be a ec-icon.\n * https://components.entrecode.de/ui/icons?e=1\n */\n@Component({\n selector: 'ec-icon',\n templateUrl: './icon.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush\n})\n\nexport class IconComponent implements OnInit, OnChanges {\n /** The name of the icon. An Icon with this name is expected to be present in the current iconService registry. */\n @Input() name: string;\n /** The resolved icon (by name) */\n icon: Symbol;\n constructor(private iconService: IconService) {\n }\n /** The component will resolve the icon from the current iconService registry. A warning is logged if no icon can be found. */\n resolve() {\n this.icon = this.iconService.get(this.name);\n if (!this.icon) {\n console.warn(`Icon ${this.name} cannot be found. Using the following icon registry:`, this.iconService.registry);\n }\n }\n ngOnInit() {\n this.resolve();\n }\n ngOnChanges() {\n this.resolve();\n }\n}\n\n \n\n \n \n{{icon.content}}\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = '{{icon.content}}'\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'IconComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/IconModule.html":{"url":"modules/IconModule.html","title":"module - IconModule","body":"\n \n\n\n\n\n Modules\n IconModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_IconModule\n\n\n\ncluster_IconModule_declarations\n\n\n\ncluster_IconModule_exports\n\n\n\ncluster_IconModule_providers\n\n\n\n\nIconComponent\n\nIconComponent\n\n\n\nIconModule\n\nIconModule\n\nIconModule -->\n\nIconComponent->IconModule\n\n\n\n\n\nIconComponent \n\nIconComponent \n\nIconComponent -->\n\nIconModule->IconComponent \n\n\n\n\n\nIconService\n\nIconService\n\nIconModule -->\n\nIconService->IconModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/icon/icon.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n IconComponent\n \n \n \n \n Providers\n \n \n IconService\n \n \n \n \n Exports\n \n \n IconComponent\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { IconComponent } from './icon.component';\nimport { IconService } from './icon.service';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [IconComponent],\n exports: [IconComponent],\n providers: [IconService],\n})\nexport class IconModule { }\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/IconService.html":{"url":"injectables/IconService.html","title":"injectable - IconService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n IconService\n\n\n\n \n Info\n \n \n Source\n \n \n Examples\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/icon/icon.service.ts\n \n\n \n Description\n \n \n Service to register icons and icon sets. The default set is ec-icons. (Requires including ec-icons)\nhttps://components.entrecode.de/ui/icons?e=1\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n registry\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n registry\n \n \n \n \n \n \n \n registry: Symbol[]\n\n \n \n \n \n Type : Symbol[]\n\n \n \n \n \n Default value : ecIcons\n \n \n \n \n Defined in packages/ui/src/lib/icon/icon.service.ts:11\n \n \n\n \n \n The current icon set that is registered to the service. It will be used to resolve icons from. \n\n \n \n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { ecIcons } from './ec-icons';\nimport { Symbol } from '../symbol/symbol.interface';\nimport { SymbolService } from '../symbol/symbol.service';\n/** Service to register icons and icon sets. The default set is ec-icons. (Requires including ec-icons)\n * https://components.entrecode.de/ui/icons?e=1\n*/\n@Injectable()\nexport class IconService extends SymbolService {\n /** The current icon set that is registered to the service. It will be used to resolve icons from. */\n public registry: Symbol[] = ecIcons;\n}\n\n \n\n \n \n no-iframes\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/ImageDirective.html":{"url":"directives/ImageDirective.html","title":"directive - ImageDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n ImageDirective\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/files/image/image.directive.ts\n \n\n \n Description\n \n \n Loads an public asset image by id to the template. It can be used with img's to auto load the url to the src. \n\n \n\n \n Implements\n \n \n OnChanges\n \n\n\n \n Metadata\n \n \n\n \n Selector\n img [ecImage]\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n sdk\n \n \n url\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n load\n \n \n ngOnChanges\n \n \n setUrl\n \n \n use\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n ecImage\n \n \n size\n \n \n thumb\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, elementRef: ElementRef)\n \n \n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:20\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n ecImage\n \n \n The assetID that should be loaded \n\n \n Type : string | DMAssetResource\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:18\n \n \n \n \n \n \n \n \n \n size\n \n \n The size that should be requested. \n\n \n Default value : 200\n \n \n \n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:16\n \n \n \n \n \n \n \n \n \n thumb\n \n \n If true, the image will be requested as thumb (square) \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:14\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n load\n \n \n \n \n \n \n \nload(id?: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:39\n \n \n\n\n \n \n Calls super.load, then resolves the image url and assigns it to the native element src (only if it is an img) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:27\n \n \n\n\n \n \n Reads ecImage input as assetId and loads if autoload is not false \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n setUrl\n \n \n \n \n \n \n \nsetUrl(url: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:60\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n url\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n use\n \n \n \n \n \n \n \nuse(asset: PublicAssetResource | DMAssetResource)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:43\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n asset\n \n PublicAssetResource | DMAssetResource\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n sdk\n \n \n \n \n \n \n \n sdk: SdkService\n\n \n \n \n \n Type : SdkService\n\n \n \n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:22\n \n \n\n\n \n \n \n \n \n \n \n \n \n url\n \n \n \n \n \n \n \n url: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:20\n \n \n\n \n \n Resolved asset url. \n\n \n \n\n \n \n\n\n\n \n\n \n ecImage\nThis directive can be used to load an image:\n\nID: {{myImage.asset?.assetID}}\n \n\n \n import { Directive, ElementRef, Input, OnChanges } from '@angular/core';\nimport { AssetDirective } from '../asset/asset.directive';\nimport { SdkService } from '../../sdk/sdk.service';\nimport DMAssetResource from 'ec.sdk/lib/resources/publicAPI/DMAssetResource';\nimport PublicAssetResource from 'ec.sdk/lib/resources/publicAPI/PublicAssetResource';\n\n/** Loads an public asset image by id to the template. It can be used with img's to auto load the url to the src. */\n@Directive({\n selector: 'img [ecImage]',\n exportAs: 'ecImage'\n})\nexport class ImageDirective extends AssetDirective implements OnChanges {\n /** If true, the image will be requested as thumb (square) */\n @Input() thumb: boolean;\n /** The size that should be requested. */\n @Input() size = 200;\n /** The assetID that should be loaded */\n @Input() ecImage: string | DMAssetResource;\n /** Resolved asset url. */\n url: string;\n\n constructor(public sdk: SdkService, private elementRef: ElementRef) {\n super(sdk);\n }\n\n /** Reads ecImage input as assetId and loads if autoload is not false */\n ngOnChanges() {\n if (typeof this.ecImage === 'string') {\n this.assetId = this.ecImage;\n } else if (this.ecImage && this.ecImage.assetID) {\n this.use(this.ecImage);\n }\n if (this.autoload !== false && this.assetId) {\n this.load();\n }\n }\n\n /** Calls super.load, then resolves the image url and assigns it to the native element src (only if it is an img) */\n load(id?: string) {\n return super.load(id).then(this.use.bind(this));\n }\n\n use(asset: PublicAssetResource | DMAssetResource) {\n return Promise.resolve().then(() => {\n if (asset.type !== 'image') {\n return Promise.reject(`ecImage only works for assets of type image.\n Loaded id ${asset.id} is of type ${asset.type}`);\n }\n if (asset instanceof DMAssetResource) { // new asset\n return asset.getFileVariant(this.size, this.thumb);\n } else if (asset instanceof PublicAssetResource) { // old asset\n if (this.thumb) {\n return asset.getImageThumbUrl(this.size, '');\n }\n return asset.getImageUrl(this.size, '');\n }\n }).then(this.setUrl.bind(this));\n }\n\n setUrl(url: string) {\n this.url = url;\n this.elementRef.nativeElement.src = this.url;\n }\n\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ImageSelectPopComponent.html":{"url":"components/ImageSelectPopComponent.html","title":"component - ImageSelectPopComponent","body":"\n \n\n\n\n\n\n Components\n ImageSelectPopComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts\n\n\n \n Description\n \n \n This component is a pop with a form to add images. You can set an the alternative Text and the size.\nThe size inputs will keep the image ratio by default. \n\n \n\n \n Extends\n \n \n PopComponent\n \n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-image-select-pop\n \n\n\n\n\n \n templateUrl\n ./image-select-pop.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n Public\n elementRef\n \n \n Public\n fileService\n \n \n imageForm\n \n \n imageLoader\n \n \n Public\n popService\n \n \n Public\n sdk\n \n \n Public\n symbol\n \n \n activated\n \n \n clickEvent\n \n \n Public\n elementRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n Public\n hide\n \n \n isOutside\n \n \n Public\n show\n \n \n Public\n toggle\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n assetGroupID\n \n \n defaultSize\n \n \n active\n \n \n hideOnClickOutside\n \n \n type\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n changed\n \n \n toggle\n \n \n \n \n\n \n \n HostBindings\n \n \n \n \n \n \n class\n \n \n \n \n\n \n \n HostListeners\n \n \n \n \n \n \n document:click\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(popService: PopService, sdk: SdkService, symbol: SymbolService, fileService: FileService, elementRef: ElementRef, cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:26\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n popService\n \n \n PopService\n \n \n \n No\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n fileService\n \n \n FileService\n \n \n \n No\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n assetGroupID\n \n \n The assetGroupID to pick from \n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:16\n \n \n \n \n \n \n \n \n \n defaultSize\n \n \n The default size used \n\n \n Default value : 400\n \n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:18\n \n \n \n \n \n \n \n \n \n active\n \n \n If true, .ec-pop is part of the DOM (*ngIf) + .active is set on .ec-pop-container. \n\n \n Type : boolean\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:29\n \n \n \n \n \n \n \n \n \n hideOnClickOutside\n \n \n If set to true, the pop will hide when a click happens outside the pop. \n\n \n Default value : false\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:35\n \n \n \n \n \n \n \n \n \n type\n \n \n The used type on the host element \n\n \n Type : string\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:33\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n changed\n \n \n Ouput that emits when image changes \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:20\n \n \n \n \n \n \n \n \n \n toggle\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:37\n \n \n \n \n\n \n HostBindings \n \n \n \n \n \n \n class\n \n \n \n \n \n \n \n class: \n\n \n \n \n \n Default value : 'dialog-wrapper'\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:26\n \n \n\n \n \n Set host class to make sure the type is used \n\n \n \n\n \n \n\n\n \n HostListeners \n \n \n \n \n \n \n document:click\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndocument:click($event)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:42\n \n \n\n\n \n \n Listens for document:click and hides \n\n\n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:37\n \n \n\n\n \n \n Inits the form \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n hide\n \n \n \n \n \n \n \n \n hide()\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:90\n \n \n\n\n \n \n Hides the pop. Sets active false and removes pop from popService.stack \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n isOutside\n \n \n \n \n \n \n \nisOutside(element)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:61\n \n \n\n\n \n \n yields true if the given element is outside the pop / or is the wrapper element itself (the backdrop) \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n element\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n show\n \n \n \n \n \n \n \n \n show(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:77\n \n \n\n\n \n \n Shows the pop. Sets active true and adds pop to popService.stack \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n toggle\n \n \n \n \n \n \n \n \n toggle(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:67\n \n \n\n\n \n \n Shows if not active, hides if active. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:32\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n fileService\n \n \n \n \n \n \n \n fileService: FileService\n\n \n \n \n \n Type : FileService\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:31\n \n \n\n\n \n \n \n \n \n \n \n \n \n imageForm\n \n \n \n \n \n \n \n imageForm: FormConfig\n\n \n \n \n \n Type : FormConfig\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:22\n \n \n\n \n \n The instance of the imageForm \n\n \n \n\n \n \n \n \n \n \n \n \n \n imageLoader\n \n \n \n \n \n \n \n imageLoader: LoaderComponent\n\n \n \n \n \n Type : LoaderComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('imageLoader')\n \n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:24\n \n \n\n \n \n The loader that is shown after an image has been selected \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n popService\n \n \n \n \n \n \n \n popService: PopService\n\n \n \n \n \n Type : PopService\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n sdk\n \n \n \n \n \n \n \n sdk: SdkService\n\n \n \n \n \n Type : SdkService\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:30\n \n \n\n\n \n \n \n \n \n \n \n \n \n activated\n \n \n \n \n \n \n \n activated: \n\n \n \n \n \n Default value : false\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:31\n \n \n\n \n \n Flip and stays true after first show \n\n \n \n\n \n \n \n \n \n \n \n \n \n clickEvent\n \n \n \n \n \n \n \n clickEvent: \n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:39\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:55\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectorRef, Component, ElementRef, EventEmitter, HostBinding, Input, OnInit, Output, ViewChild } from '@angular/core';\nimport { FormConfig } from '@ec.components/core';\nimport { FormComponent, LoaderComponent, PopComponent, PopService, SymbolService } from '@ec.components/ui';\nimport { DefaultEntryInputComponent } from '../../entry-form/default-entry-input.component';\nimport { SdkService } from '../../sdk/sdk.service';\nimport { FileService } from '../file.service';\n\n/** This component is a pop with a form to add images. You can set an the alternative Text and the size.\n * The size inputs will keep the image ratio by default. */\n@Component({\n selector: 'ec-image-select-pop',\n templateUrl: './image-select-pop.component.html'\n})\nexport class ImageSelectPopComponent extends PopComponent implements OnInit {\n /** The assetGroupID to pick from */\n @Input() assetGroupID;\n /** The default size used */\n @Input() defaultSize = 400;\n /** Ouput that emits when image changes */\n @Output() changed: EventEmitter = new EventEmitter();\n /** The instance of the imageForm */\n imageForm: FormConfig;\n /** The loader that is shown after an image has been selected */\n @ViewChild('imageLoader') imageLoader: LoaderComponent;\n /** Set host class to make sure the type is used */\n @HostBinding('class') class = 'dialog-wrapper';\n\n constructor(public popService: PopService,\n public sdk: SdkService,\n public symbol: SymbolService,\n public fileService: FileService,\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef) {\n super(popService, elementRef, cdr);\n }\n /** Inits the form */\n ngOnInit() {\n const isOldAssetGroupID = this.fileService.isOldAssetGroupID(this.assetGroupID);\n this.imageForm = {\n submitButtonLabel: this.symbol.resolve('image-select-pop.submitButtonLabel'),\n onSave: (form, value: { img, height, width, alt }) => {\n const size = Math.max(value.width, value.height);\n if (isOldAssetGroupID) {\n this.sdk.api.asset(value.img)\n .then(asset =>\n asset.getImageUrl(size, '')\n ).then(url => {\n this.hide();\n this.changed.emit({ url, alt: value.alt, size });\n });\n } else {\n const loadImage = this.sdk.api.dmAsset(this.assetGroupID, value.img)\n .then(asset =>\n asset.getImageUrl(size)\n ).then(url => {\n this.hide();\n this.changed.emit({ url, alt: value.alt, size });\n });\n this.imageLoader.wait(loadImage);\n }\n },\n fields: {\n img: {\n label: ' ',\n input: DefaultEntryInputComponent,\n inputView: isOldAssetGroupID ? 'asset-select' : 'dmAsset-select',\n relation: !isOldAssetGroupID ? this.assetGroupID : 'legacyAsset',\n required: true,\n changed: (value, form) => {\n const loadImg = Promise.resolve().then(() => {\n if (isOldAssetGroupID) {\n return this.sdk.api.asset(value).then(asset => {\n const original = asset.getOriginalFile();\n const resolution = original.resolution;\n return { resolution, title: asset.title };\n });\n } else {\n return this.sdk.api.dmAsset(this.assetGroupID, value).then(asset => {\n const resolution = asset.file.resolution;\n return { resolution, title: asset.title };\n });\n }\n }).then(({ resolution, title }) => {\n const ratio = resolution.width / resolution.height;\n const width = Math.min(this.defaultSize, resolution.width);\n form.group.controls.width.setValue(width);\n form.group.controls.alt.setValue(title);\n form.group.controls.ratio.setValue(ratio);\n });\n this.imageLoader.wait(loadImg);\n }\n },\n alt: {\n label: this.symbol.resolve('image-select-pop.alt'),\n view: 'string'\n },\n ratio: {\n hideInForm: true,\n view: 'number'\n },\n keepRatio: {\n label: this.symbol.resolve('image-select-pop.keepRatio'),\n view: 'boolean',\n prefill: true,\n changed: (value) => {\n if (value === true) {\n console.log('should fix ratio now...');\n }\n }\n },\n width: {\n label: this.symbol.resolve('image-select-pop.width'),\n view: 'number',\n columns: 6,\n changed: (value, form: FormComponent) => {\n const ratio = form.getValue('ratio');\n if (ratio && form.getValue('keepRatio')) {\n form.group.controls.height.setValue(Math.round(value / ratio));\n }\n }\n },\n height: {\n label: this.symbol.resolve('image-select-pop.height'),\n view: 'number',\n columns: 6,\n changed: (value, form) => {\n const ratio = form.getValue('ratio');\n if (ratio && form.getValue('keepRatio')) {\n form.group.controls.width.setValue(Math.round(value * ratio));\n }\n }\n }\n }\n };\n }\n}\n\n \n\n \n \n \n \n \n \n {{'image-select-pop.header' | symbol}}\n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{\\'image-select-pop.header\\' | symbol}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ImageSelectPopComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/InputComponent.html":{"url":"components/InputComponent.html","title":"component - InputComponent","body":"\n \n\n\n\n\n\n Components\n InputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/io/input/input.component.ts\n\n\n \n Description\n \n \n This directive can be used to display a field. It is used inside ec-form as well as ec-list. \n\n \n\n \n Extends\n \n \n DynamicSlotComponent\n \n\n \n Implements\n \n \n ControlValueAccessor\n OnChanges\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => InputComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-input\n \n\n\n\n\n \n templateUrl\n ../dynamic-slot/dynamic-slot.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n componentInstance\n \n \n propagateChange\n \n \n value\n \n \n Public\n componentFactoryResolver\n \n \n fieldHost\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n connectControl\n \n \n ngOnChanges\n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n writeValue\n \n \n loadComponent\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n component\n \n \n config\n \n \n control\n \n \n debounce\n \n \n field\n \n \n group\n \n \n item\n \n \n property\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n changed\n \n \n \n \n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n component\n \n \n Overrides the default component \n\n \n Type : Type\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:39\n \n \n \n \n \n \n \n \n \n config\n \n \n Config that should be used, only needed when not using field input \n\n \n Type : FieldConfigProperty\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:37\n \n \n \n \n \n \n \n \n \n control\n \n \n The belonging form control. This is not required if you pass in a field and group. \n\n \n Type : AbstractControl\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:25\n \n \n \n \n \n \n \n \n \n debounce\n \n \n Debounce time in ms before the changed event emits. \n\n \n Default value : 0\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:29\n \n \n \n \n \n \n \n \n \n field\n \n \n The instance of field that should be used in the template, can also be a property name. \n\n \n Type : Field\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:31\n \n \n \n \n \n \n \n \n \n group\n \n \n The belonging form group \n\n \n Type : FormGroup\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:23\n \n \n \n \n \n \n \n \n \n item\n \n \n The belonging item \n\n \n Type : Item\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:35\n \n \n \n \n \n \n \n \n \n property\n \n \n The property name that is edited. Expects a form as item input \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:33\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n changed\n \n \n The changed ouput emits whenever the form control of the input changes. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:27\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n connectControl\n \n \n \n \n \n \n \nconnectControl()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:88\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:46\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:113\n \n \n\n\n \n \n Registers change callback \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:118\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: any)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:102\n \n \n\n\n \n \n writes value to editor on outside model change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n loadComponent\n \n \n \n \n \n \n \nloadComponent(component: Type, data: Object)\n \n \n\n\n \n \n Inherited from DynamicSlotComponent\n\n \n \n \n \n Defined in DynamicSlotComponent:18\n \n \n\n\n \n \n Loads the given component inside the fieldHost. Sets current item and field by default. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n component\n \n Type\n \n \n \n No\n \n \n \n \n\n \n \n data\n \n Object\n \n \n \n No\n \n \n \n {}\n \n\n \n \n \n \n \n \n \n Returns : ComponentRef\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n componentInstance\n \n \n \n \n \n \n \n componentInstance: InputComponent\n\n \n \n \n \n Type : InputComponent\n\n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:42\n \n \n\n \n \n Holds a reference to the component instance. This is helpful when you want to modify the component after form intialization.\nYou can access a form's InputComponents via FormComponent#inputs \n\n \n \n\n \n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => {\n }\n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:109\n \n \n\n\n \n \n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n value: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:44\n \n \n\n \n \n The current value of the input. Needs to be saved for the case the component is not yet loaded \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n componentFactoryResolver\n \n \n \n \n \n \n \n componentFactoryResolver: ComponentFactoryResolver\n\n \n \n \n \n Type : ComponentFactoryResolver\n\n \n \n \n \n Inherited from DynamicSlotComponent\n\n \n \n \n \n Defined in DynamicSlotComponent:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n fieldHost\n \n \n \n \n \n \n \n fieldHost: SlotHostDirective\n\n \n \n \n \n Type : SlotHostDirective\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(SlotHostDirective)\n \n \n \n \n \n Inherited from DynamicSlotComponent\n\n \n \n \n \n Defined in DynamicSlotComponent:11\n \n \n\n \n \n The FieldHostDirective will be used to nest custom components into the field \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, forwardRef, Input, OnChanges, Output, Type, ChangeDetectionStrategy } from '@angular/core';\nimport { ControlValueAccessor, FormControl, FormGroup, NG_VALUE_ACCESSOR, AbstractControl } from '@angular/forms';\nimport { FieldConfigProperty, Field, Form, Item } from '@ec.components/core';\nimport { DynamicSlotComponent } from '../dynamic-slot/dynamic-slot.component';\nimport { DefaultInputComponent } from '../../form/default-input/default-input.component';\nimport { debounceTime } from 'rxjs/operators';\n\n/** This directive can be used to display a field. It is used inside ec-form as well as ec-list. */\n@Component({\n selector: 'ec-input',\n templateUrl: '../dynamic-slot/dynamic-slot.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => InputComponent),\n multi: true\n }\n ]\n})\nexport class InputComponent extends DynamicSlotComponent implements ControlValueAccessor, OnChanges {\n /** The belonging form group */\n @Input() group: FormGroup;\n /** The belonging form control. This is not required if you pass in a field and group. */\n @Input() control: AbstractControl;\n /** The changed ouput emits whenever the form control of the input changes. */\n @Output() changed = new EventEmitter();\n /** Debounce time in ms before the changed event emits. */\n @Input() debounce = 0;\n /** The instance of field that should be used in the template, can also be a property name. */\n @Input() field: Field;\n /** The property name that is edited. Expects a form as item input */\n @Input() property: string;\n /** The belonging item */\n @Input() item: Item;\n /** Config that should be used, only needed when not using field input */\n @Input() config: FieldConfigProperty;\n /** Overrides the default component */\n @Input() component: Type;\n /** Holds a reference to the component instance. This is helpful when you want to modify the component after form intialization.\n * You can access a form's InputComponents via FormComponent#inputs */\n componentInstance: InputComponent;\n /** The current value of the input. Needs to be saved for the case the component is not yet loaded */\n value: any;\n\n ngOnChanges() {\n if (this.property && this.item instanceof Form) {\n this.field = this.item.getField(this.property);\n } else if (!this.field && this.config) {\n this.field = new Field(this.property || 'input', this.config);\n }\n if (!this.field) {\n return;\n }\n if (!this.control) {\n this.control = this.group ? this.group.get(this.field.property) : new FormControl();\n }\n if (!this.group) {\n this.group = new FormGroup({\n [this.property || this.field.property || 'input']: this.control\n });\n }\n const data = {\n group: this.group,\n control: this.control || this.group ? this.group.get(this.field.property) : null,\n item: this.item,\n field: this.field,\n input: this\n };\n\n const componentRef = this.loadComponent(this.component || this.field.input || DefaultInputComponent, data);\n this.componentInstance = componentRef.instance;\n this.connectControl();\n if (componentRef.instance.control) {\n componentRef.instance.control.valueChanges\n .pipe(\n debounceTime(this.debounce)\n ).subscribe((change) => {\n this.changed.emit(change);\n this.propagateChange(change);\n });\n }\n if (this.field && typeof this.field.init === 'function') {\n this.field.init(this.componentInstance, this);\n }\n }\n\n connectControl() {\n if (!this.componentInstance) {\n // console.warn('could not connect control: no instance loaded');\n return;\n }\n if (this.componentInstance.registerOnChange && this.propagateChange) {\n this.componentInstance.registerOnChange(this.propagateChange);\n }\n if (this.value !== undefined) {\n this.writeValue(this.value);\n }\n }\n\n /** writes value to editor on outside model change. */\n writeValue(value: any) {\n if (this.componentInstance && this.componentInstance.writeValue) {\n this.componentInstance.writeValue(value);\n }\n this.value = value;\n }\n\n propagateChange = (_: any) => {\n }\n\n /** Registers change callback */\n registerOnChange(fn) {\n this.propagateChange = fn;\n this.connectControl();\n }\n\n registerOnTouched() {\n }\n}\n\n \n\n \n \n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'InputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/InputErrorsComponent.html":{"url":"components/InputErrorsComponent.html","title":"component - InputErrorsComponent","body":"\n \n\n\n\n\n\n Components\n InputErrorsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/io/input-errors/input-errors.component.ts\n\n\n \n Description\n \n \n This component keeps track of a form control's errors and displays them. It is meant to be used beneath a form control. \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-input-errors\n \n\n\n\n\n \n templateUrl\n ./input-errors.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n getErrors\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n control\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(symbol: SymbolService)\n \n \n \n \n Defined in packages/ui/src/lib/io/input-errors/input-errors.component.ts:12\n \n \n\n \n \n Imported error messages. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n control\n \n \n The form control that should be tracked \n\n \n Type : FormControl\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input-errors/input-errors.component.ts:12\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n getErrors\n \n \n \n \n \n \n \n \n getErrors()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/input-errors/input-errors.component.ts:18\n \n \n\n\n \n \n This method will iterate over the control errors and generate objects for the template. \n\n\n \n Returns : any\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/ui/src/lib/io/input-errors/input-errors.component.ts:14\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Input } from '@angular/core';\nimport { FormControl } from '@angular/forms';\nimport { SymbolService } from '../../symbol/symbol.service';\n\n/** This component keeps track of a form control's errors and displays them. It is meant to be used beneath a form control. */\n@Component({\n selector: 'ec-input-errors',\n templateUrl: './input-errors.component.html',\n})\nexport class InputErrorsComponent {\n /** The form control that should be tracked */\n @Input() control: FormControl;\n /** Imported error messages. */\n constructor(public symbol: SymbolService) {\n }\n\n /** This method will iterate over the control errors and generate objects for the template. */\n public getErrors() {\n return Object.keys(this.control.errors).reduce((errs, key) => {\n let message;\n if (key === 'custom') {\n message = this.control.errors[key];\n } else {\n message = this.symbol.resolve('error.input.' + key) || this.symbol.resolve('error.input.invalid');\n }\n errs.push({\n key: key,\n error: this.control.errors[key],\n message\n });\n return errs;\n }, []);\n }\n\n}\n\n \n\n \n \n {{error.message}}\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{error.message}}'\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'InputErrorsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/IoModule.html":{"url":"modules/IoModule.html","title":"module - IoModule","body":"\n \n\n\n\n\n Modules\n IoModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_IoModule\n\n\n\ncluster_IoModule_declarations\n\n\n\ncluster_IoModule_exports\n\n\n\n\nDynamicRackComponent\n\nDynamicRackComponent\n\n\n\nIoModule\n\nIoModule\n\nIoModule -->\n\nDynamicRackComponent->IoModule\n\n\n\n\n\nDynamicSlotComponent\n\nDynamicSlotComponent\n\nIoModule -->\n\nDynamicSlotComponent->IoModule\n\n\n\n\n\nInputComponent\n\nInputComponent\n\nIoModule -->\n\nInputComponent->IoModule\n\n\n\n\n\nInputErrorsComponent\n\nInputErrorsComponent\n\nIoModule -->\n\nInputErrorsComponent->IoModule\n\n\n\n\n\nOutputComponent\n\nOutputComponent\n\nIoModule -->\n\nOutputComponent->IoModule\n\n\n\n\n\nSlotHostDirective\n\nSlotHostDirective\n\nIoModule -->\n\nSlotHostDirective->IoModule\n\n\n\n\n\nDynamicRackComponent \n\nDynamicRackComponent \n\nDynamicRackComponent -->\n\nIoModule->DynamicRackComponent \n\n\n\n\n\nDynamicSlotComponent \n\nDynamicSlotComponent \n\nDynamicSlotComponent -->\n\nIoModule->DynamicSlotComponent \n\n\n\n\n\nInputComponent \n\nInputComponent \n\nInputComponent -->\n\nIoModule->InputComponent \n\n\n\n\n\nInputErrorsComponent \n\nInputErrorsComponent \n\nInputErrorsComponent -->\n\nIoModule->InputErrorsComponent \n\n\n\n\n\nOutputComponent \n\nOutputComponent \n\nOutputComponent -->\n\nIoModule->OutputComponent \n\n\n\n\n\nSlotHostDirective \n\nSlotHostDirective \n\nSlotHostDirective -->\n\nIoModule->SlotHostDirective \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/io/io.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n DynamicRackComponent\n \n \n DynamicSlotComponent\n \n \n InputComponent\n \n \n InputErrorsComponent\n \n \n OutputComponent\n \n \n SlotHostDirective\n \n \n \n \n EntryComponents\n \n \n InputComponent\n \n \n InputErrorsComponent\n \n \n OutputComponent\n \n \n \n \n Exports\n \n \n DynamicRackComponent\n \n \n DynamicSlotComponent\n \n \n InputComponent\n \n \n InputErrorsComponent\n \n \n OutputComponent\n \n \n SlotHostDirective\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { DynamicSlotComponent } from './dynamic-slot/dynamic-slot.component';\nimport { SlotHostDirective } from './slot-host.directive';\nimport { OutputComponent } from './output/output.component';\nimport { InputComponent } from './input/input.component';\nimport { InputErrorsComponent } from './input-errors/input-errors.component';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { DynamicRackComponent } from './dynamic-rack/dynamic-rack.component';\n\n@NgModule({\n entryComponents: [\n InputComponent,\n OutputComponent,\n InputErrorsComponent,\n ],\n declarations: [\n InputErrorsComponent,\n SlotHostDirective,\n DynamicSlotComponent,\n DynamicRackComponent,\n InputComponent,\n OutputComponent,\n ],\n imports: [\n CommonModule,\n ReactiveFormsModule,\n ],\n exports: [\n SlotHostDirective,\n DynamicSlotComponent,\n DynamicRackComponent,\n InputComponent,\n OutputComponent,\n InputErrorsComponent,\n ReactiveFormsModule,\n ],\n providers: []\n})\nexport class IoModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ItemConfig.html":{"url":"interfaces/ItemConfig.html","title":"interface - ItemConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n ItemConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/item/item-config.interface.ts\n \n\n \n Description\n \n \n An ItemConfig describes an abstract entity with certain properties.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n classes\n \n \n Optional\n fields\n \n \n Optional\n identifier\n \n \n Optional\n identifierPattern\n \n \n Optional\n label\n \n \n Optional\n onEdit\n \n \n Optional\n onSave\n \n \n Optional\n parent\n \n \n Optional\n resolve\n \n \n Optional\n title\n \n \n Optional\n type\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n classes\n \n \n \n \n classes: function\n\n \n \n\n\n \n \n Type : function\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n This method can be used to set custom classes based on item contents. Used e.g. in list-items for row class \n\n \n \n \n \n \n \n \n \n \n fields\n \n \n \n \n fields: FieldConfig\n\n \n \n\n\n \n \n Type : FieldConfig\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The Items field Config \n\n \n \n \n \n \n \n \n \n \n identifier\n \n \n \n \n identifier: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The Property that is used to identify items from another (e.g. in a selection). \n\n \n \n \n \n \n \n \n \n \n identifierPattern\n \n \n \n \n identifierPattern: RegExp\n\n \n \n\n\n \n \n Type : RegExp\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Pattern of the identifier field. Is used e.g. in the searchbar \n\n \n \n \n \n \n \n \n \n \n label\n \n \n \n \n label: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The Property that is used to display the item for humans \n\n \n \n \n \n \n \n \n \n \n onEdit\n \n \n \n \n onEdit: function\n\n \n \n\n\n \n \n Type : function\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Callback that is invoked before the item is edited \n\n \n \n \n \n \n \n \n \n \n onSave\n \n \n \n \n onSave: function\n\n \n \n\n\n \n \n Type : function\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Callback that is invoked when the item is saved \n\n \n \n \n \n \n \n \n \n \n parent\n \n \n \n \n parent: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Contains the parent Instance which inhabits the item. This property is set programmatically and therefore meant to be readonly.\n\n \n \n \n \n \n \n \n \n \n resolve\n \n \n \n \n resolve: function\n\n \n \n\n\n \n \n Type : function\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Custom resolve path function. It can be used e.g. to access subbranches of an Object. \n\n \n \n \n \n \n \n \n \n \n title\n \n \n \n \n title: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n For primitive values only: the title for the item \n\n \n \n \n \n \n \n \n \n \n type\n \n \n \n \n type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The type of the Item. It determines how it will be displayed in different contexts \n\n \n \n \n \n \n \n\n\n \n import { Item } from './item';\nimport { FieldConfig } from '../config/field-config.interface';\n\n/** An ItemConfig describes an abstract entity with certain properties.*/\nexport interface ItemConfig {\n /** For primitive values only: the title for the item */\n title?: string;\n /** The Property that is used to identify items from another (e.g. in a selection). */\n identifier?: string;\n /** Pattern of the identifier field. Is used e.g. in the searchbar */\n identifierPattern?: RegExp;\n /** The Property that is used to display the item for humans */\n label?: string;\n /** The Items field Config */\n fields?: FieldConfig;\n /** The type of the Item. It determines how it will be displayed in different contexts */\n type?: string;\n /** Custom resolve path function. It can be used e.g. to access subbranches of an Object. */\n resolve?: (body: T) => any;\n /** Contains the parent Instance which inhabits the item. This property is set programmatically and therefore meant to be readonly.*/\n parent?: any;\n /** Callback that is invoked when the item is saved */\n onSave?: (item?: Item, value?: Object) => Promise | T; // TODO rename to save\n /** Callback that is invoked before the item is edited */\n onEdit?: (value?: T) => Promise | T; // TODO rename to save\n /** This method can be used to set custom classes based on item contents. Used e.g. in list-items for row class */\n classes?: (item?: Item) => string;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ListComponent.html":{"url":"components/ListComponent.html","title":"component - ListComponent","body":"\n \n\n\n\n\n\n Components\n ListComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/list/list.component.ts\n\n\n \n Description\n \n \n The ListComponent will render a list containing the given items or collection.\nhttps://components.entrecode.de/ui/list/basic?e=1\nhttps://components.entrecode.de/ui/list/transforms?e=1\n\n \n\n\n \n Implements\n \n \n OnChanges\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n \n encapsulation\n ViewEncapsulation.None\n \n\n\n\n\n\n\n\n\n\n \n selector\n ec-list\n \n\n\n\n \n template\n listTemplate\n \n\n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n config\n \n \n focusItem\n \n \n isLoading\n \n \n Public\n listConfig\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n columnClick\n \n \n filter\n \n \n focusFirst\n \n \n focusNext\n \n \n focusPrev\n \n \n init\n \n \n ngOnChanges\n \n \n selectIndex\n \n \n showHeader\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n autoFocusFirst\n \n \n collection\n \n \n config\n \n \n items\n \n \n list\n \n \n pagination\n \n \n paginationConfig\n \n \n selection\n \n \n solo\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n changed\n \n \n columnClicked\n \n \n selected\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(listConfig: ListConfigService, cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:56\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n listConfig\n \n \n ListConfigService\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n autoFocusFirst\n \n \n If true, the first item in the list will always be focused after changed \n\n \n Default value : false\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:52\n \n \n \n \n \n \n \n \n \n collection\n \n \n The used collection \n\n \n Type : Collection\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:36\n \n \n \n \n \n \n \n \n \n config\n \n \n \n Type : ListConfig\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:32\n \n \n \n \n \n \n \n \n \n items\n \n \n The visible items \n\n \n Type : Array\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:34\n \n \n \n \n \n \n \n \n \n list\n \n \n The Instance of the List \n\n \n Type : List\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:46\n \n \n \n \n \n \n \n \n \n pagination\n \n \n Pagination that should be used \n\n \n Type : Pagination\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:48\n \n \n \n \n \n \n \n \n \n paginationConfig\n \n \n Custom PaginationConfig \n\n \n Type : PaginationConfig\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:50\n \n \n \n \n \n \n \n \n \n selection\n \n \n The used selection \n\n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:38\n \n \n \n \n \n \n \n \n \n solo\n \n \n If true, only one item is selectable next \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:40\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n changed\n \n \n emits after the list changed \n\n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:56\n \n \n \n \n \n \n \n \n \n columnClicked\n \n \n Event emitter on item selection \n\n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:42\n \n \n \n \n \n \n \n \n \n selected\n \n \n Event emitter on selection change \n\n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:44\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n columnClick\n \n \n \n \n \n \n \ncolumnClick(item)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:102\n \n \n\n\n \n \n Column click handler. Triggers select.emit(item) with fallback to selection.toggle\n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n filter\n \n \n \n \n \n \n \nfilter(property, value)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:155\n \n \n\n\n \n \n Filters the list \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n property\n \n \n No\n \n \n\n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n focusFirst\n \n \n \n \n \n \n \nfocusFirst()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:123\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n focusNext\n \n \n \n \n \n \n \nfocusNext()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:129\n \n \n\n\n \n \n Selects the next item \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n focusPrev\n \n \n \n \n \n \n \nfocusPrev()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:142\n \n \n\n\n \n \n Selects the previous item \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \n \ninit(list: List)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:75\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n list\n \n List\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges(changes?)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:66\n \n \n\n\n \n \n Changing items or collection will trigger reconstructing the list with the new items.\nChanging the selection will reconstruct the selection \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n changes\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n selectIndex\n \n \n \n \n \n \n \nselectIndex(index: number)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:116\n \n \n\n\n \n \n Selects the item with the given index \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n index\n \n number\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n showHeader\n \n \n \n \n \n \n \nshowHeader()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:110\n \n \n\n\n \n \n Decides if the header should be visible or not \n\n\n \n Returns : any\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:60\n \n \n\n\n \n \n \n \n \n \n \n \n \n config\n \n \n \n \n \n \n \n config: ListConfig\n\n \n \n \n \n Type : ListConfig\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:27\n \n \n\n \n \n The current list config \n\n \n \n\n \n \n \n \n \n \n \n \n \n focusItem\n \n \n \n \n \n \n \n focusItem: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:54\n \n \n\n \n \n Current focus \n\n \n \n\n \n \n \n \n \n \n \n \n \n isLoading\n \n \n \n \n \n \n \n isLoading: \n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:30\n \n \n\n \n \n Config input for List \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n listConfig\n \n \n \n \n \n \n \n listConfig: ListConfigService\n\n \n \n \n \n Type : ListConfigService\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:59\n \n \n\n\n \n \n\n\n\n\n \n List\nThe List is one of the main components to work with.\nThe basic idea is to display collections of data in a structured but flexible way.\nYou can create a new List like this:\nthis.trees = new List(\n//first argument: Array of Objects\n[{\n name: 'Appletree',\n height: 10,\n fruits: true\n}, {\n name: 'Lemontree',\n height: 8,\n fruits: true\n}, {\n name: 'Birch',\n height: 20,\n fruits: false\n}],\n//second (optional) argument: ListConfig\n{\n fields: {\n name: {\n label: 'Name'\n },\n height: {\n label: 'Height',\n group: (h) => h > 10 ? 'Higher than 10m' : 'Lower than 10m'\n },\n fruits: {\n label: 'Has Fruits?',\n display: (value) => value ? 'yes' : 'no'\n },\n }\n})This is how you display a List instance into your template:\n\n \n\n \n import {\n Component, EventEmitter, Input, OnChanges, Output, ViewEncapsulation,\n ChangeDetectionStrategy, ChangeDetectorRef\n} from '@angular/core';\nimport { Collection, List, ListConfig, Selection, Pagination } from '@ec.components/core';\nimport { Item } from '@ec.components/core';\nimport { PaginationConfig } from './pagination/pagination-config.interface';\nimport { ListConfigService } from './list-config.service';\n\nimport { listTemplate } from './list.component.html';\n\n/**\n * The ListComponent will render a list containing the given items or collection.\n *\n * https://components.entrecode.de/ui/list/basic?e=1\n * https://components.entrecode.de/ui/list/transforms?e=1\n * */\n@Component({\n selector: 'ec-list',\n /* templateUrl: './list.component.html', */\n template: listTemplate,\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class ListComponent implements OnChanges {\n /** The current list config */\n config: ListConfig = {};\n /** Config input for List */\n /** Flag that flips true when loading. */\n isLoading = false;\n // tslint:disable-next-line:no-input-rename\n @Input('config') configInput: ListConfig;\n /** The visible items */\n @Input() items: Array;\n /** The used collection */\n @Input() collection: Collection;\n /** The used selection */\n @Input() selection: Selection;\n /** If true, only one item is selectable next */\n @Input() solo: boolean;\n /** Event emitter on item selection */\n @Output() columnClicked: EventEmitter> = new EventEmitter();\n /** Event emitter on selection change */\n @Output() selected: EventEmitter> = new EventEmitter();\n /** The Instance of the List */\n @Input() list: List;\n /** Pagination that should be used */\n @Input() pagination: Pagination;\n /** Custom PaginationConfig */\n @Input() paginationConfig: PaginationConfig;\n /** If true, the first item in the list will always be focused after changed */\n @Input() autoFocusFirst = false;\n /** Current focus */\n focusItem: Item;\n /** emits after the list changed */\n @Output() changed: EventEmitter> = new EventEmitter();\n\n constructor(\n public listConfig: ListConfigService,\n public cdr: ChangeDetectorRef\n ) {\n }\n\n /** Changing items or collection will trigger reconstructing the list with the new items.\n * Changing the selection will reconstruct the selection */\n ngOnChanges(changes?) {\n this.config = Object.assign(this.config || {}, this.configInput || {});\n if (this.items) {\n this.init(new List(this.items, this.config, this.pagination));\n } else if (this.collection) {\n this.init(new List(this.collection.items, this.config, this.pagination));\n }\n }\n\n init(list: List) {\n if (!list) {\n console.warn('tried to init list.component with undefined list');\n return;\n }\n this.list = list;\n this.listConfig.applyConfig(this.list);\n this.list.change$.subscribe(() => {\n if (this.autoFocusFirst || this.list.isFiltered()) {\n this.focusFirst();\n } else {\n delete this.focusItem;\n }\n this.cdr.markForCheck();\n this.changed.emit(this.list);\n });\n if (!this.selection) {\n this.selection = new Selection([], this.list.config);\n }\n if (this.selection) {\n this.selection.update$.subscribe((selection: Selection) => {\n this.selected.emit(selection);\n });\n }\n }\n\n /** Column click handler. Triggers select.emit(item) with fallback to selection.toggle*/\n columnClick(item) {\n if (this.list.config.selectMode && this.selection) {\n this.selection.toggle(item, this.solo);\n } else if (this.columnClicked.observers.length) {\n return this.columnClicked.emit(item);\n }\n }\n /** Decides if the header should be visible or not */\n showHeader() {\n return this.list && this.list.config && !this.list.config.disableHeader && (this.list.fields.length || this.list.config.title);\n /* && (this.list.config.alwaysShowHeader || !this.list.isEmpty()); */\n }\n\n /** Selects the item with the given index */\n selectIndex(index: number) {\n if (!this.selection || this.list.isEmpty() || !this.list.items[index]) {\n return;\n }\n this.selection.select(this.list.items[index]);\n }\n\n focusFirst() {\n delete this.focusItem;\n this.focusNext();\n }\n\n /** Selects the next item */\n focusNext() {\n if (!this.list) {\n return;\n }\n let index = 0;\n if (this.focusItem) {\n index = this.list.page.indexOf(this.focusItem) + 1;\n }\n this.focusItem = this.list.page[index % this.list.page.length];\n this.cdr.markForCheck();\n }\n\n /** Selects the previous item */\n focusPrev() {\n if (!this.list) {\n return;\n }\n let index = this.list.page.length - 1;\n if (this.focusItem) {\n index = this.list.page.indexOf(this.focusItem) + this.list.page.length - 1;\n }\n this.focusItem = this.list.page[index % this.list.page.length];\n this.cdr.markForCheck();\n }\n\n /** Filters the list */\n filter(property, value) {\n this.list.filter(property, value);\n }\n}\n\n \n\n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'listTemplate'\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ListComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ListConfig.html":{"url":"interfaces/ListConfig.html","title":"interface - ListConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n ListConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/list/list-config.interface.ts\n \n\n \n Description\n \n \n Configuration for List Classes.\n\n \n\n \n Extends\n \n \n ItemConfig\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n alwaysShowHeader\n \n \n Optional\n autoload\n \n \n Optional\n availableSizes\n \n \n Optional\n desc\n \n \n Optional\n disableColumnFilter\n \n \n Optional\n disableDrag\n \n \n Optional\n disableHeader\n \n \n Optional\n disableSearchbar\n \n \n Optional\n display\n \n \n Optional\n filter\n \n \n Optional\n hidePagination\n \n \n Optional\n maxColumns\n \n \n Optional\n page\n \n \n Optional\n popColumns\n \n \n Optional\n query\n \n \n Optional\n selectMode\n \n \n Optional\n size\n \n \n Optional\n solo\n \n \n Optional\n sort\n \n \n Optional\n sortBy\n \n \n Optional\n storageKey\n \n \n Optional\n title\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n alwaysShowHeader\n \n \n \n \n alwaysShowHeader: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the header will also be shown when the list is empty. Defaults to false \n\n \n \n \n \n \n \n \n \n \n autoload\n \n \n \n \n autoload: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the list will automatically load on change \n\n \n \n \n \n \n \n \n \n \n availableSizes\n \n \n \n \n availableSizes: number[]\n\n \n \n\n\n \n \n Type : number[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The available sizes. If not set, the size cannot be changed \n\n \n \n \n \n \n \n \n \n \n desc\n \n \n \n \n desc: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If set to true, the sorting will be descending \n\n \n \n \n \n \n \n \n \n \n disableColumnFilter\n \n \n \n \n disableColumnFilter: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no column filter will be shown in the list header \n\n \n \n \n \n \n \n \n \n \n disableDrag\n \n \n \n \n disableDrag: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, select items cannot be dragged \n\n \n \n \n \n \n \n \n \n \n disableHeader\n \n \n \n \n disableHeader: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the list will have no header. \n\n \n \n \n \n \n \n \n \n \n disableSearchbar\n \n \n \n \n disableSearchbar: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no select dropdown will be shown on ec-select \n\n \n \n \n \n \n \n \n \n \n display\n \n \n \n \n display: function\n\n \n \n\n\n \n \n Type : function\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Transforms the Items before they are displayed, e.g. to apply a filter for the view *\n\n \n \n \n \n \n \n \n \n \n filter\n \n \n \n \n filter: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n tells the list to show only items that match the filter \n\n \n \n \n \n \n \n \n \n \n hidePagination\n \n \n \n \n hidePagination: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the default pagination will not be visible. \n\n \n \n \n \n \n \n \n \n \n maxColumns\n \n \n \n \n maxColumns: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Maximal visible columns. Defaults to 8 \n\n \n \n \n \n \n \n \n \n \n page\n \n \n \n \n page: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The current active page \n\n \n \n \n \n \n \n \n \n \n popColumns\n \n \n \n \n popColumns: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n how many columns should the pop have? \n\n \n \n \n \n \n \n \n \n \n query\n \n \n \n \n query: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n a query that will be turned in to a filter \n\n \n \n \n \n \n \n \n \n \n selectMode\n \n \n \n \n selectMode: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the list will show its checkboxes and will select on column click.\nThe columnClicked output will be ignored as long selectMode is active \n\n \n \n \n \n \n \n \n \n \n size\n \n \n \n \n size: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The number of items per page \n\n \n \n \n \n \n \n \n \n \n solo\n \n \n \n \n solo: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Should the selection be solo? \n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n sort: string[]\n\n \n \n\n\n \n \n Type : string[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Array of properties that is sorted after, experimental... \n\n \n \n \n \n \n \n \n \n \n sortBy\n \n \n \n \n sortBy: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The property name that is sorted after \n\n \n \n \n \n \n \n \n \n \n storageKey\n \n \n \n \n storageKey: string | \n\n \n \n\n\n \n \n Type : string | \n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The key that should store the lists config in the local storage.\nIf set, the key will be populated on config changes. \n\n \n \n \n \n \n \n \n \n \n title\n \n \n \n \n title: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n For lists with primitive values only: the title of the list header \n\n \n \n \n \n \n \n\n\n \n import { ItemConfig } from '../item/item-config.interface';\nimport { List } from '../list/list';\nimport { Item } from '../item/item';\n\n/**\n * Configuration for List Classes.\n * */\nexport interface ListConfig extends ItemConfig {\n /** For lists with primitive values only: the title of the list header */\n title?: string;\n /** The property name that is sorted after */\n sortBy?: string;\n /** Array of properties that is sorted after, experimental... */\n sort?: string[];\n /** If set to true, the sorting will be descending */\n desc?: boolean;\n /** If true, the list will show its checkboxes and will select on column click.\n * The columnClicked output will be ignored as long selectMode is active */\n selectMode?: boolean;\n /** If true, no select dropdown will be shown on ec-select */\n disableSearchbar?: boolean;\n /** If true, the list will have no header. */\n disableHeader?: boolean;\n /** If true, the header will also be shown when the list is empty. Defaults to false */\n alwaysShowHeader?: boolean;\n /** If true, no column filter will be shown in the list header */\n disableColumnFilter?: boolean;\n /** If true, select items cannot be dragged */\n disableDrag?: boolean;\n /** If true, the default pagination will not be visible. */\n hidePagination?: boolean;\n /** The current active page */\n page?: number;\n /** The number of items per page */\n size?: number;\n /** The available sizes. If not set, the size cannot be changed */\n availableSizes?: number[];\n /** Should the selection be solo? */\n solo?: boolean;\n /** tells the list to show only items that match the filter */\n filter?: { [key: string]: any };\n /** a query that will be turned in to a filter */\n query?: { [key: string]: any };\n /** Maximal visible columns. Defaults to 8 */\n maxColumns?: number;\n /** how many columns should the pop have? */\n popColumns?: number;\n /** If true, the list will automatically load on change */\n autoload?: boolean;\n /** The key that should store the lists config in the local storage.\n * If set, the key will be populated on config changes. */\n storageKey?: string | ((list: List) => string);\n /** Transforms the Items before they are displayed, e.g. to apply a filter for the view **/\n display?: (items: Item[]) => Item[];\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ListConfigService.html":{"url":"injectables/ListConfigService.html","title":"injectable - ListConfigService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n ListConfigService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/list/list-config.service.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n storageKeyResolver\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n applyConfig\n \n \n getStorageKey\n \n \n retrieve\n \n \n set\n \n \n store\n \n \n storeConfig\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n applyConfig\n \n \n \n \n \n \n \napplyConfig(list: List)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:44\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n list\n \n List\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getStorageKey\n \n \n \n \n \n \n \ngetStorageKey(list: List)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:23\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n list\n \n List\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n retrieve\n \n \n \n \n \n \n \nretrieve(key)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:9\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n key\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \n \nset(key, value)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:14\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n key\n \n \n No\n \n \n\n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n store\n \n \n \n \n \n \n \nstore(key, config)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:18\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n key\n \n \n No\n \n \n\n \n \n config\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n storeConfig\n \n \n \n \n \n \n \nstoreConfig(list: List)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:35\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n list\n \n List\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n storageKeyResolver\n \n \n \n \n \n \n \n storageKeyResolver: function\n\n \n \n \n \n Type : function\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:7\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { List } from '@ec.components/core';\n\n@Injectable()\nexport class ListConfigService {\n\n public storageKeyResolver: (list: List) => string;\n\n retrieve(key) {\n const config = localStorage.getItem(key);\n return config ? JSON.parse(config) : null;\n }\n\n set(key, value) {\n localStorage.setItem(key, JSON.stringify(value));\n }\n\n store(key, config) {\n const existing = this.retrieve(key) || {};\n localStorage.setItem(key, JSON.stringify(Object.assign(existing, config)));\n }\n\n getStorageKey(list: List) {\n if (!list || !list.fields || !list.config || !list.config.storageKey) {\n // console.log('cannot apply config: no storage key or list set');\n return;\n }\n const resolveFn = list.config.storageKey || this.storageKeyResolver;\n if (typeof resolveFn === 'function') {\n return resolveFn(list);\n }\n return list.config.storageKey;\n }\n\n storeConfig(list: List) {\n const key = this.getStorageKey(list);\n if (!key) {\n return;\n }\n const config = { hide: list.fields.filter(f => f.hideInList).map(f => f.property) };\n this.store(key, config);\n }\n\n applyConfig(list: List) {\n const key = this.getStorageKey(list);\n if (!key) {\n return;\n }\n const existing = this.retrieve(key);\n if (existing && existing.hide) {\n list.fields.forEach(field => field.hideInList = false);\n existing.hide.forEach(property => {\n const field = list.fields.find(f => f.property === property);\n if (!field) {\n console.warn('field ', property, ' not found');\n return;\n }\n field.hideInList = true;\n });\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ListHeaderComponent.html":{"url":"components/ListHeaderComponent.html","title":"component - ListHeaderComponent","body":"\n \n\n\n\n\n\n Components\n ListHeaderComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/list/list-header/list-header.component.ts\n\n\n \n Description\n \n \n This component renders, as the name states, the header of a list.\n\n \n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-list-header\n \n\n\n\n\n \n templateUrl\n ./list-header.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n filter\n \n \n Public\n listConfig\n \n \n pops\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n applyFilter\n \n \n Public\n editFilter\n \n \n Public\n fieldLabel\n \n \n Public\n removeFilter\n \n \n Public\n toggleVisibility\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n list\n \n \n selection\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(listConfig: ListConfigService)\n \n \n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:23\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n listConfig\n \n \n ListConfigService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n list\n \n \n The list instance \n\n \n Type : List\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:17\n \n \n \n \n \n \n \n \n \n selection\n \n \n The selection instance. This is optional. If It is not provided, no checkbox will be visible.\n\n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:19\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n applyFilter\n \n \n \n \n \n \n \n \n applyFilter(property, value)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:34\n \n \n\n\n \n \n Applies the given filter to the list. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n property\n \n \n No\n \n \n\n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n editFilter\n \n \n \n \n \n \n \n \n editFilter(pop)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:29\n \n \n\n\n \n \n opens the given filter pop and closes all others \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n pop\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n fieldLabel\n \n \n \n \n \n \n \n \n fieldLabel(field: Field)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:44\n \n \n\n\n \n \n Returns the fields label \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n field\n \n Field\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n removeFilter\n \n \n \n \n \n \n \n \n removeFilter(property, control)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:39\n \n \n\n\n \n \n Resets the fields filter \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n property\n \n \n No\n \n \n\n \n \n control\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n toggleVisibility\n \n \n \n \n \n \n \n \n toggleVisibility(field: Field)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:52\n \n \n\n\n \n \n Toggles the fields visibility in the list \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n field\n \n Field\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n filter\n \n \n \n \n \n \n \n filter: FormComponent\n\n \n \n \n \n Type : FormComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('filterForm')\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:23\n \n \n\n \n \n The form that holds the current filter information \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n listConfig\n \n \n \n \n \n \n \n listConfig: ListConfigService\n\n \n \n \n \n Type : ListConfigService\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n pops\n \n \n \n \n \n \n \n pops: QueryList\n\n \n \n \n \n Type : QueryList\n\n \n \n \n \n Decorators : \n \n \n @ViewChildren('filterPop')\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:21\n \n \n\n \n \n The pop dropdowns that contain the filtering \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, Input, QueryList, ViewChild, ViewChildren, ChangeDetectionStrategy } from '@angular/core';\nimport { PopComponent } from '../../pop/pop.component';\nimport { FormComponent } from '../../form/form.component';\nimport { List } from '@ec.components/core';\nimport { Selection } from '@ec.components/core';\nimport { Field } from '@ec.components/core';\nimport { ListConfigService } from '../list-config.service';\n\n/** This component renders, as the name states, the header of a list.*/\n@Component({\n selector: 'ec-list-header',\n templateUrl: './list-header.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class ListHeaderComponent {\n /** The list instance */\n @Input() list: List;\n /** The selection instance. This is optional. If It is not provided, no checkbox will be visible.*/\n @Input() selection: Selection;\n /** The pop dropdowns that contain the filtering */\n @ViewChildren('filterPop') pops: QueryList;\n /** The form that holds the current filter information */\n @ViewChild('filterForm') filter: FormComponent;\n\n constructor(public listConfig: ListConfigService) {\n }\n\n /** opens the given filter pop and closes all others */\n public editFilter(pop) {\n pop.toggle();\n }\n\n /** Applies the given filter to the list. */\n public applyFilter(property, value) {\n this.list.filter(property, value);\n }\n\n /** Resets the fields filter */\n public removeFilter(property, control) {\n control.reset();\n }\n\n /** Returns the fields label */\n public fieldLabel(field: Field) {\n if (field.label === false) {\n return '';\n }\n return field.label || field.property;\n }\n\n /** Toggles the fields visibility in the list */\n public toggleVisibility(field: Field) {\n this.list.toggleVisibility(field);\n this.listConfig.storeConfig(this.list);\n }\n}\n\n \n\n \n \n \n \n \n \n\n \n \n \n\n \n {{fieldLabel(field)}}\n \n \n\n \n \n \n ×\n \n \n\n \n ☰\n \n \n \n \n {{fieldLabel(field)}}\n \n \n \n \n \n\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{fieldLabel(field)}} × ☰ {{fieldLabel(field)}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ListHeaderComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ListItemsComponent.html":{"url":"components/ListItemsComponent.html","title":"component - ListItemsComponent","body":"\n \n\n\n\n\n\n Components\n ListItemsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/list/list-items/list-items.component.ts\n\n\n \n Description\n \n \n The ListItemsComponent displays the actual list, without all peripherals (header, pagination etc.).\nIt can either be given an Array of Items or just the list parent to control the shown items. \n\n \n\n\n \n Implements\n \n \n OnChanges\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-list-items\n \n\n\n\n\n \n templateUrl\n ./list-items.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n columnClick\n \n \n hasFocus\n \n \n isClickable\n \n \n ngOnChanges\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n focusItem\n \n \n items\n \n \n list\n \n \n selection\n \n \n solo\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n columnClicked\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:24\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n focusItem\n \n \n The current focused item \n\n \n Type : Item\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:22\n \n \n \n \n \n \n \n \n \n items\n \n \n An Optional Array of Item's that should be displayed. If none are provded, the list Items are used.\n\n \n Type : Item[]\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:18\n \n \n \n \n \n \n \n \n \n list\n \n \n The list instance \n\n \n Type : List\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:14\n \n \n \n \n \n \n \n \n \n selection\n \n \n The selection instance. This is optional. If It is not provided, no checkbox will be visible.\n\n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:16\n \n \n \n \n \n \n \n \n \n solo\n \n \n If true, only one item is selectable next \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:20\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n columnClicked\n \n \n Event emitter on item clicked \n\n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:24\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n columnClick\n \n \n \n \n \n \n \ncolumnClick(item: Item, e: Event)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:54\n \n \n\n\n \n \n Propagate clicked item to host or toggle selection. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n item\n \n Item\n \n \n \n No\n \n \n\n \n \n e\n \n Event\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n hasFocus\n \n \n \n \n \n \n \nhasFocus(item)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:45\n \n \n\n\n \n \n yields true if the item is focussed \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isClickable\n \n \n \n \n \n \n \nisClickable()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:49\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:29\n \n \n\n\n \n \n Checks for host and uses its list. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:27\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Input, Output, EventEmitter, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';\nimport { Item, List, Selection } from '@ec.components/core';\nimport { OnChanges } from '@angular/core/src/metadata/lifecycle_hooks';\n\n/** The ListItemsComponent displays the actual list, without all peripherals (header, pagination etc.).\n * It can either be given an Array of Items or just the list parent to control the shown items. */\n@Component({\n selector: 'ec-list-items',\n templateUrl: './list-items.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class ListItemsComponent implements OnChanges {\n /** The list instance */\n @Input() list: List;\n /** The selection instance. This is optional. If It is not provided, no checkbox will be visible.*/\n @Input() selection: Selection;\n /** An Optional Array of Item's that should be displayed. If none are provded, the list Items are used.*/\n @Input() items: Item[];\n /** If true, only one item is selectable next */\n @Input() solo: boolean;\n /** The current focused item */\n @Input() focusItem: Item;\n /** Event emitter on item clicked */\n @Output() columnClicked: EventEmitter> = new EventEmitter();\n\n\n constructor(public cdr: ChangeDetectorRef) { }\n /** Checks for host and uses its list. */\n ngOnChanges() {\n if (!this.items && this.list) {\n this.items = this.list.page;\n }\n if (this.list) {\n this.list.change$.subscribe(newList => {\n this.cdr.markForCheck();\n });\n }\n if (this.selection) {\n this.selection.update$.subscribe(newList => {\n this.cdr.markForCheck();\n });\n }\n }\n /** yields true if the item is focussed */\n hasFocus(item) {\n return this.focusItem === item;\n }\n\n isClickable() {\n return this.columnClicked.observers.length || (this.selection && this.list && this.list.config.selectMode);\n }\n\n /** Propagate clicked item to host or toggle selection. */\n columnClick(item: Item, e: Event) {\n e.stopPropagation();\n e.stopImmediatePropagation();\n if (this.selection && this.list && this.list.config.selectMode) {\n this.selection.toggle(item, this.solo);\n } else if (this.columnClicked.observers.length) {\n this.columnClicked.emit(item);\n }\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ListItemsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/ListModule.html":{"url":"modules/ListModule.html","title":"module - ListModule","body":"\n \n\n\n\n\n Modules\n ListModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_ListModule\n\n\n\ncluster_ListModule_declarations\n\n\n\ncluster_ListModule_imports\n\n\n\ncluster_ListModule_exports\n\n\n\ncluster_ListModule_providers\n\n\n\n\nGroupPipe\n\nGroupPipe\n\n\n\nListModule\n\nListModule\n\nListModule -->\n\nGroupPipe->ListModule\n\n\n\n\n\nListComponent\n\nListComponent\n\nListModule -->\n\nListComponent->ListModule\n\n\n\n\n\nListHeaderComponent\n\nListHeaderComponent\n\nListModule -->\n\nListHeaderComponent->ListModule\n\n\n\n\n\nListItemsComponent\n\nListItemsComponent\n\nListModule -->\n\nListItemsComponent->ListModule\n\n\n\n\n\nPaginationComponent\n\nPaginationComponent\n\nListModule -->\n\nPaginationComponent->ListModule\n\n\n\n\n\nSearchbarComponent\n\nSearchbarComponent\n\nListModule -->\n\nSearchbarComponent->ListModule\n\n\n\n\n\nFormModule \n\nFormModule \n\nFormModule -->\n\nListModule->FormModule \n\n\n\n\n\nGroupPipe \n\nGroupPipe \n\nGroupPipe -->\n\nListModule->GroupPipe \n\n\n\n\n\nListComponent \n\nListComponent \n\nListComponent -->\n\nListModule->ListComponent \n\n\n\n\n\nListHeaderComponent \n\nListHeaderComponent \n\nListHeaderComponent -->\n\nListModule->ListHeaderComponent \n\n\n\n\n\nListItemsComponent \n\nListItemsComponent \n\nListItemsComponent -->\n\nListModule->ListItemsComponent \n\n\n\n\n\nPaginationComponent \n\nPaginationComponent \n\nPaginationComponent -->\n\nListModule->PaginationComponent \n\n\n\n\n\nSearchbarComponent \n\nSearchbarComponent \n\nSearchbarComponent -->\n\nListModule->SearchbarComponent \n\n\n\n\n\nFormModule\n\nFormModule\n\nListModule -->\n\nFormModule->ListModule\n\n\n\n\n\nIconModule\n\nIconModule\n\nListModule -->\n\nIconModule->ListModule\n\n\n\n\n\nSymbolModule\n\nSymbolModule\n\nListModule -->\n\nSymbolModule->ListModule\n\n\n\n\n\nUtilityModule\n\nUtilityModule\n\nListModule -->\n\nUtilityModule->ListModule\n\n\n\n\n\nListConfigService\n\nListConfigService\n\nListModule -->\n\nListConfigService->ListModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/list/list.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n GroupPipe\n \n \n ListComponent\n \n \n ListHeaderComponent\n \n \n ListItemsComponent\n \n \n PaginationComponent\n \n \n SearchbarComponent\n \n \n \n \n Providers\n \n \n ListConfigService\n \n \n \n \n Imports\n \n \n FormModule\n \n \n IconModule\n \n \n SymbolModule\n \n \n UtilityModule\n \n \n \n \n Exports\n \n \n FormModule\n \n \n GroupPipe\n \n \n ListComponent\n \n \n ListHeaderComponent\n \n \n ListItemsComponent\n \n \n PaginationComponent\n \n \n SearchbarComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormModule } from '../form/form.module';\nimport { IconModule } from '../icon/icon.module';\nimport { SymbolModule } from '../symbol/symbol.module';\nimport { UtilityModule } from '../utility/utility.module';\nimport { GroupPipe } from './group.pipe';\nimport { ListHeaderComponent } from './list-header/list-header.component';\nimport { ListItemsComponent } from './list-items/list-items.component';\nimport { ListComponent } from './list.component';\nimport { PaginationComponent } from './pagination/pagination.component';\nimport { SearchbarComponent } from './searchbar/searchbar.component';\nimport { ListConfigService } from './list-config.service';\nimport { FormsModule } from '@angular/forms';\n\nexport const listModuleConfig = {\n declarations: [\n ListComponent,\n ListItemsComponent,\n ListHeaderComponent,\n PaginationComponent,\n SearchbarComponent,\n GroupPipe,\n ],\n imports: [\n CommonModule,\n FormsModule,\n FormModule,\n IconModule,\n SymbolModule,\n UtilityModule\n ],\n exports: [\n ListComponent,\n ListItemsComponent,\n ListHeaderComponent,\n PaginationComponent,\n SearchbarComponent,\n GroupPipe,\n FormModule,\n ],\n providers: [\n ListConfigService\n ]\n};\n\n@NgModule(listModuleConfig)\nexport class ListModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LoaderComponent.html":{"url":"components/LoaderComponent.html","title":"component - LoaderComponent","body":"\n \n\n\n\n\n\n Components\n LoaderComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/loader/loader.component.ts\n\n\n \n Description\n \n \n The ec-loader can be plugged into various components to be triggered when they load stuff.\nhttps://components.entrecode.de/ui/loader?e=1\n\n \n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-loader\n \n\n\n\n\n \n templateUrl\n ./loader.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n stack\n \n \n Private\n timestamp\n \n \n Private\n visible\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Private\n hide\n \n \n Private\n show\n \n \n wait\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(host: ElementRef)\n \n \n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:18\n \n \n\n \n \n Injects the host element. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n host\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Private\n hide\n \n \n \n \n \n \n \n \n hide()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:31\n \n \n\n\n \n \n Hide the loader by removing .visible from the host. This method is NOT meant to be used from outside, \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Private\n show\n \n \n \n \n \n \n \n \n show()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:25\n \n \n\n\n \n \n Shows the loader by setting .visible to the host. This method is NOT meant to be used from outside, \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n wait\n \n \n \n \n \n \n \nwait(promise: Promise)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:38\n \n \n\n\n \n \n Tells loader to show until the given promise resolves. (includes all other promises that are waited upon)\nMake sure the given promise is catched (so the loader will stop loading on error)! \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n promise\n \n Promise\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n stack\n \n \n \n \n \n \n \n stack: Collection>\n\n \n \n \n \n Type : Collection>\n\n \n \n \n \n Default value : new Collection([])\n \n \n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:14\n \n \n\n \n \n The current stack of loading promises.\n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n timestamp\n \n \n \n \n \n \n \n timestamp: \n\n \n \n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:18\n \n \n\n \n \n The timestamp of the last time a promise has been added to the stack. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n visible\n \n \n \n \n \n \n \n visible: \n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:16\n \n \n\n \n \n The loader's visibility status. \n\n \n \n\n \n \n\n\n\n\n \n Loader\nThe loader can be used to indicate any kind of loading activity\nTemplate\n\n\nGlobal Loader\nLocal LoaderThe default classes can be found here.\nUsage\nYou can use a global loader that handles every action or use multiple local loaders:\nimport { LoaderComponent, LoaderService } from '@ec.components/ui';\nexport class MyApp {\n @ViewChild('globalLoader') globalLoader: LoaderComponent;\n @ViewChild('localLoader') localLoader: LoaderComponent;\n constructor(private loaderService: LoaderService) {\n this.loaderService.use(this.globalLoader); // set global loader\n }\n globalLoader() { // When not passing a loader to .wait, the global loader (set by .use) is used.\n this.loaderService.wait(new Promise((resolve) => setTimeout(resolve, 2000)));\n }\n localLoader() {\n this.loaderService.wait(new Promise((resolve) => setTimeout(resolve, 2000)), this.localLoader);\n // this.localLoader.wait(new Promise((resolve) => setTimeout(resolve, 2000))); // alternative way\n }\n}The advantage of local loaders is that you can place them in specific places of your template to only \"disable\" a part of your site while loading and not the whole page.\nSee the commented out line in localLoader for a direct way to trigger a loader without the service.\nHow it works\nEach time .wait is called on the LoaderService, the target loader throws the given promise on a stack. When all promises on the stack have been resolved, the loader is hidden. This is better than just a boolean switch because multiple loading activies do not interfere with each other.\n\n \n\n \n import { Component, ElementRef, ChangeDetectionStrategy } from '@angular/core';\nimport { Collection } from '@ec.components/core';\n\n/** The ec-loader can be plugged into various components to be triggered when they load stuff.\n * https://components.entrecode.de/ui/loader?e=1\n*/\n@Component({\n selector: 'ec-loader',\n templateUrl: './loader.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class LoaderComponent {\n /** The current stack of loading promises.*/\n private stack: Collection> = new Collection([]);\n /** The loader's visibility status. */\n private visible = false;\n /** The timestamp of the last time a promise has been added to the stack. */\n private timestamp;\n\n /** Injects the host element. */\n constructor(private host: ElementRef) {\n }\n\n /** Shows the loader by setting .visible to the host. This method is NOT meant to be used from outside, */\n private show() {\n this.visible = true; // show loader\n this.host.nativeElement.classList.add('is-active');\n }\n\n /** Hide the loader by removing .visible from the host. This method is NOT meant to be used from outside, */\n private hide() {\n this.visible = false; // show loader\n this.host.nativeElement.classList.remove('is-active');\n }\n\n /** Tells loader to show until the given promise resolves. (includes all other promises that are waited upon)\n * Make sure the given promise is catched (so the loader will stop loading on error)! */\n wait(promise: Promise) {\n this.stack.add(promise); // add promise to stack\n this.show();\n const timestamp = Date.now();\n this.timestamp = timestamp; // get timestamp\n Promise.all(this.stack.items)\n .then(() => {\n if (timestamp === this.timestamp) {\n this.hide();\n this.stack.removeAll();\n }\n });\n return promise;\n }\n}\n\n \n\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'LoaderComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/LoaderModule.html":{"url":"modules/LoaderModule.html","title":"module - LoaderModule","body":"\n \n\n\n\n\n Modules\n LoaderModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_LoaderModule\n\n\n\ncluster_LoaderModule_declarations\n\n\n\ncluster_LoaderModule_exports\n\n\n\ncluster_LoaderModule_providers\n\n\n\n\nLoaderComponent\n\nLoaderComponent\n\n\n\nLoaderModule\n\nLoaderModule\n\nLoaderModule -->\n\nLoaderComponent->LoaderModule\n\n\n\n\n\nLoaderComponent \n\nLoaderComponent \n\nLoaderComponent -->\n\nLoaderModule->LoaderComponent \n\n\n\n\n\nLoaderService\n\nLoaderService\n\nLoaderModule -->\n\nLoaderService->LoaderModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/loader/loader.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n LoaderComponent\n \n \n \n \n Providers\n \n \n LoaderService\n \n \n \n \n Exports\n \n \n LoaderComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { LoaderComponent } from './loader.component';\nimport { LoaderService } from './loader.service';\n\n@NgModule({\n declarations: [\n LoaderComponent,\n ],\n imports: [\n CommonModule,\n ],\n exports: [\n LoaderComponent,\n ],\n providers: [LoaderService]\n})\nexport class LoaderModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LoaderService.html":{"url":"injectables/LoaderService.html","title":"injectable - LoaderService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n LoaderService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/loader/loader.service.ts\n \n\n \n Description\n \n \n The loader service registers promises \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n loader\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n use\n \n \n wait\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n use\n \n \n \n \n \n \n \nuse(loader: LoaderComponent)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/loader/loader.service.ts:11\n \n \n\n\n \n \n Sets a global loader that can be triggered without having the reference. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n loader\n \n LoaderComponent\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n wait\n \n \n \n \n \n \n \nwait(promise: Promise, loader: LoaderComponent)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/loader/loader.service.ts:16\n \n \n\n\n \n \n Tells the given loader to wait for the given promise. If no loader is given, the global loader is used (if set)\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n promise\n \n Promise\n \n \n \n No\n \n \n \n \n\n \n \n loader\n \n LoaderComponent\n \n \n \n No\n \n \n \n this.loader\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: LoaderComponent\n\n \n \n \n \n Type : LoaderComponent\n\n \n \n \n \n Defined in packages/ui/src/lib/loader/loader.service.ts:8\n \n \n\n \n \n The global loader that should be used if not loader is passed to wait. \n\n \n \n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { LoaderComponent } from './loader.component';\n\n/** The loader service registers promises */\n@Injectable()\nexport class LoaderService {\n /** The global loader that should be used if not loader is passed to wait. */\n loader: LoaderComponent;\n\n /** Sets a global loader that can be triggered without having the reference. */\n use(loader: LoaderComponent) {\n this.loader = loader;\n }\n\n /** Tells the given loader to wait for the given promise. If no loader is given, the global loader is used (if set)*/\n wait(promise: Promise, loader: LoaderComponent = this.loader) {\n if (!loader || !promise) {\n console.warn('cannot trigger loader: no promise or loader given');\n return;\n }\n return loader.wait(promise);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LocationMapComponent.html":{"url":"components/LocationMapComponent.html","title":"component - LocationMapComponent","body":"\n \n\n\n\n\n\n Components\n LocationMapComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/location/src/lib/location-map.component.ts\n\n\n \n Description\n \n \n Shows Google Maps Map \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-location-map\n \n\n \n styleUrls\n ./location-map.component.scss\n \n\n\n\n \n templateUrl\n ./location-map.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n markerDragEnd\n \n \n setValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n center\n \n \n readOnly\n \n \n value\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n changed\n \n \n \n \n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n center\n \n \n The desired map center \n\n \n Type : literal type\n\n \n \n Default value : { latitude: 48.8093253, longitude: 9.159388100000001 }\n \n \n \n \n \n Defined in packages/location/src/lib/location-map.component.ts:12\n \n \n \n \n \n \n \n \n \n readOnly\n \n \n If true, no markers can be changed or set \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/location/src/lib/location-map.component.ts:14\n \n \n \n \n \n \n \n \n \n value\n \n \n Form input component \n\n \n Type : literal type\n\n \n \n \n \n \n Defined in packages/location/src/lib/location-map.component.ts:18\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n changed\n \n \n Emits when the marker has been changed \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/location/src/lib/location-map.component.ts:16\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n markerDragEnd\n \n \n \n \n \n \n \nmarkerDragEnd(coords)\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-map.component.ts:31\n \n \n\n\n \n \n changes value on marker dragend \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n coords\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setValue\n \n \n \n \n \n \n \nsetValue(value)\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-map.component.ts:24\n \n \n\n\n \n \n sets the value cand changes the center \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n import { Component, EventEmitter, Input, Output } from '@angular/core';\n\n/** Shows Google Maps Map */\n@Component({\n selector: 'ec-location-map',\n templateUrl: './location-map.component.html',\n styleUrls: ['./location-map.component.scss']\n})\n\nexport class LocationMapComponent {\n /** The desired map center */\n @Input() center: { longitude: any; latitude: any; } = { latitude: 48.8093253, longitude: 9.159388100000001 };\n /** If true, no markers can be changed or set */\n @Input() readOnly: boolean;\n /** Emits when the marker has been changed */\n @Output() changed: EventEmitter = new EventEmitter();\n /** Form input component */\n @Input() value: {\n longitude: number,\n latitude: number\n };\n\n /** sets the value cand changes the center */\n setValue(value) {\n this.value = value;\n if (value) {\n this.center = value;\n }\n }\n /** changes value on marker dragend */\n markerDragEnd(coords) {\n if (!coords) {\n console.warn('no coords');\n return;\n }\n const position = { longitude: coords.lng, latitude: coords.lat };\n this.setValue(position);\n this.changed.emit(position);\n }\n}\n\n \n\n \n \n \n\n \n\n \n \n ./location-map.component.scss\n \n :host {\n height: 300px;\n}\nagm-map {\n height: 300px;\n}\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'LocationMapComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/LocationModule.html":{"url":"modules/LocationModule.html","title":"module - LocationModule","body":"\n \n\n\n\n\n Modules\n LocationModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_LocationModule\n\n\n\ncluster_LocationModule_declarations\n\n\n\ncluster_LocationModule_imports\n\n\n\ncluster_LocationModule_exports\n\n\n\ncluster_LocationModule_providers\n\n\n\n\nLocationMapComponent\n\nLocationMapComponent\n\n\n\nLocationModule\n\nLocationModule\n\nLocationModule -->\n\nLocationMapComponent->LocationModule\n\n\n\n\n\nLocationPickerComponent\n\nLocationPickerComponent\n\nLocationModule -->\n\nLocationPickerComponent->LocationModule\n\n\n\n\n\nLocationSearchComponent\n\nLocationSearchComponent\n\nLocationModule -->\n\nLocationSearchComponent->LocationModule\n\n\n\n\n\nLocationMapComponent \n\nLocationMapComponent \n\nLocationMapComponent -->\n\nLocationModule->LocationMapComponent \n\n\n\n\n\nLocationPickerComponent \n\nLocationPickerComponent \n\nLocationPickerComponent -->\n\nLocationModule->LocationPickerComponent \n\n\n\n\n\nLocationSearchComponent \n\nLocationSearchComponent \n\nLocationSearchComponent -->\n\nLocationModule->LocationSearchComponent \n\n\n\n\n\nUiModule\n\nUiModule\n\nLocationModule -->\n\nUiModule->LocationModule\n\n\n\n\n\nGeocodeService\n\nGeocodeService\n\nLocationModule -->\n\nGeocodeService->LocationModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/location/src/lib/location.module.ts\n \n\n\n \n Description\n \n \n This module holds all location/map related components and services \n\n \n\n\n \n \n \n Declarations\n \n \n LocationMapComponent\n \n \n LocationPickerComponent\n \n \n LocationSearchComponent\n \n \n \n \n EntryComponents\n \n \n LOCATION_COMPONENTS\n \n \n \n \n Providers\n \n \n GeocodeService\n \n \n \n \n Imports\n \n \n UiModule\n \n \n \n \n Exports\n \n \n LocationMapComponent\n \n \n LocationPickerComponent\n \n \n LocationSearchComponent\n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n forRoot\n \n \n \n \n \n \n \n \n forRoot(undefined)\n \n \n\n\n \n \n Defined in packages/location/src/lib/location.module.ts:34\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { AgmCoreModule } from '@agm/core';\nimport { CommonModule } from '@angular/common';\nimport { NgModule, ModuleWithProviders } from '@angular/core';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { UiModule } from '@ec.components/ui';\nimport { GeocodeService } from './geocode.service';\nimport { LocationMapComponent } from './location-map.component';\nimport { LocationPickerComponent } from './location-picker.component';\nimport { LocationSearchComponent } from './location-search.component';\n/** The components of this module */\nconst LOCATION_COMPONENTS = [\n LocationMapComponent,\n LocationSearchComponent,\n LocationPickerComponent,\n];\n\nexport const locationModuleConfig = {\n imports: [\n CommonModule,\n ReactiveFormsModule,\n UiModule,\n AgmCoreModule.forRoot({\n apiKey: 'AIzaSyAdgEUE1Yxo1F-qb1MrO56u5KATpX9j8o4',\n libraries: ['places']\n })],\n exports: LOCATION_COMPONENTS,\n declarations: LOCATION_COMPONENTS,\n entryComponents: LOCATION_COMPONENTS,\n providers: [GeocodeService],\n};\n/** This module holds all location/map related components and services */\n@NgModule(locationModuleConfig)\nexport class LocationModule {\n static forRoot({ apiKey }): ModuleWithProviders {\n return {\n ngModule: LocationModule,\n providers: [\n {\n provide: 'googlemaps.apiKey',\n useValue: apiKey\n }\n ]\n };\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LocationPickerComponent.html":{"url":"components/LocationPickerComponent.html","title":"component - LocationPickerComponent","body":"\n \n\n\n\n\n\n Components\n LocationPickerComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/location/src/lib/location-picker.component.ts\n\n\n \n Description\n \n \n Component with map and autocomplete input to pick a location. Implements ControlValueAccessor \n\n \n\n \n Extends\n \n \n DefaultInputComponent\n \n\n \n Implements\n \n \n ControlValueAccessor\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => LocationPickerComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-location-picker\n \n\n \n styleUrls\n ./location-picker.component.scss\n \n\n\n\n \n templateUrl\n ./location-picker.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n geocodeService\n \n \n input\n \n \n map\n \n \n propagateChange\n \n \n search\n \n \n Public\n control\n \n \n Public\n field\n \n \n Public\n group\n \n \n Public\n item\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n setValue\n \n \n updateAddress\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n formControl\n \n \n placeholder\n \n \n showRawValue\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(geocodeService: GeocodeService)\n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:34\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n geocodeService\n \n \n GeocodeService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n formControl\n \n \n The form control that holds the location \n\n \n Type : FormControl\n\n \n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:24\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n Placeholder for search input \n\n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:28\n \n \n \n \n \n \n \n \n \n showRawValue\n \n \n If true, the raw location value will be visible\n\n \n Default value : true\n \n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:26\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-picker.component.ts:79\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-picker.component.ts:83\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n setValue\n \n \n \n \n \n \n \nsetValue(value, fromSearch?: boolean)\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-picker.component.ts:43\n \n \n\n\n \n \n Sets value of map and propagates change \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n \n \n \n No\n \n \n\n \n \n fromSearch\n \n boolean\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateAddress\n \n \n \n \n \n \n \nupdateAddress()\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-picker.component.ts:61\n \n \n\n\n \n \n updates the address string by reverse geo lookup \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: any)\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-picker.component.ts:55\n \n \n\n\n \n \n Writes value to editor on outside model change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n geocodeService\n \n \n \n \n \n \n \n geocodeService: GeocodeService\n\n \n \n \n \n Type : GeocodeService\n\n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n \n input\n \n \n \n \n \n \n \n input: InputComponent\n\n \n \n \n \n Type : InputComponent\n\n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:34\n \n \n\n \n \n Form input component \n\n \n \n\n \n \n \n \n \n \n \n \n \n map\n \n \n \n \n \n \n \n map: LocationMapComponent\n\n \n \n \n \n Type : LocationMapComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LocationMapComponent)\n \n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:30\n \n \n\n \n \n The nested LocationMapComponent \n\n \n \n\n \n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => { }\n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:77\n \n \n\n\n \n \n \n \n \n \n \n \n \n search\n \n \n \n \n \n \n \n search: LocationSearchComponent\n\n \n \n \n \n Type : LocationSearchComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LocationSearchComponent)\n \n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:32\n \n \n\n \n \n The nested LocationSearchComponent \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n control\n \n \n \n \n \n \n \n control: FormControl\n\n \n \n \n \n Type : FormControl\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:17\n \n \n\n \n \n The form control that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:11\n \n \n\n \n \n The field for which the input is meant. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n group\n \n \n \n \n \n \n \n group: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:15\n \n \n\n \n \n The form group that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:13\n \n \n\n \n \n The item that is targeted by the input \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, Input, ViewChild, forwardRef } from '@angular/core';\nimport { ControlValueAccessor, FormControl, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { DefaultInputComponent, InputComponent } from '@ec.components/ui';\nimport { GeocodeService } from './geocode.service';\nimport { LocationMapComponent } from './location-map.component';\nimport { LocationSearchComponent } from './location-search.component';\n\n/** Component with map and autocomplete input to pick a location. Implements ControlValueAccessor */\n@Component({\n selector: 'ec-location-picker',\n templateUrl: './location-picker.component.html',\n styleUrls: ['./location-picker.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => LocationPickerComponent),\n multi: true\n }\n ]\n})\n\nexport class LocationPickerComponent extends DefaultInputComponent implements ControlValueAccessor {\n /** The form control that holds the location */\n @Input() formControl: FormControl;\n /** If true, the raw location value will be visible*/\n @Input() showRawValue = true;\n /** Placeholder for search input */\n @Input() placeholder;\n /** The nested LocationMapComponent */\n @ViewChild(LocationMapComponent) map: LocationMapComponent;\n /** The nested LocationSearchComponent */\n @ViewChild(LocationSearchComponent) search: LocationSearchComponent;\n /** Form input component */\n input: InputComponent;\n\n constructor(\n public geocodeService: GeocodeService,\n ) {\n super();\n }\n\n /** Sets value of map and propagates change */\n setValue(value, fromSearch?: boolean) {\n if (!value) {\n this.search.clear();\n }\n this.map.setValue(value);\n if (!fromSearch) {\n this.updateAddress();\n }\n this.propagateChange(value);\n }\n\n /** Writes value to editor on outside model change. */\n writeValue(value: any) {\n this.map.setValue(value);\n this.updateAddress();\n }\n\n /** updates the address string by reverse geo lookup */\n updateAddress() {\n const value = this.map.value;\n if (!value) {\n this.search.searchInput.nativeElement.value = '';\n return;\n }\n this.geocodeService.getNearestAddress(value)\n .then(results => {\n if (results.length) {\n this.search.searchInput.nativeElement.value = results[0].formatted_address;\n } else {\n this.search.searchInput.nativeElement.value = '';\n }\n });\n }\n\n propagateChange = (_: any) => { };\n\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n\n registerOnTouched() { }\n}\n\n \n\n \n \n\n\n \n\n{{map.value | json}}\n \n\n \n \n ./location-picker.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{map.value | json}}'\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'LocationPickerComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LocationSearchComponent.html":{"url":"components/LocationSearchComponent.html","title":"component - LocationSearchComponent","body":"\n \n\n\n\n\n\n Components\n LocationSearchComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/location/src/lib/location-search.component.ts\n\n\n \n Description\n \n \n Google Maps Location Searchbar \n\n \n\n\n \n Implements\n \n \n AfterViewInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-location-search\n \n\n\n\n\n \n templateUrl\n ./location-search.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n searchInput\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n clear\n \n \n ngAfterViewInit\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n placeholder\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n changed\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(geocodeService: GeocodeService, ngZone: NgZone)\n \n \n \n \n Defined in packages/location/src/lib/location-search.component.ts:20\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n geocodeService\n \n \n GeocodeService\n \n \n \n No\n \n \n \n \n ngZone\n \n \n NgZone\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n placeholder\n \n \n Placeholder for input \n\n \n Default value : 'Search Location...'\n \n \n \n \n \n Defined in packages/location/src/lib/location-search.component.ts:16\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n changed\n \n \n emits when the coords have been changed (after selecting a match) \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/location/src/lib/location-search.component.ts:20\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n clear\n \n \n \n \n \n \n \nclear()\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-search.component.ts:28\n \n \n\n\n \n \n Clears the searchbar input value \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \n \nngAfterViewInit()\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-search.component.ts:34\n \n \n\n\n \n \n subscribes to changes from the inputs autocomplete using geocodeService. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n searchInput\n \n \n \n \n \n \n \n searchInput: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('search')\n \n \n \n \n \n Defined in packages/location/src/lib/location-search.component.ts:18\n \n \n\n \n \n The search input element \n\n \n \n\n \n \n\n\n\n\n\n \n import {\n AfterViewInit, Component, ElementRef,\n EventEmitter, Input, NgZone, Output, ViewChild\n} from '@angular/core';\nimport { } from 'googlemaps';\nimport { GeocodeService } from './geocode.service';\n\n/** Google Maps Location Searchbar */\n@Component({\n selector: 'ec-location-search',\n templateUrl: './location-search.component.html'\n})\n\nexport class LocationSearchComponent implements AfterViewInit {\n /** Placeholder for input */\n @Input() placeholder = 'Search Location...';\n /** The search input element */\n @ViewChild('search') searchInput: ElementRef;\n /** emits when the coords have been changed (after selecting a match) */\n @Output() changed: EventEmitter = new EventEmitter();\n\n constructor(\n private geocodeService: GeocodeService,\n private ngZone: NgZone\n ) {\n }\n /** Clears the searchbar input value */\n clear() {\n if (this.searchInput) {\n this.searchInput.nativeElement.value = '';\n }\n }\n /** subscribes to changes from the inputs autocomplete using geocodeService. */\n ngAfterViewInit() {\n this.geocodeService.autocompleteAddress(this.searchInput.nativeElement)\n .subscribe(\n coords => {\n this.changed.emit(coords);\n }\n );\n }\n}\n\n \n\n \n \n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'LocationSearchComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LoginComponent.html":{"url":"components/LoginComponent.html","title":"component - LoginComponent","body":"\n \n\n\n\n\n\n Components\n LoginComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/data/src/lib/auth/login/login.component.ts\n\n\n \n Description\n \n \n Uses LoginFormComponent. Tries to login via AuthService. Shows notifications and nexts success Subject if login was successful.\nhttps://components.entrecode.de/auth/auth?e=1\n\n \n\n\n \n Implements\n \n \n WithLoader\n WithNotifications\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-login\n \n\n\n\n\n \n templateUrl\n login.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n auth\n \n \n loader\n \n \n notifications\n \n \n Public\n notificationService\n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n login\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n error\n \n \n success\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(auth: AuthService, notificationService: NotificationsService, symbol: SymbolService)\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:32\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n auth\n \n \n AuthService\n \n \n \n No\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n You can optionally specify PublicAPI instance. Defaults to SdkService#api. \n\n \n Type : PublicAPI\n\n \n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:24\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n error\n \n \n Subject that is nexted when an error occurs. For custom error reactions \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:28\n \n \n \n \n \n \n \n \n \n success\n \n \n Subject that is nexted when the login was successful. Meant to be used for redirecting to another page (or similar). \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:26\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin(undefined)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:39\n \n \n\n\n \n \n Communicates with the AuthService. Handles loader, notifications and success Subject. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n auth\n \n \n \n \n \n \n \n auth: AuthService\n\n \n \n \n \n Type : AuthService\n\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:34\n \n \n\n\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: \n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LoaderComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:30\n \n \n\n \n \n The included loader. \n\n \n \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:32\n \n \n\n \n \n Error notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n notificationService\n \n \n \n \n \n \n \n notificationService: NotificationsService\n\n \n \n \n \n Type : NotificationsService\n\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:35\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:36\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';\nimport {\n SymbolService,\n WithNotifications,\n Notification,\n LoaderComponent,\n NotificationsService,\n WithLoader\n} from '@ec.components/ui';\nimport PublicAPI from 'ec.sdk/lib/PublicAPI';\nimport AccountResource from 'ec.sdk/lib/resources/accounts/AccountResource';\nimport { AuthService } from '../auth.service';\n\n/** Uses LoginFormComponent. Tries to login via AuthService. Shows notifications and nexts success Subject if login was successful.\n * https://components.entrecode.de/auth/auth?e=1\n*/\n@Component({\n selector: 'ec-login',\n templateUrl: 'login.component.html'\n})\n\nexport class LoginComponent implements WithLoader, WithNotifications {\n /** You can optionally specify PublicAPI instance. Defaults to SdkService#api. */\n @Input() api: PublicAPI;\n /** Subject that is nexted when the login was successful. Meant to be used for redirecting to another page (or similar). */\n @Output() success: EventEmitter = new EventEmitter();\n /** Subject that is nexted when an error occurs. For custom error reactions */\n @Output() error: EventEmitter = new EventEmitter();\n /** The included loader. */\n @ViewChild(LoaderComponent) loader;\n /** Error notifications */\n notifications: Notification[] = [];\n\n constructor(public auth: AuthService,\n public notificationService: NotificationsService,\n public symbol: SymbolService) {\n }\n /** Communicates with the AuthService. Handles loader, notifications and success Subject. */\n login({ email, password }) {\n const login = this.auth.login({ email, password }, this.api)\n .then((user) => {\n this.notificationService.emit({\n type: 'success',\n title: this.symbol.resolve('login.success'),\n hide: this.notifications\n });\n this.success.emit(user);\n })\n .catch((error) => {\n this.notificationService.emit({\n title: this.symbol.resolve('login.error'),\n error,\n sticky: true,\n hide: this.notifications,\n replace: this.notifications\n });\n this.error.next(error);\n console.log('could not login', error);\n });\n this.loader.wait(login);\n }\n}\n\n \n\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'LoginComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LoginFormComponent.html":{"url":"components/LoginFormComponent.html","title":"component - LoginFormComponent","body":"\n \n\n\n\n\n\n Components\n LoginFormComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/utility/login-form/login-form.component.ts\n\n\n \n Description\n \n \n Login Form Component with validation. Fires success event with credentials on submit.\nhttps://components.entrecode.de/ui/login?e=1\n\n \n\n\n \n Implements\n \n \n OnInit\n WithLoader\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-login-form\n \n\n\n\n\n \n templateUrl\n ./login-form.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n errorMessage\n \n \n Public\n form\n \n \n notifications\n \n \n Protected\n submitted\n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n login\n \n \n ngOnInit\n \n \n onSubmit\n \n \n showError\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n buttonClasses\n \n \n buttonLabel\n \n \n emailLabel\n \n \n emailPlaceholder\n \n \n loader\n \n \n passwordLabel\n \n \n passwordPlaceholder\n \n \n showLabels\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n error\n \n \n success\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(fb: FormBuilder, symbol: SymbolService)\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:44\n \n \n\n \n \n Injects the FormBuilder\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n fb\n \n \n FormBuilder\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n buttonClasses\n \n \n Additional Button classes \n\n \n Default value : ''\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:42\n \n \n \n \n \n \n \n \n \n buttonLabel\n \n \n The Label of the submit button. Defaults to Login \n\n \n Default value : this.symbol.resolve('login.button.label')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:40\n \n \n \n \n \n \n \n \n \n emailLabel\n \n \n The Label of the Mail field \n\n \n Default value : this.symbol.resolve('login.email.label')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:32\n \n \n \n \n \n \n \n \n \n emailPlaceholder\n \n \n The Placeholder of the mail Field \n\n \n Default value : this.symbol.resolve('login.email.placeholder')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:34\n \n \n \n \n \n \n \n \n \n loader\n \n \n The loader that should be shown during login \n\n \n Type : LoaderComponent\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:28\n \n \n \n \n \n \n \n \n \n passwordLabel\n \n \n The Label of the password field. \n\n \n Default value : this.symbol.resolve('login.password.label')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:36\n \n \n \n \n \n \n \n \n \n passwordPlaceholder\n \n \n The Placeholder of the password field \n\n \n Default value : this.symbol.resolve('login.password.placeholder')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:38\n \n \n \n \n \n \n \n \n \n showLabels\n \n \n If true, email and password wont have labels \n\n \n Default value : true\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:30\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n error\n \n \n Event that emits when calling showError. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:26\n \n \n \n \n \n \n \n \n \n success\n \n \n Event that emits on succesful submit of the form, passing the login credentials. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:24\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin(value)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:67\n \n \n\n\n \n \n Method that is meant to be overwritten by a subclass to communicate with an API. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:51\n \n \n\n\n \n \n Initializes the form \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n onSubmit\n \n \n \n \n \n \n \nonSubmit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:72\n \n \n\n\n \n \n Is called when the form has been successfully submitted. Calls login and resets the form after. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n showError\n \n \n \n \n \n \n \nshowError(err)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:59\n \n \n\n\n \n \n Shows the given error in the form. Clears the password field and emits the error event. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n err\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n errorMessage\n \n \n \n \n \n \n \n errorMessage: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:22\n \n \n\n \n \n Contains possible error messages. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n form\n \n \n \n \n \n \n \n form: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:18\n \n \n\n \n \n The login's form group.\n\n \n \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:44\n \n \n\n \n \n Recent error Notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n Protected\n submitted\n \n \n \n \n \n \n \n submitted: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:20\n \n \n\n \n \n Flips true when submitted. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:47\n \n \n\n\n \n \n\n\n\n\n \n Login Form\nThe Login Form UI component is meant to be extended by a component that communicates with an API.\n \n \n\n \n import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angular/forms';\nimport { Observable } from 'rxjs';\nimport { LoaderComponent } from '../../loader/loader.component';\nimport { WithLoader } from '../../loader/with-loader.interface';\nimport { SymbolService } from '../../symbol/symbol.service';\nimport { FieldValidators } from '../validators/field-validators';\n\n/** Login Form Component with validation. Fires success event with credentials on submit.\n * https://components.entrecode.de/ui/login?e=1\n*/\n@Component({\n selector: 'ec-login-form',\n templateUrl: './login-form.component.html',\n})\nexport class LoginFormComponent implements OnInit, WithLoader {\n /** The login's form group.*/\n public form: FormGroup;\n /** Flips true when submitted. */\n protected submitted: boolean;\n /** Contains possible error messages. */\n public errorMessage: string;\n /** Event that emits on succesful submit of the form, passing the login credentials. */\n @Output() success: EventEmitter = new EventEmitter();\n /** Event that emits when calling showError. */\n @Output() error: EventEmitter = new EventEmitter();\n /** The loader that should be shown during login */\n @Input() loader: LoaderComponent;\n /** If true, email and password wont have labels */\n @Input() showLabels = true;\n /** The Label of the Mail field */\n @Input() emailLabel = this.symbol.resolve('login.email.label');\n /** The Placeholder of the mail Field */\n @Input() emailPlaceholder = this.symbol.resolve('login.email.placeholder');\n /** The Label of the password field. */\n @Input() passwordLabel = this.symbol.resolve('login.password.label');\n /** The Placeholder of the password field */\n @Input() passwordPlaceholder = this.symbol.resolve('login.password.placeholder');\n /** The Label of the submit button. Defaults to Login */\n @Input() buttonLabel = this.symbol.resolve('login.button.label');\n /** Additional Button classes */\n @Input() buttonClasses = '';\n /** Recent error Notifications */\n notifications: Notification[];\n\n /** Injects the FormBuilder*/\n constructor(protected fb: FormBuilder, public symbol: SymbolService) {\n }\n\n /** Initializes the form */\n ngOnInit() {\n this.form = this.fb.group({\n email: ['', [Validators.required, FieldValidators.email]], // emailAvailable?\n password: ['', [Validators.required]],\n });\n }\n\n /** Shows the given error in the form. Clears the password field and emits the error event. */\n showError(err): any {\n this.errorMessage = err.message;\n this.form.get('password').setValue('');\n this.error.emit(err);\n Observable.throw(err);\n }\n\n /** Method that is meant to be overwritten by a subclass to communicate with an API. */\n login(value) { // meant to be overridden\n return Promise.resolve(value);\n }\n\n /** Is called when the form has been successfully submitted. Calls login and resets the form after. */\n onSubmit() {\n this.submitted = true;\n delete this.errorMessage;\n if (!this.form.valid) {\n return;\n }\n const login = this.login(this.form.value)\n .then((res) => {\n this.form.reset();\n this.success.emit(res);\n });\n if (this.loader) {\n this.loader.wait(login);\n }\n }\n}\n\n \n\n \n \n \n {{errorMessage}}\n \n \n {{emailLabel}}\n \n \n \n \n Passwort\n \n \n \n \n {{buttonLabel}}\n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{errorMessage}} {{emailLabel}} Passwort {{buttonLabel}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'LoginFormComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/MaxItemsPipe.html":{"url":"pipes/MaxItemsPipe.html","title":"pipe - MaxItemsPipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n MaxItemsPipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/form/max-items.pipe.ts\n \n\n \n Description\n \n \n This pipe slices an array after the nth item \n\n \n\n\n \n Metadata\n \n \n \n Name\n maxItems\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(array: Array, maxItems: number, start: number)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/max-items.pipe.ts:8\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n array\n \n Array\n \n \n \n No\n \n \n \n []\n \n\n \n \n maxItems\n \n number\n \n \n \n No\n \n \n \n \n\n \n \n start\n \n number\n \n \n \n No\n \n \n \n 0\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n \n\n\n \n import { Pipe, PipeTransform } from '@angular/core';\n/** This pipe slices an array after the nth item */\n@Pipe({\n name: 'maxItems'\n})\n\nexport class MaxItemsPipe implements PipeTransform {\n transform(array: Array = [], maxItems: number, start: number = 0): any {\n return array.slice(start, maxItems);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/MediumEditorComponent.html":{"url":"components/MediumEditorComponent.html","title":"component - MediumEditorComponent","body":"\n \n\n\n\n\n\n Components\n MediumEditorComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/medium-editor/src/lib/medium-editor.component.ts\n\n\n \n Description\n \n \n Wraps medium-editor to a reactive form component.\nhttps://components.entrecode.de/misc/medium-editor?e=1\n\n \n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n ControlValueAccessor\n \n\n\n\n Metadata\n \n \n\n\n \n encapsulation\n ViewEncapsulation.None\n \n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-medium-editor\n \n\n \n styleUrls\n ./medium-editor.component.scss\n \n\n\n\n \n templateUrl\n medium-editor.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n container\n \n \n Private\n editor\n \n \n propagateChange\n \n \n Public\n ready\n \n \n value\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n model\n \n \n options\n \n \n placeholder\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n modelChange\n \n \n \n \n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n model\n \n \n data model \n\n \n Type : any\n\n \n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:35\n \n \n \n \n \n \n \n \n \n options\n \n \n MediumEditor options \n\n \n Type : any\n\n \n \n Default value : {}\n \n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:37\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n empty placeholder \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:39\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n modelChange\n \n \n change emitter \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:41\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:63\n \n \n\n\n \n \n destroys editor \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:52\n \n \n\n\n \n \n inits editor \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:78\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: any)\n \n \n\n\n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:68\n \n \n\n\n \n \n Writes value to editor on outside model change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n container\n \n \n \n \n \n \n \n container: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('container')\n \n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:43\n \n \n\n \n \n container element \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n editor\n \n \n \n \n \n \n \n editor: MediumEditor\n\n \n \n \n \n Type : MediumEditor\n\n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:47\n \n \n\n \n \n editor instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => {\n }\n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:75\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n ready\n \n \n \n \n \n \n \n ready: Promise\n\n \n \n \n \n Type : Promise\n\n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:49\n \n \n\n \n \n ready promise \n\n \n \n\n \n \n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n value: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:45\n \n \n\n \n \n current value \n\n \n \n\n \n \n\n\n\n\n\n \n import {\n Component,\n ElementRef,\n EventEmitter,\n forwardRef,\n Input,\n OnDestroy,\n OnInit,\n Output,\n ViewChild,\n ViewEncapsulation\n} from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\n\nimport * as MediumEditor from 'medium-editor/dist/js/medium-editor';\n\n/** Wraps medium-editor to a reactive form component.\n * https://components.entrecode.de/misc/medium-editor?e=1\n*/\n@Component({\n selector: 'ec-medium-editor',\n styleUrls: ['./medium-editor.component.scss'],\n templateUrl: 'medium-editor.component.html',\n encapsulation: ViewEncapsulation.None,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => MediumEditorComponent),\n multi: true\n }\n ]\n})\nexport class MediumEditorComponent implements OnInit, OnDestroy, ControlValueAccessor {\n /** data model */\n @Input() model: any;\n /** MediumEditor [options](https://github.com/yabwe/medium-editor#mediumeditor-options) */\n @Input() options: any = {};\n /** empty placeholder */\n @Input() placeholder: string;\n /** change emitter */\n @Output() modelChange: EventEmitter = new EventEmitter();\n /** container element */\n @ViewChild('container') container: ElementRef;\n /** current value */\n value: any;\n /** editor instance */\n private editor: MediumEditor;\n /** ready promise */\n public ready: Promise;\n\n /** inits editor */\n ngOnInit() {\n this.container.nativeElement.innerHTML = this.model || '';\n this.options.placeholder = this.placeholder;\n this.editor = new MediumEditor(this.container.nativeElement, this.options);\n this.editor.subscribe('editableInput', () => {\n this.value = this.editor.getContent();\n this.propagateChange(this.value);\n });\n this.ready = Promise.resolve(this.editor);\n }\n /** destroys editor */\n ngOnDestroy(): void {\n this.editor.destroy();\n }\n\n /** Writes value to editor on outside model change. */\n writeValue(value: any) {\n this.value = value || '';\n this.ready.then((editor) => {\n editor.setContent(this.value);\n });\n }\n\n propagateChange = (_: any) => {\n }\n\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n\n registerOnTouched() {\n }\n}\n\n \n\n \n \n \n\n \n \n ./medium-editor.component.scss\n \n @import '~medium-editor/src/sass/medium-editor.scss';\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'MediumEditorComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/MediumEditorModule.html":{"url":"modules/MediumEditorModule.html","title":"module - MediumEditorModule","body":"\n \n\n\n\n\n Modules\n MediumEditorModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_MediumEditorModule\n\n\n\ncluster_MediumEditorModule_declarations\n\n\n\ncluster_MediumEditorModule_MediumEditorComponent_providers\n\n\n\ncluster_MediumEditorModule_exports\n\n\n\n\nMediumEditorComponent\n\nMediumEditorComponent\n\n\n\nMediumEditorModule\n\nMediumEditorModule\n\nMediumEditorModule -->\n\nMediumEditorComponent->MediumEditorModule\n\n\n\n\n\nMediumEditorComponent \n\nMediumEditorComponent \n\nMediumEditorComponent -->\n\nMediumEditorModule->MediumEditorComponent \n\n\n\n MediumEditorComponent), multi: true\n} -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}\n\n MediumEditorComponent), multi: true\n}->MediumEditorComponent -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}->MediumEditorComponent\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/medium-editor/src/lib/medium-editor.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n MediumEditorComponent\n \n \n \n \n Exports\n \n \n MediumEditorComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { MediumEditorComponent } from './medium-editor.component';\n\nexport const mediumModuleConfig = {\n imports: [CommonModule],\n exports: [MediumEditorComponent],\n declarations: [MediumEditorComponent],\n providers: [],\n};\n\n@NgModule(mediumModuleConfig)\nexport class MediumEditorModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/MenuComponent.html":{"url":"components/MenuComponent.html","title":"component - MenuComponent","body":"\n \n\n\n\n\n\n Components\n MenuComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/utility/menu/menu.component.ts\n\n\n \n Description\n \n \n Renders a nested menu from a given routes Array (the same you would use for angular routing). \n\n \n\n\n \n Implements\n \n \n OnChanges\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-menu,[ec-menu]\n \n\n \n styleUrls\n ./menu.component.scss\n \n\n\n\n \n templateUrl\n ./menu.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n hover\n \n \n Private\n timeout\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n cancelTimeout\n \n \n getColor\n \n \n getItemColor\n \n \n getLevel\n \n \n getPath\n \n \n hasActivePath\n \n \n hoverItem\n \n \n hoverOut\n \n \n isActive\n \n \n isSelected\n \n \n ngOnChanges\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n colors\n \n \n hoverDelay\n \n \n parent\n \n \n route\n \n \n routes\n \n \n title\n \n \n vanishDelay\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(router: Router)\n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:31\n \n \n\n \n \n Injects the Router. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n colors\n \n \n Color map of submenus. \n\n \n Type : string[]\n\n \n \n Default value : ['#29A9E1', '#00DBF0', '#4A5EA9', '#29A9E1', '#C9C8D4']\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:23\n \n \n \n \n \n \n \n \n \n hoverDelay\n \n \n Delay before menu is shown on mouseover. \n\n \n Default value : 50\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:27\n \n \n \n \n \n \n \n \n \n parent\n \n \n Parent Menu (when nested) \n\n \n Type : MenuComponent\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:21\n \n \n \n \n \n \n \n \n \n route\n \n \n The currently active route \n\n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:17\n \n \n \n \n \n \n \n \n \n routes\n \n \n Routes that should be used for the menu. You can use your angular router routes here. \n\n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:15\n \n \n \n \n \n \n \n \n \n title\n \n \n The title of the menu \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:19\n \n \n \n \n \n \n \n \n \n vanishDelay\n \n \n Delay before menu is hidden after mouseout. \n\n \n Default value : 500\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:25\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n cancelTimeout\n \n \n \n \n \n \n \ncancelTimeout()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:84\n \n \n\n\n \n \n Cancels the current timeout \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n getColor\n \n \n \n \n \n \n \ngetColor(level: number)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:64\n \n \n\n\n \n \n Returns the color for the current level. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n level\n \n number\n \n \n \n No\n \n \n \n 0\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getItemColor\n \n \n \n \n \n \n \ngetItemColor(item)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:69\n \n \n\n\n \n \n Returns the color for the given item. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getLevel\n \n \n \n \n \n \n \ngetLevel(level: number)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:59\n \n \n\n\n \n \n Returns the level of nesting (parent=0). \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n level\n \n number\n \n \n \n No\n \n \n \n 0\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPath\n \n \n \n \n \n \n \ngetPath(item, path: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:98\n \n \n\n\n \n \n Returns the full path to an item. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n item\n \n \n \n \n No\n \n \n \n \n\n \n \n path\n \n string\n \n \n \n No\n \n \n \n ''\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n hasActivePath\n \n \n \n \n \n \n \nhasActivePath(item, parent)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:48\n \n \n\n\n \n \n Returns true if the item or a child of it is active. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n item\n \n \n No\n \n \n \n \n\n \n \n parent\n \n \n No\n \n \n \n this\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n hoverItem\n \n \n \n \n \n \n \nhoverItem(item)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:74\n \n \n\n\n \n \n Hovers the item after hoverDelay timeout. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n hoverOut\n \n \n \n \n \n \n \nhoverOut()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:91\n \n \n\n\n \n \n Hovers out after vanishDelay \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n isActive\n \n \n \n \n \n \n \nisActive(path)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:106\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n path\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isSelected\n \n \n \n \n \n \n \nisSelected(item)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:53\n \n \n\n\n \n \n Returns true if the item is selected. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:38\n \n \n\n\n \n \n updates the routes on change of route \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n hover\n \n \n \n \n \n \n \n hover: \n\n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:29\n \n \n\n \n \n The currently hovered Route\n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n timeout\n \n \n \n \n \n \n \n timeout: \n\n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:31\n \n \n\n \n \n The timeout for delay handling \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, Input, OnChanges } from '@angular/core';\nimport { Router } from '@angular/router'; // TODO cannot import Route...\n\n/** Renders a nested menu from a given routes Array (the same you would use for angular routing). */\n@Component({\n selector: 'ec-menu,[ec-menu]',\n templateUrl: './menu.component.html',\n styleUrls: ['./menu.component.scss']\n})\nexport class MenuComponent implements OnChanges {\n /** Routes that should be used for the menu. You can use your angular router routes here. */\n @Input() routes; // : Route[];\n /** The currently active route */\n @Input() route; // : Route;\n /** The title of the menu */\n @Input() title: string;\n /** Parent Menu (when nested) */\n @Input() parent: MenuComponent;\n /** Color map of submenus. */\n @Input() colors: string[] = ['#29A9E1', '#00DBF0', '#4A5EA9', '#29A9E1', '#C9C8D4'];\n /** Delay before menu is hidden after mouseout. */\n @Input() vanishDelay = 500;\n /** Delay before menu is shown on mouseover. */\n @Input() hoverDelay = 50;\n /** The currently hovered Route*/\n public hover; // : Route;\n /** The timeout for delay handling */\n private timeout;\n\n /** Injects the Router. */\n constructor(private router: Router) {\n }\n\n /** updates the routes on change of route */\n ngOnChanges() {\n if (this.route) {\n this.routes = this.route.children\n .filter(route => route.path && route.path.indexOf(':') === -1)\n .filter(route => !route.data || !route.data.hidden);\n console.log('routes', this.routes);\n }\n }\n\n /** Returns true if the item or a child of it is active. */\n hasActivePath(item, parent = this) { // this.parent\n return parent.getPath(item) === this.router.url;\n }\n\n /** Returns true if the item is selected. */\n isSelected(item) {\n const path = this.getPath(item);\n return path !== '/' && (path === this.router.url || this.router.url.indexOf(path) === 0);\n }\n\n /** Returns the level of nesting (parent=0). */\n getLevel(level = 0) {\n return this.parent ? this.parent.getLevel(++level) : level;\n }\n\n /** Returns the color for the current level. */\n getColor(level = 0) {\n return this.colors[this.getLevel(level) % this.colors.length];\n }\n\n /** Returns the color for the given item. */\n getItemColor(item) {\n return this.isActive(item) ? this.getColor(1) : 'initial';\n }\n\n /** Hovers the item after hoverDelay timeout. */\n hoverItem(item) { // : Route\n if (!this.hover) {\n this.hover = item;\n }\n this.timeout = setTimeout(() => {\n this.hover = item;\n }, this.hoverDelay);\n }\n\n /** Cancels the current timeout */\n cancelTimeout() {\n if (this.timeout) {\n clearTimeout(this.timeout);\n }\n }\n\n /** Hovers out after vanishDelay */\n hoverOut() {\n this.timeout = setTimeout(() => {\n delete this.hover;\n }, this.vanishDelay);\n }\n\n /** Returns the full path to an item. */\n getPath(item, path: string = '') {\n path = '/' + item.path + path;\n if (!this.parent) {\n return path;\n }\n return this.parent.getPath(this.route, path);\n }\n\n isActive(path) {\n return path !== '/' && (path === this.router.url || this.router.url.indexOf(path) === 0);\n }\n}\n\n \n\n \n \n \n \n \n {{item.data?.title || item.path}}\n \n \n \n {{child.data?.title || child.path}}\n \n \n \n \n\n \n\n \n \n ./menu.component.scss\n \n li.is-active>a {\n text-decoration: underline;\n}\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{item.data?.title || item.path}} {{child.data?.title || child.path}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'MenuComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ModalComponent.html":{"url":"components/ModalComponent.html","title":"component - ModalComponent","body":"\n \n\n\n\n\n\n Components\n ModalComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/modal/modal.component.ts\n\n\n \n Description\n \n \n A modal is an extension of a pop. It adds different style options that apply x.ui markup.\nhttps://components.entrecode.de/ui/modal?e=1\nhttps://medium.com/claritydesignsystem/ng-content-the-hidden-docs-96a29d70d11b\n\n \n\n \n Extends\n \n \n PopComponent\n \n\n \n Implements\n \n \n OnInit\n OnChanges\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-modal\n \n\n\n\n\n \n templateUrl\n ./modal.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n Public\n classes\n \n \n Public\n elementRef\n \n \n Public\n popService\n \n \n templates\n \n \n types\n \n \n activated\n \n \n clickEvent\n \n \n Public\n elementRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n initMode\n \n \n ngOnChanges\n \n \n ngOnInit\n \n \n Public\n hide\n \n \n isOutside\n \n \n Public\n show\n \n \n Public\n toggle\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n animation\n \n \n backdrop\n \n \n body\n \n \n columns\n \n \n footer\n \n \n header\n \n \n mode\n \n \n active\n \n \n hideOnClickOutside\n \n \n type\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n toggle\n \n \n \n \n\n\n \n \n HostListeners\n \n \n \n \n \n \n document:click\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(popService: PopService, elementRef: ElementRef, cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:43\n \n \n\n \n \n Constructs the modal, injects pop service \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n popService\n \n \n PopService\n \n \n \n No\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n animation\n \n \n Sets data-animate. \n\n \n Default value : 'fadeIn 4'\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:31\n \n \n \n \n \n \n \n \n \n backdrop\n \n \n If true, the modal will have a dark backdrop that disables clicking outside. \n\n \n Default value : false\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:29\n \n \n \n \n \n \n \n \n \n body\n \n \n Body Template \n\n \n Type : TemplateRef\n\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:35\n \n \n \n \n \n \n \n \n \n columns\n \n \n Sets data-col. If specified, the width of the modal is fixed to the given value (1-12). \n\n \n Type : number | string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:41\n \n \n \n \n \n \n \n \n \n footer\n \n \n Footer Template \n\n \n Type : TemplateRef\n\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:37\n \n \n \n \n \n \n \n \n \n header\n \n \n Header Template \n\n \n Type : TemplateRef\n\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:33\n \n \n \n \n \n \n \n \n \n mode\n \n \n This property sets the mode + additional options.\nIt expects the type at first and non mandatory options like opens-left afterwards. \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:27\n \n \n \n \n \n \n \n \n \n active\n \n \n If true, .ec-pop is part of the DOM (*ngIf) + .active is set on .ec-pop-container. \n\n \n Type : boolean\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:29\n \n \n \n \n \n \n \n \n \n hideOnClickOutside\n \n \n If set to true, the pop will hide when a click happens outside the pop. \n\n \n Default value : false\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:35\n \n \n \n \n \n \n \n \n \n type\n \n \n The used type on the host element \n\n \n Type : string\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:33\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n toggle\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:37\n \n \n \n \n\n\n \n HostListeners \n \n \n \n \n \n \n document:click\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndocument:click($event)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:42\n \n \n\n\n \n \n Listens for document:click and hides \n\n\n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n initMode\n \n \n \n \n \n \n \ninitMode()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:52\n \n \n\n\n \n \n Is called on init and change. Parses mode input and throws warning if type is not supported. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:76\n \n \n\n\n \n \n calls initMode \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:72\n \n \n\n\n \n \n calls initMode \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n hide\n \n \n \n \n \n \n \n \n hide()\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:90\n \n \n\n\n \n \n Hides the pop. Sets active false and removes pop from popService.stack \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n isOutside\n \n \n \n \n \n \n \nisOutside(element)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:61\n \n \n\n\n \n \n yields true if the given element is outside the pop / or is the wrapper element itself (the backdrop) \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n element\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n show\n \n \n \n \n \n \n \n \n show(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:77\n \n \n\n\n \n \n Shows the pop. Sets active true and adds pop to popService.stack \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n toggle\n \n \n \n \n \n \n \n \n toggle(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:67\n \n \n\n\n \n \n Shows if not active, hides if active. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n classes\n \n \n \n \n \n \n \n classes: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:43\n \n \n\n \n \n Will contain the classes (mode - type) \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:47\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n popService\n \n \n \n \n \n \n \n popService: PopService\n\n \n \n \n \n Type : PopService\n\n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:46\n \n \n\n\n \n \n \n \n \n \n \n \n \n templates\n \n \n \n \n \n \n \n templates: TemplateRef[]\n\n \n \n \n \n Type : TemplateRef[]\n\n \n \n \n \n Decorators : \n \n \n @ContentChildren(TemplateRef)\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:39\n \n \n\n \n \n Templates for header body and footer \n\n \n \n\n \n \n \n \n \n \n \n \n \n types\n \n \n \n \n \n \n \n types: []\n\n \n \n \n \n Type : []\n\n \n \n \n \n Default value : [\n 'dialog',\n 'overlay',\n 'deck',\n 'toast',\n 'snackbar'\n ]\n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:18\n \n \n\n \n \n all possible modes that can be set \n\n \n \n\n \n \n \n \n \n \n \n \n \n activated\n \n \n \n \n \n \n \n activated: \n\n \n \n \n \n Default value : false\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:31\n \n \n\n \n \n Flip and stays true after first show \n\n \n \n\n \n \n \n \n \n \n \n \n \n clickEvent\n \n \n \n \n \n \n \n clickEvent: \n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:39\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:55\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Input, OnInit, ElementRef, OnChanges, TemplateRef, ContentChildren, ChangeDetectorRef } from '@angular/core';\nimport { PopComponent } from '../pop/pop.component';\nimport { PopService } from '../pop/pop.service';\n\n/**\n * A modal is an extension of a pop. It adds different style options that apply x.ui markup.\n * https://components.entrecode.de/ui/modal?e=1\n *\n * https://medium.com/claritydesignsystem/ng-content-the-hidden-docs-96a29d70d11b\n */\n@Component({\n selector: 'ec-modal',\n templateUrl: './modal.component.html'\n})\n\nexport class ModalComponent extends PopComponent implements OnInit, OnChanges {\n /** all possible modes that can be set */\n types = [\n 'dialog',\n 'overlay',\n 'deck',\n 'toast',\n 'snackbar'\n ];\n /** This property sets the mode + additional options.\n * It expects the type at first and non mandatory options like opens-left afterwards. */\n @Input() mode: string;\n /** If true, the modal will have a dark backdrop that disables clicking outside. */\n @Input() backdrop = false;\n /** Sets data-animate. */\n @Input() animation = 'fadeIn 4';\n /** Header Template */\n @Input() header: TemplateRef;\n /** Body Template */\n @Input() body: TemplateRef;\n /** Footer Template */\n @Input() footer: TemplateRef;\n /** Templates for header body and footer */\n @ContentChildren(TemplateRef) templates: TemplateRef[];\n /** Sets data-col. If specified, the width of the modal is fixed to the given value (1-12). */\n @Input() columns: number | string;\n /** Will contain the classes (mode - type) */\n public classes: string;\n /** Constructs the modal, injects pop service */\n constructor(\n public popService: PopService,\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef) {\n super(popService, elementRef, cdr);\n }\n /** Is called on init and change. Parses mode input and throws warning if type is not supported. */\n initMode() {\n this.mode = this.mode || 'dialog';\n this.type = this.mode.split(' ')[0];\n if (!this.types.includes(this.type)) {\n const fallback = this.mode.replace(this.type, 'dialog');\n console.warn(`ec-modal does not support the mode \"${this.type}\".\n Use one of ${this.types.join(', ')}.\n Falling back to ${fallback}.`);\n this.type = fallback;\n }\n this.classes = this.mode.split(' ').splice(1).join(' ');\n this.types.forEach(type => {\n this.elementRef.nativeElement.classList.remove(`${type}-wrapper`);\n });\n if (this.backdrop) {\n this.elementRef.nativeElement.classList.add(`${this.type}-wrapper`);\n }\n }\n\n /** calls initMode */\n ngOnInit() {\n this.initMode();\n }\n /** calls initMode */\n ngOnChanges() {\n this.initMode();\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ModalComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ModelConfig.html":{"url":"interfaces/ModelConfig.html","title":"interface - ModelConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n ModelConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/model-config/model-config.interface.ts\n \n\n \n Description\n \n \n This is the interface for a model's configuration.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n fields\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n fields\n \n \n \n \n fields: FieldConfig\n\n \n \n\n\n \n \n Type : FieldConfig\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Array of FieldConfigProperty Objects. Sets up the behaviour of each field. \n\n \n \n \n \n \n \n\n\n \n import { FieldConfig } from '@ec.components/core';\n\n/** This is the interface for a model's configuration.*/\nexport interface ModelConfig {\n /** Array of FieldConfigProperty Objects. Sets up the behaviour of each field. */\n fields?: FieldConfig;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ModelConfigService.html":{"url":"injectables/ModelConfigService.html","title":"injectable - ModelConfigService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n ModelConfigService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/model-config/model-config.service.ts\n \n\n \n Description\n \n \n The main class for configuring the behaviour of a model.\nBy default, everything is auto generated from the model's schema but can be overriden via the\nset method. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n omittedFields\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n generateConfig\n \n \n get\n \n \n getFieldConfig\n \n \n getLightModel\n \n \n getMinLevel\n \n \n getSystemFields\n \n \n set\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(crud: CrudService, sdk: SdkService, typeConfig: TypeConfigService, symbol: SymbolService)\n \n \n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:23\n \n \n\n \n \n Injects CrudService and SdkService. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n crud\n \n \n CrudService\n \n \n \n No\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n typeConfig\n \n \n TypeConfigService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n generateConfig\n \n \n \n \n \n \n \ngenerateConfig(model: string, customFieldConfig?: FieldConfig)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:191\n \n \n\n\n \n \n Generates a CrudConfig for the given model.\nMerges three configurations into one:\n\ndefault field config, obtained by getFieldConfig\nglobal model config (if any) configured via with set\ncustomFieldConfig: any custom field config that is merged on top of the other two.\nThis enables the developer to either customize at a global scale to target all lists/forms,\nor just specific components. \n\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n customFieldConfig\n \n FieldConfig\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : Promise>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n get\n \n \n \n \n \n \n \nget(property: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:39\n \n \n\n\n \n \n Retrieves the given model config.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n Example :\n \n * ModelConfig.get('muffin'); //returns muffin config;\n *\n \n \n \n Returns : CrudConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getFieldConfig\n \n \n \n \n \n \n \ngetFieldConfig(model: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:121\n \n \n\n\n \n \n Returns the default field config for the given model.\nUtilizes PublicAPI#getFieldConfig + TypeConfigService#get.\nThis config is meant to deliver the default behaviour when nothing else is configured. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getLightModel\n \n \n \n \n \n \n \ngetLightModel(model)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:220\n \n \n\n\n \n \n Returns light model information \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n model\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getMinLevel\n \n \n \n \n \n \n \ngetMinLevel(model: string, customFieldConfig?: FieldConfig)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:100\n \n \n\n\n \n \n Parses config for fields that require leveled entries \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n customFieldConfig\n \n FieldConfig\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getSystemFields\n \n \n \n \n \n \n \ngetSystemFields()\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:59\n \n \n\n\n \n \n Returns the field config for all system fields \n\n\n \n Returns : { id: { label: any; view: string; form: boolean; immutable: boolean; hideInList: boolean; }; _cre...\n\n \n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \n \nset(property: string, config: CrudConfig)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:54\n \n \n\n\n \n \n Sets the given model config.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n config\n \n CrudConfig\n \n \n \n No\n \n \n\n \n \n \n \n \n Example :\n \n * ModelConfig.set('muffin', {\n * fields: {\n * title: {\n * label: 'Muffin Titel'\n * }\n * });\n *\n \n \n \n Returns : CrudConfig\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n omittedFields\n \n \n \n \n \n \n \n omittedFields: Array\n\n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n 'id',\n 'private',\n 'created',\n 'creator',\n 'modified'\n ]\n \n \n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:17\n \n \n\n \n \n Array of property names that are omitted by default. \n\n \n \n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Config, FieldConfig, Item } from '@ec.components/core';\nimport { SymbolService } from '@ec.components/ui';\nimport { fields } from 'ec.sdk/lib/PublicAPI';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\nimport { CrudConfig } from '../crud/crud-config.interface';\nimport { CrudService } from '../crud/crud.service';\nimport { SdkService } from '../sdk/sdk.service';\nimport { TypeConfigService } from './type-config.service';\n\n/** The main class for configuring the behaviour of a model.\n * By default, everything is auto generated from the model's schema but can be overriden via the\n * set method. */\n@Injectable()\nexport class ModelConfigService extends Config {\n /** Array of property names that are omitted by default. */\n omittedFields: Array = [\n 'id',\n 'private',\n 'created',\n 'creator',\n 'modified'\n ];\n\n /** Injects CrudService and SdkService. */\n constructor(private crud: CrudService,\n private sdk: SdkService,\n private typeConfig: TypeConfigService,\n private symbol: SymbolService) {\n super();\n }\n\n /** Retrieves the given model config.\n * @example\n * ```typescript\n * ModelConfig.get('muffin'); //returns muffin config;\n * ```\n * */\n get(property: string): CrudConfig {\n return this.configure('model', property);\n }\n\n /** Sets the given model config.\n * @example\n * ```typescript\n * ModelConfig.set('muffin', {\n * fields: {\n * title: {\n * label: 'Muffin Titel'\n * }\n * });\n * ```\n * */\n set(property: string, config: CrudConfig): CrudConfig {\n return this.configure('model', property, config);\n }\n\n /** Returns the field config for all system fields */\n getSystemFields() {\n return {\n id: {\n label: this.symbol.resolve('field.label.id'),\n view: 'string',\n form: false,\n immutable: true,\n hideInList: true\n },\n _created: {\n label: this.symbol.resolve('field.label.created'),\n display: this.typeConfig.displayDate(),\n group: this.typeConfig.groupDate(),\n form: false,\n immutable: true,\n sortable: true,\n hideInList: true,\n rawFilter: true\n },\n _modified: {\n label: this.symbol.resolve('field.label.modified'),\n display: this.typeConfig.displayDate(),\n group: this.typeConfig.groupDate(),\n form: false,\n immutable: true,\n sortable: true,\n hideInList: false,\n rawFilter: true\n },\n _creator: {\n label: this.symbol.resolve('field.label.creator'),\n display: this.typeConfig.displayAccount(),\n view: 'account',\n form: false,\n immutable: true,\n hideInList: true\n }\n };\n }\n\n /** Parses config for fields that require leveled entries */\n getMinLevel(model: string, customFieldConfig?: FieldConfig) {\n return this.generateConfig(model, customFieldConfig)\n .then((modelConfig) => {\n const fieldConfig = modelConfig.fields;\n return Object.keys(fieldConfig)\n .filter(field => !!fieldConfig[field].type)\n .map(field => {\n const inputView = fieldConfig[field].inputView;\n const views = this.typeConfig.get(fieldConfig[field].type).inputViews || [];\n if (!inputView || !views) {\n return 1;\n }\n const match = views.find(v => v.name === inputView);\n return match ? match.levels || 1 : 1;\n }).reduce((max, lvl) => Math.max(max, lvl), 1);\n });\n }\n\n /** Returns the default field config for the given model.\n * Utilizes PublicAPI#getFieldConfig + TypeConfigService#get.\n * This config is meant to deliver the default behaviour when nothing else is configured. */\n getFieldConfig(model: string): Promise {\n return this.sdk.api.getFieldConfig(model).then((fieldConfig: fields) => {\n const merged = {};\n Object.assign(merged, this.getSystemFields());\n Object.keys(fieldConfig).map(property => fieldConfig[property])\n .forEach(({\n config,\n type,\n title,\n unique,\n mutable,\n readOnly,\n required,\n validation,\n description,\n localizable\n }) => {\n /* type = type as string; */\n config = config || {};\n if (type.includes('asset')) {\n type = type.replace('a', 'dmA');\n }\n // parse field config\n const { hideInList,\n hideInForm,\n hideOnCreate,\n hideOnEdit,\n placeholder,\n inputView,\n label,\n classes,\n columns = 12\n } = config;\n const typeConfig = this.typeConfig.get(type);\n // assign default values + merge customFieldConfig if given\n merged[title] = Object.assign({\n property: title,\n label: label || title + (type === 'datetime' ? ` ${this.symbol.resolve('datetime.local')}` : ''),\n placeholder,\n description,\n validation,\n relation: validation,\n immutable: !mutable,\n readOnly,\n hideInList,\n hideInForm,\n create: !hideOnCreate,\n edit: !hideOnEdit,\n classes,\n unique,\n required,\n columns,\n /* display: ((value) => value), */\n localizable,\n }, typeConfig, {\n placeholder: placeholder || typeConfig.placeholder,\n inputView: inputView || typeConfig.inputView || type\n });\n });\n return merged;\n });\n }\n\n /** Generates a CrudConfig for the given model.\n * Merges three configurations into one:\n * - default field config, obtained by getFieldConfig\n * - global model config (if any) configured via with set\n * - customFieldConfig: any custom field config that is merged on top of the other two.\n * This enables the developer to either customize at a global scale to target all lists/forms,\n * or just specific components. */\n generateConfig(model: string, customFieldConfig?: FieldConfig): Promise> {\n // first step: merge global model config with default entry config\n const modelConfig = Object.assign(this.get(model) || {}, {\n identifier: 'id',\n identifierPattern: /^[0-9A-Za-z-_]{7,14}$/, // shortID pattern\n label: '_entryTitle',\n onSave: (item: Item, value) => this.crud.save(model, item.getBody(), value)\n });\n return this.getFieldConfig(model)\n .then((fieldConfig: FieldConfig) => {\n const modelConfigFields = modelConfig.fields || {};\n const relevantKeys = Object.keys(customFieldConfig || modelConfigFields);\n const mergedFields = {};\n if (!relevantKeys.length) {\n modelConfig.fields = fieldConfig;\n } else {\n relevantKeys.forEach(key => {\n mergedFields[key] = Object.assign(\n {},\n fieldConfig[key] || {},\n modelConfigFields[key] || {},\n (customFieldConfig || {})[key]);\n });\n modelConfig.fields = mergedFields;\n }\n return modelConfig;\n });\n }\n /** Returns light model information */\n getLightModel(model) {\n return this.sdk.ready.then(() => this.sdk.api.modelList()).then((models) => models[model]);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ModelConfiguration.html":{"url":"interfaces/ModelConfiguration.html","title":"interface - ModelConfiguration","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n ModelConfiguration\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/model-config/model-configuration.interface.ts\n \n\n \n Description\n \n \n This is the interface for a model's configuration.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n fields\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n fields\n \n \n \n \n fields: FieldConfig\n\n \n \n\n\n \n \n Type : FieldConfig\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Array of FieldConfigProperty Objects. Sets up the behaviour of each field. \n\n \n \n \n \n \n \n\n\n \n import { FieldConfig } from '@ec.components/core';\n/** This is the interface for a model's configuration.*/\nexport interface ModelConfiguration {\n /** Array of FieldConfigProperty Objects. Sets up the behaviour of each field. */\n fields?: FieldConfig;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Notification.html":{"url":"classes/Notification.html","title":"class - Notification","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Notification\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/notifications/notification.ts\n \n\n \n Description\n \n \n A Notification is used inside NotificationService and NotificationComponent to display any information to the user.\n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n append\n \n \n Optional\n error\n \n \n Optional\n hide\n \n \n Optional\n host\n \n \n Optional\n message\n \n \n Optional\n replace\n \n \n Optional\n sticky\n \n \n Optional\n time\n \n \n Optional\n title\n \n \n Optional\n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(notification: Notification)\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:24\n \n \n\n \n \n The constructor just looks if an error is set, and if yes, sets the type to error. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n notification\n \n \n Notification\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Optional\n append\n \n \n \n \n \n \n \n append: []\n\n \n \n \n \n Type : []\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:22\n \n \n\n \n \n If set, the notification will be appended to the given array of Notifications when activated \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n error\n \n \n \n \n \n \n \n error: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:18\n \n \n\n \n \n If an error is given, the type will automatically be set to error. The error will be displayed inside the notification via ec-error.\n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n hide\n \n \n \n \n \n \n \n hide: []\n\n \n \n \n \n Type : []\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:20\n \n \n\n \n \n Notifications that should be hidden when this one gets active \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n host\n \n \n \n \n \n \n \n host: NotificationsComponent\n\n \n \n \n \n Type : NotificationsComponent\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:10\n \n \n\n \n \n The host the is NotificationsComponent that should display the notification. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n message\n \n \n \n \n \n \n \n message: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:8\n \n \n\n \n \n The message is shown below the title and is meant for further description. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n replace\n \n \n \n \n \n \n \n replace: []\n\n \n \n \n \n Type : []\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:24\n \n \n\n \n \n If set, the notification will replace all others in the given array of Notifications when activated \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n sticky\n \n \n \n \n \n \n \n sticky: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:14\n \n \n\n \n \n If true, the notification will stay forever \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n time\n \n \n \n \n \n \n \n time: number\n\n \n \n \n \n Type : number\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:12\n \n \n\n \n \n The amount of ms it should be visible \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n title\n \n \n \n \n \n \n \n title: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:6\n \n \n\n \n \n The title is the headline of a notification and the only value that is required. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n type\n \n \n \n \n \n \n \n type: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:16\n \n \n\n \n \n Determines the looks. Currently info, error and success are defined. \n\n \n \n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import { NotificationsComponent } from './notifications.component';\n\n/** A Notification is used inside NotificationService and NotificationComponent to display any information to the user.*/\nexport class Notification {\n /** The title is the headline of a notification and the only value that is required. */\n title?: string;\n /** The message is shown below the title and is meant for further description. */\n message?: string;\n /** The host the is NotificationsComponent that should display the notification. */\n host?: NotificationsComponent;\n /** The amount of ms it should be visible */\n time?: number;\n /** If true, the notification will stay forever */\n sticky?: boolean;\n /** Determines the looks. Currently info, error and success are defined. */\n type?: string;\n /** If an error is given, the type will automatically be set to error. The error will be displayed inside the notification via ec-error.*/\n error?: any;\n /** Notifications that should be hidden when this one gets active */\n hide?: this[];\n /** If set, the notification will be appended to the given array of Notifications when activated */\n append?: this[];\n /** If set, the notification will replace all others in the given array of Notifications when activated */\n replace?: this[];\n\n /** The constructor just looks if an error is set, and if yes, sets the type to error. */\n constructor(notification: Notification) {\n if (notification.error) {\n this.type = 'error';\n }\n Object.assign(this, notification);\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/NotificationsComponent.html":{"url":"components/NotificationsComponent.html","title":"component - NotificationsComponent","body":"\n \n\n\n\n\n\n Components\n NotificationsComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/notifications/notifications.component.ts\n\n\n \n Description\n \n \n Displays any kind of Notification inside the DOM.\nIt listens on the notificationService.$emitter for notifications.\nhttps://components.entrecode.de/ui/notifications?e=1\n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-notifications\n \n\n\n\n\n \n templateUrl\n ./notifications.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n notifications\n \n \n \n \n\n\n \n \n Inputs\n \n \n \n \n \n \n time\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(notificationService: NotificationsService)\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.component.ts:21\n \n \n\n \n \n Listens on the NotificationService and shows each notification that has this component set as host, or none at all. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n time\n \n \n The default time for a notification to be visible. Will be ignored if the notification itself has a time set. \n\n \n Type : number\n\n \n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.component.ts:21\n \n \n \n \n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Collection\n\n \n \n \n \n Type : Collection\n\n \n \n \n \n Default value : new Collection([])\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.component.ts:19\n \n \n\n \n \n The current stack of notifications that are visible. \n\n \n \n\n \n \n\n\n\n\n \n Notifications\nThe Notifications Module is a combination of the NotificationsService and the NotificationsComponent.\nSimple Usage\n\nPlace the component somewhere in your app template:\n\n\nEmit notifications via the service\n\nexport class MyComponent {\n constructor(private notifications: NotificationsService) {}\n\n showNotification() {\n this.notifications.emit({\n type: 'success',\n title: 'Das ist der Notification Titel',\n message: 'Das ist die Beschreibung'\n });\n }\n\n doSomethingRisky() {\n return Promise.reject('Fehler')\n .catch((err) => {\n this.notifications.emit({\n error: err, // passing the error Object\n title: 'Fehler!'\n })\n })\n }\n}The given type will be added as class. The classes that are available by default can be looked up here.\nAdvanced Usage\nYou can also use multiple ec-notifications at different places:\n\n\nA\nBAll you have to do, is pass the instance of the component that should display the notification via the host property:\nexport class MyComponent {\n constructor(private notifications: NotificationsService) {}\n\n emit(host) {\n this.notifications.emit({\n type: 'success',\n title: 'Das ist der Notification Titel',\n host: host\n });\n }\n}Hiding previous errors\nHere is an example usage of a typical success/error handling.\nIt features hiding previous notifications. We recommended you to use the WithNotifications interface for that case.\nexport class MuffinComponent implements WithNotifications {\n /** Recent Error notification */\n notifications: Notification[] = [];\n\nconstructor(\n public bakery:BakeryService,\n public notificationService: NotificationsService,\n )\n\n bake() {\n this.bakery.bake().then(()=> {\n this.notificationService.emit({\n title: 'Muffin was baken!',\n hide: this.notifications // this will hide all preceding notifications\n })\n }).catch(error=>{\n this.notificationService.emit({\n title: 'Error while baking',\n sticky: true,\n hide: this.notifications, // this will hide all preceding notifications\n replace: this.notifications // this will replace the given array with the new notification\n })\n });\n }\n}The hide option is useful to hide obsolete errors. E.g. If you successfully log in after one failiure, the sticky error notification of the first attempt will be hidden. This enables you to keep errors messages as long as they are needed.\nInstead of replace, you could also use append (see notification.component.ts for implementation).\n\n \n\n \n import { Component, Input } from '@angular/core';\nimport { Collection } from '@ec.components/core';\nimport { Notification } from './notification';\nimport { NotificationsService } from './notifications.service';\n\n/** Displays any kind of Notification inside the DOM.\n * It listens on the notificationService.$emitter for notifications.\n * https://components.entrecode.de/ui/notifications?e=1\n * */\n@Component({\n selector: 'ec-notifications',\n templateUrl: './notifications.component.html',\n})\nexport class NotificationsComponent {\n /** The current stack of notifications that are visible. */\n notifications: Collection = new Collection([]);\n /** The default time for a notification to be visible. Will be ignored if the notification itself has a time set. */\n @Input() time: number;\n\n /** Listens on the NotificationService and shows each notification that has this component set as host, or none at all. */\n constructor(private notificationService: NotificationsService) {\n this.time = this.time || this.notificationService.defaultTime;\n this.notificationService.emitter$.subscribe((notification: Notification) => {\n if (notification.hide) {\n this.notifications.removeAll(notification.hide);\n }\n if (!notification.title && !notification.message) {\n // console.warn('tried to emit notification without message and title', notification);\n return;\n }\n if (notification.append) {\n notification.append.push(notification);\n }\n if (notification.replace) {\n notification.replace.length = 0;\n notification.replace.push(notification);\n }\n\n if (!notification.host || notification.host === this) {\n this.notifications.add(notification);\n if (notification.sticky) {\n if (notification.time) {\n console.warn('notification.time is ignored because it was set sticky');\n }\n return;\n }\n setTimeout(() => this.notifications.remove(notification), notification.time || this.time);\n }\n });\n }\n}\n\n \n\n \n \n \n {{notification.title}}\n {{notification.message}}\n \n \n \n \n \n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{notification.title}} {{notification.message}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'NotificationsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/NotificationsModule.html":{"url":"modules/NotificationsModule.html","title":"module - NotificationsModule","body":"\n \n\n\n\n\n Modules\n NotificationsModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_NotificationsModule\n\n\n\ncluster_NotificationsModule_declarations\n\n\n\ncluster_NotificationsModule_imports\n\n\n\ncluster_NotificationsModule_exports\n\n\n\ncluster_NotificationsModule_providers\n\n\n\n\nErrorComponent\n\nErrorComponent\n\n\n\nNotificationsModule\n\nNotificationsModule\n\nNotificationsModule -->\n\nErrorComponent->NotificationsModule\n\n\n\n\n\nNotificationsComponent\n\nNotificationsComponent\n\nNotificationsModule -->\n\nNotificationsComponent->NotificationsModule\n\n\n\n\n\nErrorComponent \n\nErrorComponent \n\nErrorComponent -->\n\nNotificationsModule->ErrorComponent \n\n\n\n\n\nNotificationsComponent \n\nNotificationsComponent \n\nNotificationsComponent -->\n\nNotificationsModule->NotificationsComponent \n\n\n\n\n\nIconModule\n\nIconModule\n\nNotificationsModule -->\n\nIconModule->NotificationsModule\n\n\n\n\n\nPopModule\n\nPopModule\n\nNotificationsModule -->\n\nPopModule->NotificationsModule\n\n\n\n\n\nNotificationsService\n\nNotificationsService\n\nNotificationsModule -->\n\nNotificationsService->NotificationsModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/notifications/notifications.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n ErrorComponent\n \n \n NotificationsComponent\n \n \n \n \n Providers\n \n \n NotificationsService\n \n \n \n \n Imports\n \n \n IconModule\n \n \n PopModule\n \n \n \n \n Exports\n \n \n ErrorComponent\n \n \n NotificationsComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NotificationsComponent } from './notifications.component';\nimport { NotificationsService } from './notifications.service';\nimport { PopModule } from '../pop/pop.module';\nimport { ErrorComponent } from './error/error.component';\nimport { IconModule } from '../icon/icon.module';\n\n@NgModule({\n declarations: [\n NotificationsComponent,\n ErrorComponent,\n ],\n imports: [\n CommonModule,\n PopModule,\n IconModule,\n ],\n exports: [\n NotificationsComponent,\n ErrorComponent,\n ],\n providers: [\n {\n provide: 'useDesktopNotifications',\n useValue: false\n }, NotificationsService]\n})\nexport class NotificationsModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/NotificationsService.html":{"url":"injectables/NotificationsService.html","title":"injectable - NotificationsService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n NotificationsService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/notifications/notifications.service.ts\n \n\n \n Description\n \n \n This service is the main interaction layer for the developer to show notifications.\nYou can use desktop notifications by default by providing:\n {\n provide: \"useDesktopNotifications\",\n useValue: true\n }in your module's providers.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n defaultTime\n \n \n Private\n emitter\n \n \n Public\n emitter$\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n desktopNotification\n \n \n emit\n \n \n getPermission\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(useDesktopNotifications)\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:26\n \n \n\n \n \n The constructors injects the useDesktopNotifications flag from the module.\nIf true, all notifications will be shown as desktop notifications instead. \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n useDesktopNotifications\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n desktopNotification\n \n \n \n \n \n \n \ndesktopNotification(notification: Notification)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:61\n \n \n\n\n \n \n Emits a desktop notification after asking for permission (if not already granted). \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n notification\n \n Notification\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n emit\n \n \n \n \n \n \n \nemit(notification: Notification, desktop?: boolean)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:34\n \n \n\n\n \n \n Emits a notification to all ec-notification components. If host is set, it is only pushed to the specified host.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n notification\n \n Notification\n \n \n \n No\n \n \n\n \n \n desktop\n \n boolean\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPermission\n \n \n \n \n \n \n \ngetPermission()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:48\n \n \n\n\n \n \n Asks for permission to show desktop notifications, if not already granted. \n\n\n \n Returns : Promise\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n defaultTime\n \n \n \n \n \n \n \n defaultTime: number\n\n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 5000\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:26\n \n \n\n \n \n The default view time for a notification. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n emitter\n \n \n \n \n \n \n \n emitter: Subject\n\n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:22\n \n \n\n \n \n The emitter subject to fire notifications. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n emitter$\n \n \n \n \n \n \n \n emitter$: Observable\n\n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.emitter.asObservable()\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:24\n \n \n\n \n \n Observable that is nexted when a new notification comes in. \n\n \n \n\n \n \n\n\n \n\n\n \n import { Inject, Injectable } from '@angular/core';\nimport { Notification } from './notification';\nimport { Observable } from 'rxjs';\nimport { Subject } from 'rxjs';\n\n/** Workaround to get window without typescript complaining */\ndeclare const window;\n\n/** This service is the main interaction layer for the developer to show notifications.\n * You can use desktop notifications by default by providing:\n * ```json\n {\n provide: \"useDesktopNotifications\",\n useValue: true\n }```\n * in your module's providers.\n *\n * */\n@Injectable()\nexport class NotificationsService {\n /** The emitter subject to fire notifications. */\n private emitter: Subject = new Subject();\n /** Observable that is nexted when a new notification comes in. */\n public emitter$: Observable = this.emitter.asObservable();\n /** The default view time for a notification. */\n public defaultTime = 5000;\n\n /** The constructors injects the useDesktopNotifications flag from the module.\n * If true, all notifications will be shown as desktop notifications instead. */\n constructor(@Inject('useDesktopNotifications') private useDesktopNotifications) {\n }\n\n /** Emits a notification to all ec-notification components. If host is set, it is only pushed to the specified host.*/\n emit(notification: Notification, desktop?: boolean) {\n const instance = new Notification(notification);\n if (desktop || this.useDesktopNotifications) {\n this.desktopNotification(instance);\n } else {\n this.emitter.next(instance);\n }\n if (notification && notification.error) {\n console.error(notification.error);\n }\n return instance;\n }\n\n /** Asks for permission to show desktop notifications, if not already granted. */\n getPermission(): Promise {\n if (window.Notification.permission === 'granted') {\n return Promise.resolve();\n }\n return window.Notification.requestPermission().then((permission) => {\n // If the user accepts, let's create a notification\n if (permission !== 'granted') {\n return Promise.reject('Desktop Notification Permission Denied!');\n }\n });\n }\n\n /** Emits a desktop notification after asking for permission (if not already granted). */\n desktopNotification(notification: Notification) {\n if (!('Notification' in window)) {\n console.warn('This browser does not support desktop notification');\n }\n this.getPermission().then(() => {\n const message = new window.Notification(notification.title, { body: notification.message });\n if (notification.sticky) {\n if (notification.time) {\n console.warn('notification.time is ignored because it was set sticky');\n }\n return;\n }\n setTimeout(() => message.close(), notification.time || this.defaultTime);\n });\n }\n\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/OutputComponent.html":{"url":"components/OutputComponent.html","title":"component - OutputComponent","body":"\n \n\n\n\n\n\n Components\n OutputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/io/output/output.component.ts\n\n\n \n Description\n \n \n Outputs the given field of the given item, rendering the component dynamically. \n\n \n\n \n Extends\n \n \n DynamicSlotComponent\n \n\n \n Implements\n \n \n OnChanges\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-output\n \n\n\n\n\n \n templateUrl\n ../dynamic-slot/dynamic-slot.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n componentFactoryResolver\n \n \n fieldHost\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnChanges\n \n \n loadComponent\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n field\n \n \n item\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n field\n \n \n The instance of field that should be used in the template \n\n \n Type : Field\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/output/output.component.ts:14\n \n \n \n \n \n \n \n \n \n item\n \n \n The belonging item \n\n \n Type : Item\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/output/output.component.ts:16\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/output/output.component.ts:20\n \n \n\n\n \n \n The component is loade as soon as the field and item are known.\nIf the field has no output property set, the DefaultOutputComponent will be rendered. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n loadComponent\n \n \n \n \n \n \n \nloadComponent(component: Type, data: Object)\n \n \n\n\n \n \n Inherited from DynamicSlotComponent\n\n \n \n \n \n Defined in DynamicSlotComponent:18\n \n \n\n\n \n \n Loads the given component inside the fieldHost. Sets current item and field by default. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n component\n \n Type\n \n \n \n No\n \n \n \n \n\n \n \n data\n \n Object\n \n \n \n No\n \n \n \n {}\n \n\n \n \n \n \n \n \n \n Returns : ComponentRef\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n componentFactoryResolver\n \n \n \n \n \n \n \n componentFactoryResolver: ComponentFactoryResolver\n\n \n \n \n \n Type : ComponentFactoryResolver\n\n \n \n \n \n Inherited from DynamicSlotComponent\n\n \n \n \n \n Defined in DynamicSlotComponent:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n fieldHost\n \n \n \n \n \n \n \n fieldHost: SlotHostDirective\n\n \n \n \n \n Type : SlotHostDirective\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(SlotHostDirective)\n \n \n \n \n \n Inherited from DynamicSlotComponent\n\n \n \n \n \n Defined in DynamicSlotComponent:11\n \n \n\n \n \n The FieldHostDirective will be used to nest custom components into the field \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, Input, OnChanges, ChangeDetectionStrategy } from '@angular/core';\nimport { DynamicSlotComponent } from '../dynamic-slot/dynamic-slot.component';\nimport { Field, Item } from '@ec.components/core';\nimport { DefaultOutputComponent } from '../../form/default-output/default-output.component';\n\n/** Outputs the given field of the given item, rendering the component dynamically. */\n@Component({\n selector: 'ec-output',\n templateUrl: '../dynamic-slot/dynamic-slot.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class OutputComponent extends DynamicSlotComponent implements OnChanges {\n /** The instance of field that should be used in the template */\n @Input() field: Field;\n /** The belonging item */\n @Input() item: Item;\n\n /** The component is loade as soon as the field and item are known.\n * If the field has no output property set, the DefaultOutputComponent will be rendered. */\n ngOnChanges() {\n if (this.field && this.item) {\n this.loadComponent(this.field.output || DefaultOutputComponent,\n {\n item: this.item,\n field: this.field\n });\n }\n }\n}\n\n \n\n \n \n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'OutputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Pagination.html":{"url":"classes/Pagination.html","title":"class - Pagination","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Pagination\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/pagination/pagination.ts\n \n\n \n Description\n \n \n This class can be used to control the loading behaviour of external data. \n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n change\n \n \n Public\n change$\n \n \n Protected\n config\n \n \n Public\n pages\n \n \n Protected\n total\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n first\n \n \n getPage\n \n \n getPages\n \n \n isActive\n \n \n isFirst\n \n \n isLast\n \n \n last\n \n \n Protected\n load\n \n \n next\n \n \n params\n \n \n prev\n \n \n select\n \n \n setTotal\n \n \n slice\n \n \n updateSize\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(config?: ListConfig, total?: number)\n \n \n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:15\n \n \n\n \n \n You can init each Pagination instance with an optional config.\nIf no config is provided, it will default to {page: 1, size: 25}. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n \n ListConfig\n \n \n \n Yes\n \n \n \n \n total\n \n \n number\n \n \n \n Yes\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n change\n \n \n \n \n \n \n \n change: \n\n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:13\n \n \n\n \n \n Subject for tracking changes. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n change$\n \n \n \n \n \n \n \n change$: Observable\n\n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.change.asObservable()\n \n \n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:15\n \n \n\n \n \n Observable that is nexted when the pagination has changed. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Protected\n config\n \n \n \n \n \n \n \n config: ListConfig\n\n \n \n \n \n Type : ListConfig\n\n \n \n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:9\n \n \n\n \n \n The pagination config \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n pages\n \n \n \n \n \n \n \n pages: Array\n\n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:11\n \n \n\n \n \n Array to iterate over the number of pages. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Protected\n total\n \n \n \n \n \n \n \n total: number\n\n \n \n \n \n Type : number\n\n \n \n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:7\n \n \n\n \n \n The total number of items that is being paginated. It can be changed via setTotal. \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n first\n \n \n \n \n \n \n \nfirst()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:93\n \n \n\n\n \n \n Loads the first Page \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPage\n \n \n \n \n \n \n \ngetPage()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:33\n \n \n\n\n \n \n Retrieves the current page \n\n\n \n Returns : number\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPages\n \n \n \n \n \n \n \ngetPages()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:38\n \n \n\n\n \n \n Retrieves the number of pages \n\n\n \n Returns : number\n\n \n \n \n \n \n \n \n \n \n \n \n \n isActive\n \n \n \n \n \n \n \nisActive(page: number)\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:107\n \n \n\n\n \n \n Returns true if the given page number is currently active.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n page\n \n number\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isFirst\n \n \n \n \n \n \n \nisFirst()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:112\n \n \n\n\n \n \n Returns true if the current page is the first one \n\n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n isLast\n \n \n \n \n \n \n \nisLast()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:117\n \n \n\n\n \n \n Returns true if the current page is the last one \n\n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n last\n \n \n \n \n \n \n \nlast()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:98\n \n \n\n\n \n \n Loads the last page \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Protected\n load\n \n \n \n \n \n \n \n \n load(config?: ListConfig)\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:76\n \n \n\n\n \n \n Merges config and fires next on change \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n ListConfig\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n next\n \n \n \n \n \n \n \nnext()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:43\n \n \n\n\n \n \n Loads the next page. Throws error if already on last page. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n params\n \n \n \n \n \n \n \nparams()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:130\n \n \n\n\n \n \n Returns an object with all relevant infos about the current state of pagination \n\n\n \n Returns : { page: number; pages: number; total: number; from: number; to: any; size: any; availableSizes: a...\n\n \n \n \n \n \n \n \n \n \n \n \n \n prev\n \n \n \n \n \n \n \nprev()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:52\n \n \n\n\n \n \n Loads the previous page. Throws error if already on first page. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \n \nselect(page: number, silent)\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:84\n \n \n\n\n \n \n Selects the given page number \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n page\n \n number\n \n \n \n No\n \n \n \n \n\n \n \n silent\n \n \n \n \n No\n \n \n \n false\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setTotal\n \n \n \n \n \n \n \nsetTotal(total: number)\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:63\n \n \n\n\n \n \n Sets the total number of items and calculcates the page count.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n total\n \n number\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n slice\n \n \n \n \n \n \n \nslice(items: Array)\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:125\n \n \n\n\n \n \n slices a given array according to the current pagination state \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n items\n \n Array\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateSize\n \n \n \n \n \n \n \nupdateSize(size: number)\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:142\n \n \n\n\n \n \n updates the size of the pages. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n size\n \n number\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n\n \n Pagination\nPagination can be used to keep track of the pages of arbitrary items.\nconst pagination = new Pagination({ size: 10 });\npagination.setTotal(50); //tells the pagination that it should paginate over 50 items.\npagination.getPages(); //5See list.ts/list.component for example usage.\n\n \n\n \n import { Subject, Observable } from 'rxjs';\nimport { ListConfig } from '../list/list-config.interface';\n\n/** This class can be used to control the loading behaviour of external data. */\nexport class Pagination {\n /** The total number of items that is being paginated. It can be changed via setTotal. */\n protected total: number;\n /** The pagination config */\n protected config: ListConfig;\n /** Array to iterate over the number of pages. */\n public pages: Array;\n /** Subject for tracking changes. */\n private change = new Subject();\n /** Observable that is nexted when the pagination has changed. */\n public change$: Observable = this.change.asObservable();\n\n /** You can init each Pagination instance with an optional config.\n * If no config is provided, it will default to ```{page: 1, size: 25}```. */\n constructor(config?: ListConfig, total?: number) {\n this.config = { page: 1, size: 25 };\n Object.assign(this.config, config);\n Object.assign(this.config, {\n availableSizes: Array.from(new Set([this.config.size]\n .concat(this.config.availableSizes || [10, 25, 50, 100], [this.config.size])\n .sort(((a, b) => a - b))))\n });\n if (total) {\n this.setTotal(total);\n }\n }\n\n /** Retrieves the current page */\n getPage(): number {\n return this.config.page;\n }\n\n /** Retrieves the number of pages */\n getPages(): number {\n return this.pages ? this.pages.length : 0;\n }\n\n /** Loads the next page. Throws error if already on last page. */\n next(): void {\n if (this.isLast()) {\n return; // already last page\n }\n this.config.page += 1;\n this.load();\n }\n\n /** Loads the previous page. Throws error if already on first page. */\n prev(): void {\n if (this.isFirst()) {\n return; // already first page\n }\n this.config.page -= 1;\n this.load();\n }\n\n /**\n * Sets the total number of items and calculcates the page count.\n * */\n setTotal(total: number) {\n /* if (this.total !== total) {\n this.change.next(this.config);\n } */\n this.total = total;\n this.pages = new Array(Math.ceil(this.total / this.config.size));\n if (this.config.page !== 1 && this.config.page > this.pages.length) {\n this.config.page = this.pages.length || 1;\n this.load();\n }\n }\n\n /** Merges config and fires next on change */\n protected load(config?: ListConfig): void {\n if (config) {\n Object.assign(this.config, config);\n }\n this.change.next(this.config);\n }\n\n /** Selects the given page number */\n select(page: number, silent = false): void {\n if (page === this.config.page || silent) {\n this.config.page = page;\n return;\n }\n this.load({ page: page });\n }\n\n /** Loads the first Page */\n first(): void {\n this.load({ page: 1 });\n }\n\n /** Loads the last page */\n last() {\n if (!this.pages) {\n throw new Error(`Cannot load last page without knowing the item count.\n Call setTotal(itemCount) before loading.`);\n }\n this.load({ page: this.pages.length });\n }\n\n /** Returns true if the given page number is currently active.*/\n isActive(page: number): boolean {\n return this.config.page === page;\n }\n\n /** Returns true if the current page is the first one */\n isFirst(): boolean {\n return this.config.page === 1;\n }\n\n /** Returns true if the current page is the last one */\n isLast(): boolean {\n if (!this.pages) {\n return true;\n }\n return this.config.page === this.pages.length;\n }\n\n /** slices a given array according to the current pagination state */\n slice(items: Array): Array {\n return items.slice((this.config.page - 1) * this.config.size, (this.config.page) * this.config.size);\n }\n\n /** Returns an object with all relevant infos about the current state of pagination */\n params() {\n return {\n page: this.getPage(),\n pages: this.getPages(),\n total: this.total,\n from: (this.getPage() - 1) * this.config.size + 1,\n to: Math.min(this.getPage() * this.config.size, this.total),\n size: this.config.size,\n availableSizes: this.config.availableSizes,\n };\n }\n /** updates the size of the pages. */\n updateSize(size: number) {\n if (!size) {\n return;\n }\n this.load({ size, page: 1 });\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/PaginationComponent.html":{"url":"components/PaginationComponent.html","title":"component - PaginationComponent","body":"\n \n\n\n\n\n\n Components\n PaginationComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/list/pagination/pagination.component.ts\n\n\n \n Description\n \n \n The Pagination component renders a given instance of the Pagination class.\n\n \n\n\n \n Implements\n \n \n OnChanges\n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-pagination\n \n\n\n\n\n \n templateUrl\n ./pagination.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n container\n \n \n Private\n page\n \n \n Private\n pageContainer\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n isVisible\n \n \n ngOnChanges\n \n \n ngOnInit\n \n \n updateSize\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n config\n \n \n pagination\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n config\n \n \n The config that is used \n\n \n Type : PaginationConfig\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:23\n \n \n \n \n \n \n \n \n \n pagination\n \n \n A Pagination Instance \n\n \n Type : Pagination\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:15\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n isVisible\n \n \n \n \n \n \n \nisVisible(page)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:39\n \n \n\n\n \n \n Determines if a page should be visible \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n page\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:31\n \n \n\n\n \n \n As soon as the pagination is known, the change$ event is subscribed to translate the container on change.\n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:26\n \n \n\n\n \n \n Init config. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n updateSize\n \n \n \n \n \n \n \nupdateSize(value: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:45\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n container\n \n \n \n \n \n \n \n container: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('container')\n \n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:17\n \n \n\n \n \n The div container for the pages\n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n page\n \n \n \n \n \n \n \n page: QueryList\n\n \n \n \n \n Type : QueryList\n\n \n \n \n \n Decorators : \n \n \n @ViewChildren('page')\n \n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:21\n \n \n\n \n \n The pages li elements. The first one is used to determine the container translation. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n pageContainer\n \n \n \n \n \n \n \n pageContainer: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('pageContainer')\n \n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:19\n \n \n\n \n \n The ul around pages \n\n \n \n\n \n \n\n\n\n\n \n Pagination\nTODO\n\n \n\n \n import { Component, ElementRef, Input, OnInit, QueryList, ViewChild, ViewChildren } from '@angular/core';\nimport { OnChanges } from '@angular/core/src/metadata/lifecycle_hooks';\nimport { Pagination } from '@ec.components/core';\nimport { PaginationConfig } from './pagination-config.interface';\n\n/**\n * The Pagination component renders a given instance of the Pagination class.\n */\n@Component({\n selector: 'ec-pagination',\n templateUrl: './pagination.component.html',\n})\nexport class PaginationComponent implements OnChanges, OnInit {\n /** A Pagination Instance */\n @Input() pagination: Pagination;\n /** The div container for the pages*/\n @ViewChild('container') private container: ElementRef;\n /** The ul around pages */\n @ViewChild('pageContainer') private pageContainer: ElementRef;\n /** The pages li elements. The first one is used to determine the container translation. */\n @ViewChildren('page') private page: QueryList;\n /** The config that is used */\n @Input() config: PaginationConfig;\n\n /** Init config. */\n ngOnInit() {\n this.config = new PaginationConfig(this.config);\n }\n\n /** As soon as the pagination is known, the change$ event is subscribed to translate the container on change.*/\n ngOnChanges() {\n if (!this.pagination) {\n return;\n }\n this.config = new PaginationConfig(this.config);\n }\n\n /** Determines if a page should be visible */\n isVisible(page) {\n const current = this.pagination.getPage();\n return Math.abs(current - page) \n \n\n \n \n 1&&!pagination?.isFirst()\">\n \n \n {{'pagination.first' | symbol}}\n \n \n \n \n {{'pagination.prev' | symbol}}\n \n \n \n 1\">\n \n \n \n {{i+1}}\n \n \n \n \n 1&&!pagination?.isLast()\">\n \n \n {{'pagination.next' | symbol}}\n \n \n \n \n {{'pagination.last' | symbol}}\n \n \n \n \n {{pagination?.params()?.from}} - {{pagination?.params()?.to}} {{ 'pagination.of' | symbol}} {{pagination?.params()?.total}}\n \n \n 1\" (change)=\"updateSize($event.target.value)\" class=\"input\">\n \n {{size}} {{'pagination.size' | symbol}}\n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' 1&&!pagination?.isFirst()\"> {{\\'pagination.first\\' | symbol}} {{\\'pagination.prev\\' | symbol}} 1\"> {{i+1}} 1&&!pagination?.isLast()\"> {{\\'pagination.next\\' | symbol}} {{\\'pagination.last\\' | symbol}} {{pagination?.params()?.from}} - {{pagination?.params()?.to}} {{ \\'pagination.of\\' | symbol}} {{pagination?.params()?.total}} 1\" (change)=\"updateSize($event.target.value)\" class=\"input\"> {{size}} {{\\'pagination.size\\' | symbol}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'PaginationComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/PaginationConfig.html":{"url":"classes/PaginationConfig.html","title":"class - PaginationConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n PaginationConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/list/pagination/pagination-config.interface.ts\n \n\n \n Description\n \n \n Configuration for a pagination component \n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n hideFirstLast\n \n \n hidePages\n \n \n range\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(config: PaginationConfig)\n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination-config.interface.ts:11\n \n \n\n \n \n The constructor assigns the config \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n \n PaginationConfig\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n hideFirstLast\n \n \n \n \n \n \n \n hideFirstLast: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination-config.interface.ts:9\n \n \n\n \n \n Hides first and last Link \n\n \n \n\n \n \n \n \n \n \n \n \n \n hidePages\n \n \n \n \n \n \n \n hidePages: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination-config.interface.ts:11\n \n \n\n \n \n Hides pages \n\n \n \n\n \n \n \n \n \n \n \n \n \n range\n \n \n \n \n \n \n \n range: number\n\n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 2\n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination-config.interface.ts:7\n \n \n\n \n \n Range of displayed pages in the UI. Controls the number of pages before and after the current page. Defaults to 3.\nNOTE: For a smoother UX, there are minimum 2 * range + 1 pages visible.\n\n \n \n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import { SymbolService } from '../../symbol/symbol.service';\n\n/** Configuration for a pagination component */\nexport class PaginationConfig {\n /** Range of displayed pages in the UI. Controls the number of pages before and after the current page. Defaults to 3.\n * NOTE: For a smoother UX, there are minimum ```2 * range + 1``` pages visible.*/\n range = 2;\n /** Hides first and last Link */\n hideFirstLast: boolean;\n /** Hides pages */\n hidePages: boolean;\n /** The constructor assigns the config */\n constructor(config: PaginationConfig) {\n Object.assign(this, config);\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/PasswordResetComponent.html":{"url":"components/PasswordResetComponent.html","title":"component - PasswordResetComponent","body":"\n \n\n\n\n\n\n Components\n PasswordResetComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/data/src/lib/auth/password-reset/password-reset.component.ts\n\n\n \n Description\n \n \n Form to send password reset request.\nhttps://components.entrecode.de/auth/password-reset?e=1\n\n \n\n\n \n Implements\n \n \n WithLoader\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-password-reset\n \n\n\n\n\n \n templateUrl\n password-reset.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n auth\n \n \n email\n \n \n loader\n \n \n lockForm\n \n \n Public\n notifications\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n reset\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n placeholder\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n success\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(auth: AuthService, notifications: NotificationsService)\n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:27\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n auth\n \n \n AuthService\n \n \n \n No\n \n \n \n \n notifications\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n Optional api to be used (if not using sdk.api instance) \n\n \n Type : PublicAPI\n\n \n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:21\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n Custom placeholder for email field \n\n \n Default value : 'E-Mail Adresse...'\n \n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:23\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n success\n \n \n Event after request was successful \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:25\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n reset\n \n \n \n \n \n \n \nreset()\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:32\n \n \n\n\n \n \n Sends request through AuthService and shows notifications + loader. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n auth\n \n \n \n \n \n \n \n auth: AuthService\n\n \n \n \n \n Type : AuthService\n\n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n email\n \n \n \n \n \n \n \n email: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:19\n \n \n\n \n \n The user email \n\n \n \n\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: \n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LoaderComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:27\n \n \n\n \n \n The loader \n\n \n \n\n \n \n \n \n \n \n \n \n \n lockForm\n \n \n \n \n \n \n \n lockForm: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:17\n \n \n\n \n \n To ensure the user only sends one request, the form is locked after the request has been sent \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n notifications\n \n \n \n \n \n \n \n notifications: NotificationsService\n\n \n \n \n \n Type : NotificationsService\n\n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:29\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';\nimport PublicAPI from 'ec.sdk/lib/PublicAPI';\nimport { LoaderComponent, NotificationsService, WithLoader } from '@ec.components/ui';\nimport { AuthService } from '../auth.service';\n\n/** Form to send password reset request.\n * https://components.entrecode.de/auth/password-reset?e=1\n *\n*/\n@Component({\n selector: 'ec-password-reset',\n templateUrl: 'password-reset.component.html'\n})\n\nexport class PasswordResetComponent implements WithLoader {\n /** To ensure the user only sends one request, the form is locked after the request has been sent */\n lockForm: boolean;\n /** The user email */\n email: string;\n /** Optional api to be used (if not using sdk.api instance) */\n @Input() api: PublicAPI;\n /** Custom placeholder for email field */\n @Input() placeholder = 'E-Mail Adresse...';\n /** Event after request was successful */\n @Output() success: EventEmitter = new EventEmitter();\n /** The loader */\n @ViewChild(LoaderComponent) loader;\n\n constructor(public auth: AuthService, public notifications: NotificationsService) {\n }\n /** Sends request through AuthService and shows notifications + loader. */\n reset() {\n const reset = this.auth.resetPassword(this.email, this.api)\n .then(() => {\n this.notifications.emit({\n type: 'success',\n title: 'Mail versendet',\n message: 'Sie haben soeben eine Mail mit weiteren Anweisungen erhalten',\n sticky: true\n });\n this.lockForm = true;\n this.success.emit();\n }).catch((error) => {\n this.notifications.emit({\n title: 'Fehler beim Passwort zurücksetzen',\n error,\n sticky: true\n });\n console.log('could not reset password', error);\n });\n this.loader.wait(reset);\n }\n}\n\n \n\n \n \n\n \n \n \n \n {{'passwordReset.button' | symbol}}\n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{\\'passwordReset.button\\' | symbol}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'PasswordResetComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/PopComponent.html":{"url":"components/PopComponent.html","title":"component - PopComponent","body":"\n \n\n\n\n\n\n Components\n PopComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/pop/pop.component.ts\n\n\n \n Description\n \n \n A Pop is an area of content whose visibility can be toggled.\nIt can be used e.g as dialog, drawer or dialog.\nhttps://components.entrecode.de/ui/pop?e=1\n\n \n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-pop\n \n\n\n\n\n \n templateUrl\n ./pop.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n activated\n \n \n clickEvent\n \n \n Public\n elementRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n hide\n \n \n isOutside\n \n \n Public\n show\n \n \n Public\n toggle\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n active\n \n \n hideOnClickOutside\n \n \n type\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n toggle\n \n \n \n \n\n\n \n \n HostListeners\n \n \n \n \n \n \n document:click\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(popService: PopService, elementRef: ElementRef, cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:52\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n popService\n \n \n PopService\n \n \n \n No\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n active\n \n \n If true, .ec-pop is part of the DOM (*ngIf) + .active is set on .ec-pop-container. \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:29\n \n \n \n \n \n \n \n \n \n hideOnClickOutside\n \n \n If set to true, the pop will hide when a click happens outside the pop. \n\n \n Default value : false\n \n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:35\n \n \n \n \n \n \n \n \n \n type\n \n \n The used type on the host element \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:33\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n toggle\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:37\n \n \n \n \n\n\n \n HostListeners \n \n \n \n \n \n \n document:click\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndocument:click($event)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:42\n \n \n\n\n \n \n Listens for document:click and hides \n\n\n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n hide\n \n \n \n \n \n \n \n \n hide()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:90\n \n \n\n\n \n \n Hides the pop. Sets active false and removes pop from popService.stack \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n isOutside\n \n \n \n \n \n \n \nisOutside(element)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:61\n \n \n\n\n \n \n yields true if the given element is outside the pop / or is the wrapper element itself (the backdrop) \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n element\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n show\n \n \n \n \n \n \n \n \n show(e?)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:77\n \n \n\n\n \n \n Shows the pop. Sets active true and adds pop to popService.stack \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n toggle\n \n \n \n \n \n \n \n \n toggle(e?)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:67\n \n \n\n\n \n \n Shows if not active, hides if active. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n activated\n \n \n \n \n \n \n \n activated: \n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:31\n \n \n\n \n \n Flip and stays true after first show \n\n \n \n\n \n \n \n \n \n \n \n \n \n clickEvent\n \n \n \n \n \n \n \n clickEvent: \n\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:39\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:55\n \n \n\n\n \n \n\n\n\n\n \n Pop\nA Pop is not just a modal, but a section of markup that appears (pops) anywhere and with any style on your page.\nUsage\n\n \n Close\n \n \n Some body content\n \n \n This is the footer\n \n\nShow popThe default pop classes can be looked up here.\n\n \n\n \n import {\n Component,\n EventEmitter,\n Input,\n Output,\n HostBinding,\n OnInit,\n HostListener,\n ElementRef,\n ChangeDetectionStrategy,\n ChangeDetectorRef\n} from '@angular/core';\nimport { PopService } from './pop.service';\n\n/** A Pop is an area of content whose visibility can be toggled.\n * It can be used e.g as dialog, drawer or dialog.\n * https://components.entrecode.de/ui/pop?e=1\n * */\n@Component({\n selector: 'ec-pop',\n templateUrl: './pop.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class PopComponent {\n /** If true, .ec-pop is part of the DOM (*ngIf) + .active is set on .ec-pop-container. */\n @Input() @HostBinding('class.is-active') active: boolean;\n /** Flip and stays true after first show */\n activated = false;\n /** The used type on the host element */\n @Input() type: string;\n /** If set to true, the pop will hide when a click happens outside the pop. */\n @Input() hideOnClickOutside = false;\n // tslint:disable-next-line:no-output-rename\n @Output('toggle') _toggle: EventEmitter = new EventEmitter();\n\n clickEvent;\n\n /** Listens for document:click and hides */\n @HostListener('document:click', ['$event']) clickedOutside($event) {\n if (\n this.hideOnClickOutside &&\n this.active &&\n this.clickEvent &&\n $event !== this.clickEvent && // to ensure the show event wont hide immediately\n this.elementRef &&\n this.isOutside($event.target)) {\n this.hide();\n }\n }\n\n constructor(protected popService: PopService,\n public elementRef: ElementRef,\n protected cdr: ChangeDetectorRef\n ) {\n }\n\n /** yields true if the given element is outside the pop / or is the wrapper element itself (the backdrop) */\n isOutside(element) {\n return !this.elementRef.nativeElement.contains(element)/* ||\n element === this.elementRef.nativeElement */;\n }\n\n /** Shows if not active, hides if active. */ // active: boolean = !this.active, emit: boolean = false\n public toggle(e?) {\n if (this.active) {\n this.hide();\n } else {\n this.show(e);\n }\n this._toggle.emit(this.active);\n }\n\n /** Shows the pop. Sets active true and adds pop to popService.stack */\n public show(e?) {\n this.active = true;\n this.activated = true;\n this.popService.stack.add(this);\n if (e) {\n this.clickEvent = e;\n } else if (this.hideOnClickOutside) {\n // console.warn('To use hideOnClickOutside, you need to pass the click event to the show method of ec-pop!');\n }\n this.cdr.markForCheck();\n }\n\n /** Hides the pop. Sets active false and removes pop from popService.stack */\n public hide() {\n this.popService.stack.remove(this);\n this.active = false;\n this.cdr.markForCheck();\n }\n}\n\n \n\n \n \n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'PopComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/PopModule.html":{"url":"modules/PopModule.html","title":"module - PopModule","body":"\n \n\n\n\n\n Modules\n PopModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_PopModule\n\n\n\ncluster_PopModule_declarations\n\n\n\ncluster_PopModule_imports\n\n\n\ncluster_PopModule_exports\n\n\n\ncluster_PopModule_providers\n\n\n\n\nModalComponent\n\nModalComponent\n\n\n\nPopModule\n\nPopModule\n\nPopModule -->\n\nModalComponent->PopModule\n\n\n\n\n\nPopComponent\n\nPopComponent\n\nPopModule -->\n\nPopComponent->PopModule\n\n\n\n\n\nModalComponent \n\nModalComponent \n\nModalComponent -->\n\nPopModule->ModalComponent \n\n\n\n\n\nPopComponent \n\nPopComponent \n\nPopComponent -->\n\nPopModule->PopComponent \n\n\n\n\n\nIconModule\n\nIconModule\n\nPopModule -->\n\nIconModule->PopModule\n\n\n\n\n\nPopService\n\nPopService\n\nPopModule -->\n\nPopService->PopModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/pop/pop.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n ModalComponent\n \n \n PopComponent\n \n \n \n \n Providers\n \n \n PopService\n \n \n \n \n Imports\n \n \n IconModule\n \n \n \n \n Exports\n \n \n ModalComponent\n \n \n PopComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { PopComponent } from './pop.component';\nimport { PopService } from './pop.service';\nimport { ModalComponent } from '../modal/modal.component';\nimport { IconModule } from '../icon/icon.module';\n\nexport const popModuleConfig = {\n declarations: [\n PopComponent,\n ModalComponent,\n ],\n imports: [\n CommonModule,\n IconModule\n ],\n exports: [\n PopComponent,\n ModalComponent,\n ],\n providers: [PopService]\n};\n\n@NgModule(popModuleConfig)\nexport class PopModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/PopService.html":{"url":"injectables/PopService.html","title":"injectable - PopService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n PopService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/pop/pop.service.ts\n \n\n \n Description\n \n \n Holds a stack of all open pops. listens for escape keydown events to close the latest opened pop. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n defaultColumns\n \n \n stack\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.service.ts:11\n \n \n\n \n \n Listens for escape keys and hides latest pop + removes the pop from stack \n\n \n \n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n defaultColumns\n \n \n \n \n \n \n \n defaultColumns: number\n\n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 9\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.service.ts:9\n \n \n\n \n \n default value for columns of any pop \n\n \n \n\n \n \n \n \n \n \n \n \n \n stack\n \n \n \n \n \n \n \n stack: Collection\n\n \n \n \n \n Type : Collection\n\n \n \n \n \n Default value : new Collection()\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.service.ts:11\n \n \n\n \n \n Stack of current opened pops \n\n \n \n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Collection } from '@ec.components/core';\nimport { PopComponent } from './pop.component';\n\n/** Holds a stack of all open pops. listens for escape keydown events to close the latest opened pop. */\n@Injectable()\nexport class PopService {\n /** default value for columns of any pop */\n defaultColumns = 9;\n /** Stack of current opened pops */\n stack: Collection = new Collection();\n /** Listens for escape keys and hides latest pop + removes the pop from stack */\n constructor() {\n window.addEventListener('keydown', (event) => {\n if ((event.keyCode === 27 || event.key === 'Escape') && this.stack.items.length) {\n const latestPop = this.stack.items[this.stack.items.length - 1];\n latestPop.hide();\n this.stack.remove(latestPop);\n }\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ResourceActionbarState.html":{"url":"interfaces/ResourceActionbarState.html","title":"interface - ResourceActionbarState","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n ResourceActionbarState\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/resource-actionbar/resource-actionbar.component.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n action\n \n \n actionbar\n \n \n api\n \n \n Optional\n options\n \n \n relation\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n action\n \n \n \n \n action: ActionFunction\n\n \n \n\n\n \n \n Type : ActionFunction\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n actionbar\n \n \n \n \n actionbar: ActionbarComponent\n\n \n \n\n\n \n \n Type : ActionbarComponent\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n api\n \n \n \n \n api: Core\n\n \n \n\n\n \n \n Type : Core\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n options\n \n \n \n \n options: Object\n\n \n \n\n\n \n \n Type : Object\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n relation\n \n \n \n \n relation: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { Component, OnInit, ElementRef, Input, ChangeDetectorRef, EventEmitter, Output } from '@angular/core';\nimport { ActionbarComponent, Action, ActionFunction, selectTemplate } from '@ec.components/ui';\nimport { NotificationsService, ListComponent } from '@ec.components/ui';\nimport { ResourceConfig } from '../resource-config/resource-config.service';\nimport ListResource from 'ec.sdk/lib/resources/ListResource';\nimport Core from 'ec.sdk/lib/Core';\nimport { Item } from '@ec.components/core';\nimport { SdkService } from '../sdk/sdk.service';\n\nexport interface ResourceActionbarState {\n api: Core;\n relation: string;\n actionbar: ActionbarComponent;\n action?: ActionFunction;\n options?: Object;\n}\n\n@Component({\n selector: 'ec-resource-actionbar',\n template: selectTemplate\n})\nexport class ResourceActionbarComponent extends ActionbarComponent implements OnInit {\n\n state: ResourceActionbarState;\n\n @Output() create: EventEmitter = new EventEmitter();\n @Output() select: EventEmitter> = new EventEmitter();\n\n @Input() actions: Action[];\n\n constructor(\n public notificationService: NotificationsService,\n public sdk: SdkService,\n public resourceConfig: ResourceConfig,\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef,\n ) {\n super(elementRef, cdr);\n }\n\n ngOnInit() {\n const state = {\n api: this.sdk.api,\n relation: 'tags'\n };\n const { api, relation } = state;\n this.sdk.ready.then(() => {\n this.loadResourceListActions({\n api,\n relation,\n actionbar: this\n });\n });\n }\n\n getResourceListActions(listResource: ListResource, relation: string, action?: ActionFunction): Action[] {\n const actions: Action[] = listResource.getAllItems()\n .map((resource) => {\n const { identifier, label } = this.resourceConfig.get(relation);\n return {\n id: resource[identifier],\n title: resource[label] || '- no title -',\n data: resource,\n path: relation,\n action: (item, bar) => {\n if (action) {\n action(item.getBody().data, bar);\n } else {\n console.log('no action specified..');\n }\n }\n };\n });\n if (listResource.hasNextLink()) {\n actions.push({\n id: 'next-page',\n title: `Load Page`,\n path: null,\n data: {},\n select: false,\n action: () => {\n listResource.followNextLink().then((list) => {\n const concatted = this.list.items\n .map(i => i.getBody())\n .filter(i => i.id !== 'next-page')\n .concat(this.getResourceListActions(list, relation, action));\n this.loadActions(concatted);\n });\n }\n });\n }\n return actions;\n }\n\n reload() {\n this.loadResourceListActions({\n ...this.state,\n options: {}\n });\n }\n\n loadResourceListActions(state: ResourceActionbarState = this.state, stack = true): Promise {\n const { api, relation, actionbar, action, options } = state;\n this.state = {\n ...this.state,\n ...state\n };\n const loading = api.resourceList(relation, options)\n .then(list => {\n return this.getResourceListActions(list, relation, action);\n }).then(actions => {\n if (actions) {\n actionbar.loadActions(actions, stack);\n }\n return actions;\n }).catch(error => {\n this.notificationService.emit({\n title: 'Error while loading Resources',\n error\n });\n }).then(actions => actions || []);\n if (actionbar.dropdownLoader) {\n actionbar.dropdownLoader.wait(loading);\n }\n return loading;\n }\n\n resourceAction({ relation, title, api, action, actionbar, add, path }:\n {\n relation: string,\n title: string,\n api: Core,\n action?: ActionFunction,\n actionbar?: ActionbarComponent,\n add?: boolean,\n path?: string\n }) {\n return {\n id: path || relation,\n title: title,\n add,\n action: () => this.loadResourceListActions(\n { api, relation, actionbar, action }\n )\n };\n }\n\n filterDropdownList(listComponent: ListComponent, query) {\n const paths = this.currentActions()\n .map(a => a.path)\n .filter((value, index, self) => self.indexOf(value) === index)\n .filter(v => !!v);\n if (!paths.length) {\n return super.filterDropdownList(listComponent, query);\n }\n const { identifier, label } = this.resourceConfig.get(this.state.relation);\n this.loadResourceListActions({\n ...this.state,\n options: {\n [label + '~']: { exact: query }\n }\n }, false).then((actions) => {\n if (actions.length === 0) {\n this.loadActions([{\n title: `\"${query}\" erstellen`,\n id: 'createnew',\n select: false,\n action: () => {\n if (this.create.observers.length) {\n this.create.emit(query);\n } else {\n const item = new Item({\n id: Date.now() + '',\n title: query,\n }, this.config);\n this.addItem(item);\n this.searchbar.clear();\n this.reload();\n }\n }\n }], false);\n }\n });\n\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ResourceConfig.html":{"url":"injectables/ResourceConfig.html","title":"injectable - ResourceConfig","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n ResourceConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/resource-config/resource-config.service.ts\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n base64uuid\n \n \n created\n \n \n get\n \n \n hexColor\n \n \n shortID\n \n \n stringField\n \n \n tagsField\n \n \n uuid\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n config\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(symbol: SymbolService, typeConfig: TypeConfigService)\n \n \n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:10\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n typeConfig\n \n \n TypeConfigService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n base64uuid\n \n \n \n \n \n \n \nbase64uuid()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:70\n \n \n\n\n \n \n regex for base64 uuid \n\n\n \n Returns : RegExp\n\n \n \n \n \n \n \n \n \n \n \n \n \n created\n \n \n \n \n \n \n \ncreated(label: string, symbol: SymbolService)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:24\n \n \n\n\n \n \n returns the config for a created field \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n label\n \n string\n \n \n \n No\n \n \n \n 'Date'\n \n\n \n \n symbol\n \n SymbolService\n \n \n \n No\n \n \n \n \n\n \n \n \n \n \n \n \n Returns : { label: string; sortable: boolean; view: string; display: any; group: any; form: boolean; immuta...\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n get\n \n \n \n \n \n \n \nget(relationName: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:14\n \n \n\n\n \n \n Returns the CrudConfig for the given relation name. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n relationName\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : CrudConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n hexColor\n \n \n \n \n \n \n \nhexColor()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:36\n \n \n\n\n \n \n returns the config for a hexColor field \n\n\n \n Returns : { label: string; view: string; prefill: string; }\n\n \n \n \n \n \n \n \n \n \n \n \n \n shortID\n \n \n \n \n \n \n \nshortID()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:62\n \n \n\n\n \n \n returns regex for a shortID \n\n\n \n Returns : RegExp\n\n \n \n \n \n \n \n \n \n \n \n \n \n stringField\n \n \n \n \n \n \n \nstringField(label, filterable, sortable)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:53\n \n \n\n\n \n \n returns the config for a string field \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n label\n \n \n No\n \n \n \n \n\n \n \n filterable\n \n \n No\n \n \n \n true\n \n\n \n \n sortable\n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : { label: any; view: string; filterable: boolean; sortable: boolean; }\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n tagsField\n \n \n \n \n \n \n \ntagsField(label, list)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:44\n \n \n\n\n \n \n returns the config for a tags field \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n label\n \n \n No\n \n \n \n \n\n \n \n list\n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : { label: any; view: string; display: (value: any) => any; list: boolean; }\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n uuid\n \n \n \n \n \n \n \nuuid()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:66\n \n \n\n\n \n \n returns regex for a uuid \n\n\n \n Returns : RegExp\n\n \n \n \n \n \n\n\n\n \n \n Accessors\n \n \n \n \n \n \n config\n \n \n\n \n \n getconfig()\n \n \n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:75\n \n \n \n \n Returns the whole resource-config, which maps a resource relation name to a CrudConfig. \n\n\n \n Returns : literal type\n\n \n \n \n\n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { SymbolService } from '@ec.components/ui';\nimport Resource from 'ec.sdk/lib/resources/Resource';\nimport { CrudConfig } from '../crud/crud-config.interface';\nimport { AdminEntryInputComponent } from '../entry-form/admin-entry-input.component';\nimport { TypeConfigService } from '../model-config/type-config.service';\n\n@Injectable()\n/** Contains default configurations for all kinds of resources. Used by ResourceList and ResourceForm. */\nexport class ResourceConfig {\n\n constructor(private symbol: SymbolService, private typeConfig: TypeConfigService) { }\n /** Returns the CrudConfig for the given relation name. */\n get(relationName: string): CrudConfig {\n if (!this.config[relationName]) {\n console.error(`${relationName} could not be found in the resource-config.\n Use one of ${Object.keys(this.config)}`);\n return {};\n } // TODO enrich fields with type with type-config?\n return this.config[relationName];\n }\n\n /** returns the config for a created field */\n created(label = 'Date', symbol: SymbolService) {\n return {\n label,\n sortable: true,\n view: 'date',\n display: this.typeConfig.displayDate(),\n group: this.typeConfig.groupDate(),\n form: false,\n immutable: true\n };\n }\n /** returns the config for a hexColor field */\n hexColor() {\n return {\n label: '#',\n view: 'color',\n prefill: '#ffffff'\n };\n }\n /** returns the config for a tags field */\n tagsField(label, list = true) {\n return {\n label,\n view: 'tags',\n display: (value) => value || [],\n list\n };\n }\n /** returns the config for a string field */\n stringField(label, filterable = true, sortable = true) {\n return {\n label,\n view: 'string',\n filterable,\n sortable\n };\n }\n /** returns regex for a shortID */\n shortID(): RegExp {\n return /^[0-9A-Za-z-_]{7,14}$/;\n }\n /** returns regex for a uuid */\n uuid(): RegExp {\n return /^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i;\n }\n /** regex for base64 uuid */\n base64uuid(): RegExp {\n return /^[a-zA-Z0-9\\\\-_]{22}$/;\n }\n\n /** Returns the whole resource-config, which maps a resource relation name to a CrudConfig. */\n get config(): { [key: string]: CrudConfig } {\n return {\n dataManager: {\n identifier: 'dataManagerID',\n identifierPattern: this.uuid(),\n label: 'title',\n permissions: {\n post: 'dm-create',\n put: 'dm::edit',\n delete: 'dm::delete',\n get: true\n },\n fields: {\n hexColor: this.hexColor(),\n shortID: {\n immutable: true,\n list: false\n },\n title: Object.assign(this.stringField('Name'), { required: true }),\n description: {\n label: this.symbol.resolve('field.label.description'),\n view: 'string',\n filterable: true\n },\n config: {\n label: this.symbol.resolve('field.label.config'),\n view: 'json',\n list: false,\n immutable: true\n },\n defaultLocale: {\n list: false,\n immutable: true\n },\n locales: this.tagsField(this.symbol.resolve('field.label.locales'), false),\n publicAssetRights: Object.assign(\n this.tagsField(this.symbol.resolve('datamanager.field.label.publicAssetRights'), false),\n { immutable: true }),\n rights: Object.assign(this.tagsField('rights', false), { immutable: true }),\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n model: {\n identifier: 'modelID',\n identifierPattern: this.uuid(),\n label: 'title',\n fields: {\n hexColor: this.hexColor(),\n title: Object.assign(this.stringField('Model'), { required: true }),\n description: {\n label: this.symbol.resolve('field.label.description'),\n view: 'string',\n filterable: true,\n },\n locales: {\n list: false,\n prefill: []\n },\n fields: {\n view: 'tags',\n display: (value) => {\n return (value || []).map(field => field.title).filter(field => field[0] !== '_');\n },\n prefill: []\n },\n titleField: {\n view: 'string',\n list: false\n },\n config: {\n list: false,\n view: 'json'\n },\n hasEntries: {\n immutable: true,\n view: 'boolean'\n },\n hooks: {\n display: (value) => {\n return (value || []).map(hook => (hook.methods || []).join(', '));\n },\n view: 'tags'\n },\n policies: {\n display: (value) => {\n return (value || []).map(policy => policy.method);\n },\n view: 'tags'\n },\n sync: {\n list: false,\n view: 'json',\n immutable: true\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n // ec accounts\n account: {\n identifier: 'accountID',\n identifierPattern: this.uuid(),\n label: 'email',\n permissions: {\n get: 'acc:list',\n put: 'acc:edit:'\n },\n fields: {\n name: this.stringField(this.symbol.resolve('field.label.name')),\n email: {\n label: this.symbol.resolve('field.label.email'),\n view: 'string',\n filterable: true,\n sortable: true\n },\n hasPassword: {\n label: this.symbol.resolve('field.label.password'),\n view: 'boolean',\n filterable: true,\n sortable: true,\n readOnly: true\n },\n hasPendingEmail: {\n label: this.symbol.resolve('account.field.label.hasPendingEmail'),\n view: 'boolean',\n filterable: true,\n sortable: true,\n readOnly: true\n },\n language: {\n label: this.symbol.resolve('account.field.label.language'),\n view: 'string',\n list: false\n },\n openID: {\n list: false\n },\n permissions: this.tagsField(this.symbol.resolve('account.field.label.permissions'), false),\n groups: {\n label: this.symbol.resolve('account.field.label.groups'),\n type: 'groups',\n input: AdminEntryInputComponent,\n list: false,\n display: (value) => value ? value.map(group => group.name) : []\n },\n state: {\n label: this.symbol.resolve('account.field.label.state')\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n dmAccount: {\n identifier: 'accountID',\n identifierPattern: this.uuid(),\n label: 'email',\n permissions: {\n get: 'acc:list',\n put: 'acc:edit:'\n },\n methods: ['get', 'put', 'delete'],\n fields: {\n accountID: {\n label: this.symbol.resolve('field.label.id'),\n view: 'string',\n hideInList: true,\n },\n title: {\n label: 'Title',\n filterable: true,\n hideInList: true\n },\n email: {\n label: this.symbol.resolve('field.label.title'),\n view: 'string',\n filterable: true,\n sortable: true,\n resolve: (body) => body.email || body.accountID\n },\n hasPassword: {\n label: this.symbol.resolve('dmAccount.field.label.hasPassword'),\n view: 'boolean',\n filterable: true,\n readOnly: true\n },\n pending: {\n label: this.symbol.resolve('dmAccount.field.label.pending'),\n view: 'boolean',\n filterable: true,\n readOnly: true\n },\n oauth: {\n list: false\n }\n }\n },\n template: {\n identifier: 'templateID',\n identifierPattern: this.uuid(),\n label: 'name',\n permissions: {\n post: 'dm-template-create',\n get: 'dm-template::view'\n },\n fields: {\n name: {\n label: this.symbol.resolve('template.field.label.template'),\n view: 'string',\n filterable: true,\n sortable: true\n },\n version: {\n label: this.symbol.resolve('template.field.label.version'),\n display: this.typeConfig.displayDate(),\n group: this.typeConfig.groupDate(),\n form: false\n }\n }\n },\n app: {\n identifier: 'appID',\n identifierPattern: this.uuid(),\n permissions: {\n post: 'app-create',\n delete: 'app::delete',\n put: 'app::edit'\n },\n fields: {\n hexColor: this.hexColor(),\n shortID: {\n label: this.symbol.resolve('field.label.shortID'),\n list: false\n },\n title: {\n label: this.symbol.resolve('app.field.label.app'),\n view: 'string',\n filterable: true,\n sortable: true,\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n platform: {\n identifier: 'platformID',\n identifierPattern: this.uuid(),\n fields: {\n title: {\n label: this.symbol.resolve('platform.field.label.platform'),\n view: 'string'\n },\n platformType: {\n label: this.symbol.resolve('platform.field.label.platformType'),\n view: 'string'\n },\n config: {\n label: this.symbol.resolve('field.label.config'),\n view: 'json',\n list: false\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n build: {},\n deployment: {},\n asset: { // old ec.asset\n identifier: 'assetID',\n identifierPattern: this.uuid(),\n fields: {\n thumb: {\n form: false,\n label: this.symbol.resolve('asset.field.label.thumb'),\n view: 'preview',\n resolve: (asset) => {\n if (asset.type !== 'image') {\n return '';\n }\n return asset.getImageUrl(200);\n },\n immutable: true\n },\n assetID: {\n label: 'assetID',\n list: false,\n form: false,\n immutable: true\n },\n title: {\n label: this.symbol.resolve('field.label.title'),\n view: 'string',\n sortable: true,\n filterable: true\n },\n files: {\n label: this.symbol.resolve('asset.field.label.files'),\n view: 'tag',\n form: false,\n display: value => value.length,\n immutable: true\n },\n type: {\n filterOperator: 'exact',\n form: false,\n immutable: true\n },\n tags: this.tagsField(this.symbol.resolve('asset.field.label.tags')),\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n tags: {\n identifier: 'tag',\n label: 'tag',\n fields: {\n tag: {\n view: 'string',\n readOnly: true,\n sortable: true,\n filterable: true\n },\n count: {\n view: 'number',\n readOnly: true,\n create: false,\n sortable: true\n }\n }\n },\n legacyAsset: { // old public assets\n identifier: 'assetID',\n identifierPattern: this.uuid(),\n label: 'title',\n fields: {\n thumb: {\n form: false,\n label: this.symbol.resolve('asset.field.label.thumb'),\n view: 'preview',\n resolve: (asset) => {\n if (asset.type !== 'image') {\n return '';\n }\n return asset.getImageUrl(200);\n },\n immutable: true\n },\n assetID: {\n label: 'assetID',\n list: false,\n form: false,\n immutable: true\n },\n title: {\n label: this.symbol.resolve('field.label.title'),\n view: 'string',\n sortable: true,\n filterable: true\n },\n files: {\n label: this.symbol.resolve('asset.field.label.files'),\n view: 'tag',\n form: false,\n display: value => value.length,\n immutable: true\n },\n type: {\n filterOperator: 'exact',\n form: false,\n immutable: true\n },\n tags: this.tagsField(this.symbol.resolve('asset.field.label.tags')),\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n // https://doc.entrecode.de/en/develop/resources/dm-assetgroup/\n assetGroup: {\n identifier: 'assetGroupID',\n label: 'assetGroupID',\n fields: {\n assetGroupID: {\n label: this.symbol.resolve('asset.field.label.assetGroupID'),\n view: 'string',\n filterable: true\n },\n public: {\n view: 'boolean',\n prefill: false\n },\n settings: {\n view: 'json',\n display: (json) => JSON.stringify(json),\n prefill: {}\n /*\n urlExpiration: string\n disabledTypes: Array\n imageSizes: Array\n thumbSizes: Array\n */\n },\n policies: {\n view: 'tags',\n display: (policies) => (policies || []).map(p => p.method),\n prefill: []\n /*\n method: get, put, post, delete\n user: public, dmUser\n conditions: JSON or null (https://entrecode.de/schema/dm-assetgroup#definitions/conditions)\n */\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n dmAsset: { // new assets\n identifier: 'assetID',\n identifierPattern: this.base64uuid(),\n label: 'title',\n fields: {\n file: {\n label: this.symbol.resolve('dmAsset.field.label.file'),\n display: value => value.url,\n view: 'preview',\n immutable: true,\n form: false,\n list: false\n },\n thumb: {\n form: false,\n list: true,\n label: this.symbol.resolve('asset.field.label.thumb'),\n view: 'preview',\n resolve: (asset) => {\n if (asset.type !== 'image' || !asset.thumbnails || !asset.thumbnails.length) {\n return '';\n }\n return asset.thumbnails[0].url;\n },\n immutable: true\n },\n assetID: {\n label: this.symbol.resolve('dmAsset.field.label.assetID'),\n list: false,\n form: false,\n immutable: true\n },\n title: {\n label: this.symbol.resolve('field.label.title'),\n view: 'string',\n sortable: true,\n filterable: true\n },\n caption: {\n label: this.symbol.resolve('dmAsset.field.label.caption'),\n view: 'string'\n },\n duplicates: {\n label: this.symbol.resolve('dmAsset.field.label.duplicates'),\n view: 'number',\n list: false,\n form: false\n },\n thumbnails: {\n label: this.symbol.resolve('dmAsset.field.label.thumbnails'),\n display: values => values.map(value => value.url),\n list: false,\n form: false\n },\n type: {\n label: this.symbol.resolve('dmAsset.field.label.type'),\n view: 'string',\n filterOperator: 'any',\n hideInList: true,\n immutable: true,\n form: false\n },\n tags: {\n label: this.symbol.resolve('dmAsset.field.label.tags'),\n view: 'tags',\n filterOperator: 'any',\n hideInList: true\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n dmClient: {\n identifier: 'clientID',\n fields: {\n clientID: {\n label: this.symbol.resolve('client.field.label.clientID'),\n view: 'string'\n },\n callbackURL: {\n label: this.symbol.resolve('client.field.label.callbackURL'),\n view: 'string',\n },\n tokenMethod: this.tagsField(this.symbol.resolve('client.field.label.tokenMethod')),\n disableStrategies: this.tagsField(this.symbol.resolve('client.field.label.disableStrategies')),\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n role: {\n identifier: 'roleID',\n identifierPattern: this.uuid(),\n label: 'name',\n fields: {\n name: {\n label: this.symbol.resolve('field.label.name'),\n view: 'string',\n filterable: true,\n sortable: true\n },\n label: {\n label: this.symbol.resolve('field.label.label'),\n view: 'string'\n },\n accounts: {\n label: this.symbol.resolve('role.field.label.accounts'),\n type: 'accounts',\n prefill: [],\n list: false,\n display: (value) => value ? value.title : '',\n input: AdminEntryInputComponent,\n filterPopClass: 'dialog'\n },\n addRegistered: {\n label: this.symbol.resolve('role.field.label.addRegistered'),\n view: 'boolean'/* ,\n prefill: false */\n },\n addUnregistered: {\n label: this.symbol.resolve('role.field.label.addUnregistered'),\n view: 'boolean'/* ,\n prefill: false */\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n codeSource: {\n identifier: 'codeSourceID',\n identifierPattern: this.uuid(),\n fields: {\n codeSourceID: {\n label: this.symbol.resolve('field.label.id'),\n },\n codeSourceType: {\n label: this.symbol.resolve('field.label.type'),\n view: 'tag'\n },\n config: {\n label: this.symbol.resolve('field.label.config'),\n list: false\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n dataSource: {\n identifier: 'dataSourceID',\n identifierPattern: this.uuid(),\n fields: {\n dataSourceID: {\n label: this.symbol.resolve('field.label.id'),\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n target: {\n identifier: 'targetID',\n identifierPattern: this.uuid(),\n fields: {\n targetType: {\n label: this.symbol.resolve('field.label.type'),\n view: 'tag'\n },\n config: {\n label: this.symbol.resolve('field.label.config'),\n list: false\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n group: {\n identifier: 'groupID',\n identifierPattern: this.uuid(),\n label: 'name',\n fields: {\n name: {\n label: this.symbol.resolve('field.label.name'),\n view: 'string'\n },\n permissions: {\n view: 'tags',\n display: (value) => value || [],\n list: false\n },\n /* created: this.created(this.symbol.resolve('field.label.created'), this.symbol), */\n }\n },\n invite: {\n identifier: 'invite',\n identifierPattern: this.uuid(),\n label: 'invite',\n fields: {\n invite: {\n view: 'string'\n },\n permissions: {\n view: 'tags'\n },\n groups: {\n view: 'tags',\n display: (group => group ? group.map(g => g.name) : [])\n }\n }\n }\n };\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ResourceCrudComponent.html":{"url":"components/ResourceCrudComponent.html","title":"component - ResourceCrudComponent","body":"\n \n\n\n\n\n\n Components\n ResourceCrudComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/resource-crud/resource-crud.component.ts\n\n\n \n Description\n \n \n The ResourceCrudComponent takes a relation name and api to render a resource list with create/edit/delete functionality out of the box.\n * \n *\n \n\n\n \n Implements\n \n \n OnInit\n WithLoader\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-resource-crud\n \n\n\n\n\n \n templateUrl\n ./resource-crud.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n list\n \n \n loader\n \n \n pop\n \n \n Public\n route\n \n \n Public\n router\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n create\n \n \n Public\n hasMethod\n \n \n initMethods\n \n \n ngOnInit\n \n \n select\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n config\n \n \n relation\n \n \n selection\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n columnClicked\n \n \n createClicked\n \n \n selected\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, auth: AuthService, loaderService: LoaderService, notificationService: NotificationsService, router: Router, route: ActivatedRoute)\n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:47\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n auth\n \n \n AuthService\n \n \n \n No\n \n \n \n \n loaderService\n \n \n LoaderService\n \n \n \n No\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n The API Connector that possesses the resource list, see https://entrecode.github.io/ec.sdk/#api-connectors \n\n \n Type : Core\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:29\n \n \n \n \n \n \n \n \n \n config\n \n \n CrudConfig for customization of the crud's UI.\n\n \n Type : CrudConfig\n\n \n \n Default value : {}\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:33\n \n \n \n \n \n \n \n \n \n relation\n \n \n The name of the resource. If given, the generic ListResource loading will be used (api.resourceList) \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:31\n \n \n \n \n \n \n \n \n \n selection\n \n \n The selection that should be used \n\n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:35\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n columnClicked\n \n \n Emits when a list element is clicked \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:43\n \n \n \n \n \n \n \n \n \n createClicked\n \n \n Output that is nexted when pressing the create button \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:47\n \n \n \n \n \n \n \n \n \n selected\n \n \n Emits when the selection has changed \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:45\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n create\n \n \n \n \n \n \n \ncreate()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:90\n \n \n\n\n \n \n Method that is invoked when pressing the create button. Default behaviour is opening the resource-pop. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n hasMethod\n \n \n \n \n \n \n \n \n hasMethod(method: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:72\n \n \n\n\n \n \n Returns true if the given method is part of the methods array (or if there is no methods array) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n method\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n initMethods\n \n \n \n \n \n \n \ninitMethods()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:61\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:57\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \n \nselect(item)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:77\n \n \n\n\n \n \n Called on list columnClicked \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n list\n \n \n \n \n \n \n \n list: ResourceListComponent\n\n \n \n \n \n Type : ResourceListComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(ResourceListComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:37\n \n \n\n \n \n The ResourceListComponent inside the template. \n\n \n \n\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: LoaderComponent\n\n \n \n \n \n Type : LoaderComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LoaderComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:41\n \n \n\n \n \n The lists loader \n\n \n \n\n \n \n \n \n \n \n \n \n \n pop\n \n \n \n \n \n \n \n pop: ResourcePopComponent\n\n \n \n \n \n Type : ResourcePopComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(ResourcePopComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:39\n \n \n\n \n \n The Pop inside the template. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n route\n \n \n \n \n \n \n \n route: ActivatedRoute\n\n \n \n \n \n Type : ActivatedRoute\n\n \n \n \n \n Decorators : \n \n \n @Optional()\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:54\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n router\n \n \n \n \n \n \n \n router: Router\n\n \n \n \n \n Type : Router\n\n \n \n \n \n Decorators : \n \n \n @Optional()\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:53\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, Input, OnInit, Optional, Output, ViewChild } from '@angular/core';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { SdkService } from '../sdk/sdk.service';\nimport { Selection } from '@ec.components/core';\nimport { LoaderComponent } from '@ec.components/ui';\nimport { LoaderService } from '@ec.components/ui';\nimport { NotificationsService } from '@ec.components/ui';\nimport { AuthService } from '../auth/auth.service';\nimport { WithLoader } from '@ec.components/ui';\nimport { CrudConfig } from '../crud/crud-config.interface';\nimport { ResourceListComponent } from '../resource-list/resource-list.component';\nimport { ResourcePopComponent } from '../resource-pop/resource-pop.component';\nimport Core from 'ec.sdk/lib/Core';\n\n/** The ResourceCrudComponent takes a relation name and api to render a resource list with create/edit/delete functionality out of the box.\n * ```html\n * \n * ```\n * */\n@Component({\n selector: 'ec-resource-crud',\n templateUrl: './resource-crud.component.html',\n})\nexport class ResourceCrudComponent implements OnInit, WithLoader {\n /** The API Connector that possesses the resource list, see https://entrecode.github.io/ec.sdk/#api-connectors */\n @Input() api: Core; // sdk api connector\n /** The name of the resource. If given, the generic ListResource loading will be used (api.resourceList) */\n @Input() relation: string;\n /** CrudConfig for customization of the crud's UI.*/\n @Input() config: CrudConfig = {};\n /** The selection that should be used */\n @Input() selection: Selection;\n /** The ResourceListComponent inside the template. */\n @ViewChild(ResourceListComponent) list: ResourceListComponent;\n /** The Pop inside the template. */\n @ViewChild(ResourcePopComponent) pop: ResourcePopComponent;\n /** The lists loader */\n @ViewChild(LoaderComponent) loader: LoaderComponent;\n /** Emits when a list element is clicked */\n @Output() columnClicked: EventEmitter = new EventEmitter();\n /** Emits when the selection has changed */\n @Output() selected: EventEmitter = new EventEmitter();\n /** Output that is nexted when pressing the create button */\n @Output() createClicked: EventEmitter = new EventEmitter();\n\n constructor(private sdk: SdkService,\n private auth: AuthService,\n private loaderService: LoaderService,\n private notificationService: NotificationsService,\n @Optional() public router: Router,\n @Optional() public route: ActivatedRoute) {\n }\n\n ngOnInit() {\n this.initMethods();\n }\n\n initMethods() {\n if (!this.relation) {\n return;\n }\n this.auth.getAllowedResourceMethods(this.relation, {}, this.config.methods)\n .then((methods) => {\n this.config.methods = methods;\n });\n }\n\n /** Returns true if the given method is part of the methods array (or if there is no methods array) */\n public hasMethod(method: string) {\n return this.config.methods && this.config.methods.indexOf(method) !== -1;\n }\n\n /** Called on list columnClicked */\n select(item) {\n if (!item) {\n return;\n }\n if (this.columnClicked.observers.length) {\n this.columnClicked.emit(item);\n return;\n }\n this.pop.edit(item.getBody());\n // TODO: check CrudComponent#loadEntry for further inspiration\n }\n\n /** Method that is invoked when pressing the create button. Default behaviour is opening the resource-pop. */\n create() {\n if (this.createClicked.observers.length) {\n this.createClicked.next();\n } else if (this.pop) {\n this.pop.create();\n }\n }\n}\n\n \n\n \n \n \n \n \n {{config?.createLabel}}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{config?.createLabel}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ResourceCrudComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/ResourceForm.html":{"url":"classes/ResourceForm.html","title":"class - ResourceForm","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n ResourceForm\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/resource-form/resource-form.ts\n \n\n \n Description\n \n \n Form for any kind of SDK Resource. \n\n \n\n \n Extends\n \n \n Form\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n api\n \n \n Public\n relation\n \n \n Public\n resourceService\n \n \n Public\n config\n \n \n Public\n fields\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n save\n \n \n createField\n \n \n getField\n \n \n getValue\n \n \n isCreating\n \n \n isEditing\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(body: Resource, config: FormConfig, api: Core, relation: string, resourceService: ResourceService)\n \n \n \n \n Defined in packages/data/src/lib/resource-form/resource-form.ts:8\n \n \n\n \n \n Constructs the form. Can be given an api (Core) and a fitting relation name. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n body\n \n \n Resource\n \n \n \n No\n \n \n \n \n config\n \n \n FormConfig\n \n \n \n No\n \n \n \n \n api\n \n \n Core\n \n \n \n No\n \n \n \n \n relation\n \n \n string\n \n \n \n No\n \n \n \n \n resourceService\n \n \n ResourceService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n api\n \n \n \n \n \n \n \n api: Core\n\n \n \n \n \n Type : Core\n\n \n \n \n \n Defined in packages/data/src/lib/resource-form/resource-form.ts:11\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n relation\n \n \n \n \n \n \n \n relation: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/data/src/lib/resource-form/resource-form.ts:12\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n resourceService\n \n \n \n \n \n \n \n resourceService: ResourceService\n\n \n \n \n \n Type : ResourceService\n\n \n \n \n \n Defined in packages/data/src/lib/resource-form/resource-form.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n config\n \n \n \n \n \n \n \n config: FormConfig\n\n \n \n \n \n Type : FormConfig\n\n \n \n \n \n Inherited from Form\n\n \n \n \n \n Defined in Form:14\n \n \n\n \n \n The configuration of the form. It is an extension of ItemConfig. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n fields\n \n \n \n \n \n \n \n fields: Field[]\n\n \n \n \n \n Type : Field[]\n\n \n \n \n \n Inherited from Form\n\n \n \n \n \n Defined in Form:12\n \n \n\n \n \n Array of fields. It will be populated automatically when the form is constructed. \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n save\n \n \n \n \n \n \n \nsave(value: Object)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-form/resource-form.ts:17\n \n \n\n\n \n \n Saves the given value. Run serializers before assigning the new value. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n createField\n \n \n \n \n \n \n \ncreateField(property: string, config: FieldConfigProperty)\n \n \n\n\n \n \n Inherited from Form\n\n \n \n \n \n Defined in Form:32\n \n \n\n\n \n \n creates and adds a single field to the form \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n config\n \n FieldConfigProperty\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Field | undefined\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getField\n \n \n \n \n \n \n \ngetField(property: string)\n \n \n\n\n \n \n Inherited from Form\n\n \n \n \n \n Defined in Form:50\n \n \n\n\n \n \n returns the field instance of the given property \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getValue\n \n \n \n \n \n \n \ngetValue(property: string)\n \n \n\n\n \n \n Inherited from Form\n\n \n \n \n \n Defined in Form:55\n \n \n\n\n \n \n Returns the original value of the property, if any. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isCreating\n \n \n \n \n \n \n \nisCreating()\n \n \n\n\n \n \n Inherited from Form\n\n \n \n \n \n Defined in Form:76\n \n \n\n\n \n \n Returns true if the form is currently in create mode (has not a body set) \n\n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n isEditing\n \n \n \n \n \n \n \nisEditing()\n \n \n\n\n \n \n Inherited from Form\n\n \n \n \n \n Defined in Form:71\n \n \n\n\n \n \n Returns true if the form is currently in edit mode (has a body set) \n\n\n \n Returns : boolean\n\n \n \n \n \n \n\n\n\n\n\n\n\n \n\n\n \n import Resource from 'ec.sdk/lib/resources/Resource';\nimport { Form, FormConfig } from '@ec.components/core';\nimport { Item } from '@ec.components/core';\nimport Core from 'ec.sdk/lib/Core';\nimport { ResourceService } from '../resource-config/resource.service';\n\n/** Form for any kind of SDK Resource. */\nexport class ResourceForm extends Form {\n /** Constructs the form. Can be given an api (Core) and a fitting relation name. */\n constructor(body: Resource, config: FormConfig = {},\n public api: Core,\n public relation: string,\n public resourceService: ResourceService) {\n super(body, config);\n }\n /** Saves the given value. Run serializers before assigning the new value. */\n save(value: Object): Promise> {\n return this.resourceService.save(this, value, this.relation, this.api)\n .then(resource => new Item(resource, this.config));\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ResourceListPopComponent.html":{"url":"components/ResourceListPopComponent.html","title":"component - ResourceListPopComponent","body":"\n \n\n\n\n\n\n Components\n ResourceListPopComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts\n\n\n\n \n Extends\n \n \n PopComponent\n \n\n \n Implements\n \n \n OnChanges\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-resource-list-pop\n \n\n\n\n\n \n templateUrl\n ./resource-list-pop.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n Public\n elementRef\n \n \n lightModel\n \n \n Public\n popService\n \n \n Public\n resourceConfig\n \n \n searchbar\n \n \n activated\n \n \n clickEvent\n \n \n Public\n elementRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnChanges\n \n \n select\n \n \n Public\n hide\n \n \n isOutside\n \n \n Public\n show\n \n \n Public\n toggle\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n config\n \n \n relation\n \n \n selection\n \n \n active\n \n \n hideOnClickOutside\n \n \n type\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n columnClicked\n \n \n pasted\n \n \n toggle\n \n \n \n \n\n \n \n HostBindings\n \n \n \n \n \n \n class\n \n \n \n \n\n \n \n HostListeners\n \n \n \n \n \n \n document:click\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(resourceConfig: ResourceConfig, popService: PopService, elementRef: ElementRef, cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:24\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n resourceConfig\n \n \n ResourceConfig\n \n \n \n No\n \n \n \n \n popService\n \n \n PopService\n \n \n \n No\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n \n Type : Core\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:16\n \n \n \n \n \n \n \n \n \n config\n \n \n \n Type : ListConfig\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:17\n \n \n \n \n \n \n \n \n \n relation\n \n \n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:15\n \n \n \n \n \n \n \n \n \n selection\n \n \n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:18\n \n \n \n \n \n \n \n \n \n active\n \n \n If true, .ec-pop is part of the DOM (*ngIf) + .active is set on .ec-pop-container. \n\n \n Type : boolean\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:29\n \n \n \n \n \n \n \n \n \n hideOnClickOutside\n \n \n If set to true, the pop will hide when a click happens outside the pop. \n\n \n Default value : false\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:35\n \n \n \n \n \n \n \n \n \n type\n \n \n The used type on the host element \n\n \n Type : string\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:33\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n columnClicked\n \n \n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:19\n \n \n \n \n \n \n \n \n \n pasted\n \n \n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:20\n \n \n \n \n \n \n \n \n \n toggle\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:37\n \n \n \n \n\n \n HostBindings \n \n \n \n \n \n \n class\n \n \n \n \n \n \n \n class: \n\n \n \n \n \n Default value : 'toast-wrapper'\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:23\n \n \n\n \n \n Set host class to make sure the type is used \n\n \n \n\n \n \n\n\n \n HostListeners \n \n \n \n \n \n \n document:click\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndocument:click($event)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:42\n \n \n\n\n \n \n Listens for document:click and hides \n\n\n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:35\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \n \nselect(item)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:45\n \n \n\n\n \n \n emits columnClicked event or toggles selection if no observers. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n hide\n \n \n \n \n \n \n \n \n hide()\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:90\n \n \n\n\n \n \n Hides the pop. Sets active false and removes pop from popService.stack \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n isOutside\n \n \n \n \n \n \n \nisOutside(element)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:61\n \n \n\n\n \n \n yields true if the given element is outside the pop / or is the wrapper element itself (the backdrop) \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n element\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n show\n \n \n \n \n \n \n \n \n show(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:77\n \n \n\n\n \n \n Shows the pop. Sets active true and adds pop to popService.stack \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n toggle\n \n \n \n \n \n \n \n \n toggle(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:67\n \n \n\n\n \n \n Shows if not active, hides if active. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:30\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n lightModel\n \n \n \n \n \n \n \n lightModel: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:24\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n popService\n \n \n \n \n \n \n \n popService: PopService\n\n \n \n \n \n Type : PopService\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n resourceConfig\n \n \n \n \n \n \n \n resourceConfig: ResourceConfig\n\n \n \n \n \n Type : ResourceConfig\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n searchbar\n \n \n \n \n \n \n \n searchbar: SearchbarComponent\n\n \n \n \n \n Type : SearchbarComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(SearchbarComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n activated\n \n \n \n \n \n \n \n activated: \n\n \n \n \n \n Default value : false\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:31\n \n \n\n \n \n Flip and stays true after first show \n\n \n \n\n \n \n \n \n \n \n \n \n \n clickEvent\n \n \n \n \n \n \n \n clickEvent: \n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:39\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:55\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectorRef, Component, ElementRef, EventEmitter, HostBinding, Input, OnChanges, Output, ViewChild } from '@angular/core';\nimport { Item, ListConfig, Selection } from '@ec.components/core';\nimport { PopComponent, PopService, SearchbarComponent } from '@ec.components/ui';\nimport Core from 'ec.sdk/lib/Core';\nimport Resource from 'ec.sdk/lib/resources/Resource';\nimport { ResourceConfig } from '../resource-config/resource-config.service';\n\n@Component({\n selector: 'ec-resource-list-pop',\n templateUrl: './resource-list-pop.component.html',\n\n})\n\nexport class ResourceListPopComponent extends PopComponent implements OnChanges {\n @Input() relation: string;\n @Input() api: Core;\n @Input() config: ListConfig;\n @Input() selection: Selection;\n @Output() columnClicked: EventEmitter> = new EventEmitter();\n @Output() pasted: EventEmitter> = new EventEmitter();\n @ViewChild(SearchbarComponent) searchbar: SearchbarComponent;\n /** Set host class to make sure the type is used */\n @HostBinding('class') class = 'toast-wrapper';\n lightModel: any;\n\n constructor(\n public resourceConfig: ResourceConfig,\n public popService: PopService,\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef\n ) {\n super(popService, elementRef, cdr);\n }\n\n ngOnChanges() {\n if (this.relation) {\n this.config = Object.assign({}, this.config || {}, this.resourceConfig.get(this.relation));\n }\n if (this.config) {\n this.config = Object.assign({ hidePagination: true, disableHeader: true }, this.config);\n }\n }\n\n /** emits columnClicked event or toggles selection if no observers. */\n select(item) {\n if (this.columnClicked.observers.length) {\n this.columnClicked.emit(item);\n } else if (this.selection) {\n this.selection.toggle(item);\n }\n this.searchbar.focusEvent.emit(true);\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ResourceListPopComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/ResourceModule.html":{"url":"modules/ResourceModule.html","title":"module - ResourceModule","body":"\n \n\n\n\n\n Modules\n ResourceModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_ResourceModule\n\n\n\ncluster_ResourceModule_declarations\n\n\n\ncluster_ResourceModule_imports\n\n\n\ncluster_ResourceModule_exports\n\n\n\ncluster_ResourceModule_providers\n\n\n\n\nApiActionbarComponent\n\nApiActionbarComponent\n\n\n\nResourceModule\n\nResourceModule\n\nResourceModule -->\n\nApiActionbarComponent->ResourceModule\n\n\n\n\n\nResourceActionbarComponent\n\nResourceActionbarComponent\n\nResourceModule -->\n\nResourceActionbarComponent->ResourceModule\n\n\n\n\n\nResourceCrudComponent\n\nResourceCrudComponent\n\nResourceModule -->\n\nResourceCrudComponent->ResourceModule\n\n\n\n\n\nResourceDeletePopComponent\n\nResourceDeletePopComponent\n\nResourceModule -->\n\nResourceDeletePopComponent->ResourceModule\n\n\n\n\n\nResourceFormComponent\n\nResourceFormComponent\n\nResourceModule -->\n\nResourceFormComponent->ResourceModule\n\n\n\n\n\nResourceListComponent\n\nResourceListComponent\n\nResourceModule -->\n\nResourceListComponent->ResourceModule\n\n\n\n\n\nResourceListPopComponent\n\nResourceListPopComponent\n\nResourceModule -->\n\nResourceListPopComponent->ResourceModule\n\n\n\n\n\nResourcePopComponent\n\nResourcePopComponent\n\nResourceModule -->\n\nResourcePopComponent->ResourceModule\n\n\n\n\n\nResourceSelectComponent\n\nResourceSelectComponent\n\nResourceModule -->\n\nResourceSelectComponent->ResourceModule\n\n\n\n\n\nApiActionbarComponent \n\nApiActionbarComponent \n\nApiActionbarComponent -->\n\nResourceModule->ApiActionbarComponent \n\n\n\n\n\nResourceActionbarComponent \n\nResourceActionbarComponent \n\nResourceActionbarComponent -->\n\nResourceModule->ResourceActionbarComponent \n\n\n\n\n\nResourceCrudComponent \n\nResourceCrudComponent \n\nResourceCrudComponent -->\n\nResourceModule->ResourceCrudComponent \n\n\n\n\n\nResourceDeletePopComponent \n\nResourceDeletePopComponent \n\nResourceDeletePopComponent -->\n\nResourceModule->ResourceDeletePopComponent \n\n\n\n\n\nResourceFormComponent \n\nResourceFormComponent \n\nResourceFormComponent -->\n\nResourceModule->ResourceFormComponent \n\n\n\n\n\nResourceListComponent \n\nResourceListComponent \n\nResourceListComponent -->\n\nResourceModule->ResourceListComponent \n\n\n\n\n\nResourceListPopComponent \n\nResourceListPopComponent \n\nResourceListPopComponent -->\n\nResourceModule->ResourceListPopComponent \n\n\n\n\n\nResourcePopComponent \n\nResourcePopComponent \n\nResourcePopComponent -->\n\nResourceModule->ResourcePopComponent \n\n\n\n\n\nResourceSelectComponent \n\nResourceSelectComponent \n\nResourceSelectComponent -->\n\nResourceModule->ResourceSelectComponent \n\n\n\n\n\nSdkModule \n\nSdkModule \n\nSdkModule -->\n\nResourceModule->SdkModule \n\n\n\n\n\nUiModule \n\nUiModule \n\nUiModule -->\n\nResourceModule->UiModule \n\n\n\n\n\nSdkModule\n\nSdkModule\n\nResourceModule -->\n\nSdkModule->ResourceModule\n\n\n\n\n\nUiModule\n\nUiModule\n\nResourceModule -->\n\nUiModule->ResourceModule\n\n\n\n\n\nResourceConfig\n\nResourceConfig\n\nResourceModule -->\n\nResourceConfig->ResourceModule\n\n\n\n\n\nResourceService\n\nResourceService\n\nResourceModule -->\n\nResourceService->ResourceModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/data/src/lib/resource/resource.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n ApiActionbarComponent\n \n \n ResourceActionbarComponent\n \n \n ResourceCrudComponent\n \n \n ResourceDeletePopComponent\n \n \n ResourceFormComponent\n \n \n ResourceListComponent\n \n \n ResourceListPopComponent\n \n \n ResourcePopComponent\n \n \n ResourceSelectComponent\n \n \n \n \n EntryComponents\n \n \n ResourceListComponent\n \n \n \n \n Providers\n \n \n ResourceConfig\n \n \n ResourceService\n \n \n \n \n Imports\n \n \n SdkModule\n \n \n UiModule\n \n \n \n \n Exports\n \n \n ApiActionbarComponent\n \n \n ResourceActionbarComponent\n \n \n ResourceCrudComponent\n \n \n ResourceDeletePopComponent\n \n \n ResourceFormComponent\n \n \n ResourceListComponent\n \n \n ResourceListPopComponent\n \n \n ResourcePopComponent\n \n \n ResourceSelectComponent\n \n \n SdkModule\n \n \n UiModule\n \n \n \n \n \n\n\n \n\n\n \n // import { BrowserModule } from '@angular/platform-browser';\nimport { CommonModule } from '@angular/common';\nimport { FormsModule } from '@angular/forms';\nimport { NgModule } from '@angular/core';\nimport { UiModule } from '@ec.components/ui';\nimport { SdkModule } from '../sdk/sdk.module';\nimport { ResourceListComponent } from '../resource-list/resource-list.component';\nimport { ResourceFormComponent } from '../resource-form/resource-form.component';\nimport { ResourcePopComponent } from '../resource-pop/resource-pop.component';\nimport { ResourceCrudComponent } from '../resource-crud/resource-crud.component';\nimport { ResourceDeletePopComponent } from '../resource-delete-pop/resource-delete-pop.component';\nimport { ResourceSelectComponent } from '../resource-select/resource-select.component';\nimport { ResourceService } from '../resource-config/resource.service';\nimport { ResourceConfig } from '../resource-config/resource-config.service';\nimport { ResourceListPopComponent } from '../resource-list-pop/resource-list-pop.component';\nimport { ResourceActionbarComponent } from '../resource-actionbar/resource-actionbar.component';\nimport { ApiActionbarComponent } from '../resource-actionbar/api-actionbar.component';\n\n@NgModule({\n entryComponents: [\n ResourceListComponent,\n ],\n declarations: [\n ResourceListComponent,\n ResourceListPopComponent,\n ResourceFormComponent,\n ResourcePopComponent,\n ResourceCrudComponent,\n ResourceDeletePopComponent,\n ResourceSelectComponent,\n ResourceActionbarComponent,\n ApiActionbarComponent,\n ],\n imports: [\n CommonModule,\n FormsModule,\n UiModule,\n SdkModule,\n ],\n exports: [\n UiModule,\n SdkModule,\n ResourceListComponent,\n ResourceListPopComponent,\n ResourceFormComponent,\n ResourcePopComponent,\n ResourceCrudComponent,\n ResourceDeletePopComponent,\n ResourceSelectComponent,\n ResourceActionbarComponent,\n ApiActionbarComponent,\n ],\n providers: [\n ResourceService,\n ResourceConfig,\n ],\n})\nexport class ResourceModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ResourceService.html":{"url":"injectables/ResourceService.html","title":"injectable - ResourceService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n ResourceService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/resource-config/resource.service.ts\n \n\n \n Description\n \n \n The CRUD service is meant to be used when modifying entries.\nAs the letters state it should be used to create update and delete entries.\nEach action fires up a change that can be subscribed upon in any component to react to relevant\nchanges.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n changes\n \n \n Public\n config\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n change\n \n \n clean\n \n \n create\n \n \n del\n \n \n isImmutableProperty\n \n \n matches\n \n \n save\n \n \n update\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, config: ResourceConfig)\n \n \n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:35\n \n \n\n \n \n Injects sdk \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n config\n \n \n ResourceConfig\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n change\n \n \n \n \n \n \n \nchange(filter?: Update)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:53\n \n \n\n\n \n \n Yields an observable that emits for all updates that match the given filter \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n filter\n \n Update\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n clean\n \n \n \n \n \n \n \nclean(value: Object, setEmptyStringsToNull, deleteNullProperties)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:103\n \n \n\n\n \n \n Removes all null or undefined values from the given object \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n value\n \n Object\n \n \n \n No\n \n \n \n \n\n \n \n setEmptyStringsToNull\n \n \n \n \n No\n \n \n \n true\n \n\n \n \n deleteNullProperties\n \n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : Object\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n create\n \n \n \n \n \n \n \ncreate(relation: string, value: Object, api: Core)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:121\n \n \n\n\n \n \n Creates a new resource with the given value for the given relation. Fires the \"create\" change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n relation\n \n string\n \n \n \n No\n \n \n\n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n api\n \n Core\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n del\n \n \n \n \n \n \n \ndel(relation: string, resource: Resource)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:132\n \n \n\n\n \n \n deletes the given resource and emits the \"delete\" change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n relation\n \n string\n \n \n \n No\n \n \n\n \n \n resource\n \n Resource\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isImmutableProperty\n \n \n \n \n \n \n \nisImmutableProperty(key: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:97\n \n \n\n\n \n \n Returns true if the given field key is an immutable system property \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n matches\n \n \n \n \n \n \n \nmatches(change: Update, filter: Update)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:47\n \n \n\n\n \n \n Gives true if the given change fits all property values of the filter. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n change\n \n Update\n \n \n \n No\n \n \n\n \n \n filter\n \n Update\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n save\n \n \n \n \n \n \n \nsave(item: Item, value: Object, relation: string, api: Core)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:64\n \n \n\n\n \n \n Saves the given resource with the given value. If the resource is not yet existing,\nit will be created.Otherwise it will be updated. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n item\n \n Item\n \n \n \n No\n \n \n\n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n relation\n \n string\n \n \n \n No\n \n \n\n \n \n api\n \n Core\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n update\n \n \n \n \n \n \n \nupdate(relation, resource: Resource, value: Object)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:82\n \n \n\n\n \n \n Updates the given resource with the new value. Fires the \"update\" change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n relation\n \n \n \n \n No\n \n \n\n \n \n resource\n \n Resource\n \n \n \n No\n \n \n\n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n changes\n \n \n \n \n \n \n \n changes: Subject\n\n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:35\n \n \n\n \n \n The changes event is emitted everytime an resource is created or updated. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n config\n \n \n \n \n \n \n \n config: ResourceConfig\n\n \n \n \n \n Type : ResourceConfig\n\n \n \n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:38\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Item } from '@ec.components/core';\nimport Core from 'ec.sdk/lib/Core';\nimport Resource from 'ec.sdk/lib/resources/Resource';\nimport { Subject, Observable } from 'rxjs';\nimport { filter as rxFilter } from 'rxjs/operators';\nimport { ResourceList } from '../resource-list/resource-list';\nimport { SdkService } from '../sdk/sdk.service';\nimport { ResourceConfig } from './resource-config.service';\n\n/** Instances of Update are emitted by the changes EventEmitter of the CrudService. */\nexport interface Update {\n /** The relation that has been updated. */\n relation: string | string[];\n /** The relevant resource. */\n resource?: Resource;\n /** The list where it happened. */\n list?: ResourceList;\n /** The type of update. (create/read/update/delete) */\n type?: 'post' | 'get' | 'put' | 'delete';\n /** An identifier associated with the update e.g. an entryID */\n identifier?: string;\n /** If true, the Update will reach all subscribers, ignoring all filters. Use with caution (reloads everything) */\n broadcast?: boolean;\n}\n\n/** The CRUD service is meant to be used when modifying entries.\n * As the letters state it should be used to create update and delete entries.\n * Each action fires up a change that can be subscribed upon in any component to react to relevant\n * changes.\n * */\n@Injectable()\nexport class ResourceService {\n /** The changes event is emitted everytime an resource is created or updated. */\n public changes: Subject = new Subject();\n\n /** Injects sdk */\n constructor(private sdk: SdkService, public config: ResourceConfig) {\n /* this.sdk.changesEnvironment.subscribe(env =>\n this.changes.next({\n relation: 'environment',\n broadcast: true\n })) */\n }\n\n /** Gives true if the given change fits all property values of the filter. */\n matches(change: Update, filter: Update): boolean {\n return change.broadcast || Object.keys(filter)\n .reduce((match, key) => match && change[key] === filter[key], true);\n }\n\n /** Yields an observable that emits for all updates that match the given filter */\n change(filter?: Update): Observable {\n if (!filter) {\n return this.changes.asObservable();\n }\n return this.changes.asObservable().pipe(\n rxFilter((change: Update) => this.matches(change, filter))\n );\n }\n\n /** Saves the given resource with the given value. If the resource is not yet existing,\n * it will be created.Otherwise it will be updated. */\n save(item: Item, value: Object, relation: string, api: Core): Promise {\n const resource = item.getBody();\n if (item.config.onSave) {\n return Promise.resolve(item.config.onSave(item, value));\n }\n item.deleteImmutableProperties(value);\n if (resource && resource.save) {\n return this.update(relation, resource, value);\n }\n return this.create(relation, value, api)\n .then((_resource) => {\n return _resource;\n }).catch((err) => {\n return Promise.reject(err);\n });\n }\n\n /** Updates the given resource with the new value. Fires the \"update\" change. */\n update(relation, resource: Resource, value: Object): Promise {\n const oldValues = {}; // save old values\n Object.keys(value).forEach((key) => oldValues[key] = resource[key]);\n Object.assign(resource, this.clean(value, false, false)); // assign new form values\n return resource.save().then((_resource) => {\n this.changes.next({ relation, resource: _resource, type: 'put' });\n return _resource;\n })\n .catch((err) => {\n Object.assign(resource, this.clean(oldValues, false, false)); // fall back to old values\n return Promise.reject(err);\n });\n }\n\n /** Returns true if the given field key is an immutable system property */\n isImmutableProperty(key: string) {\n return key[0] === '_' ||\n ['id', 'created', 'modified'].indexOf(key) !== -1;\n }\n\n /** Removes all null or undefined values from the given object */\n clean(value: Object, setEmptyStringsToNull = true, deleteNullProperties = true): Object {\n for (const key in value) {\n if (value.hasOwnProperty(key)) {\n if (setEmptyStringsToNull && value[key] === '') { // clear empty strings\n value[key] = null;\n }\n if (deleteNullProperties && value[key] === null) {\n delete value[key];\n }\n if (this.isImmutableProperty(key)) { // filter system properties\n delete value[key];\n }\n }\n }\n return value;\n }\n\n /** Creates a new resource with the given value for the given relation. Fires the \"create\" change. */\n create(relation: string, value: Object, api: Core): Promise {\n return api.create(relation, this.clean(value))\n .then((resource: Resource) => {\n this.changes.next({ relation, resource, type: 'post' });\n return resource;\n }).catch((err) => {\n return Promise.reject(err);\n });\n }\n\n /** deletes the given resource and emits the \"delete\" change. */\n del(relation: string, resource: Resource) {\n return resource.del().then((res) => {\n this.changes.next({ relation, resource, type: 'delete' });\n return res;\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/SdkField.html":{"url":"interfaces/SdkField.html","title":"interface - SdkField","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n SdkField\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/model-config/sdk-field.ts\n \n\n \n Description\n \n \n Field Config as obtained by PublicAPI#getFieldConfig.\nSee https://doc.entrecode.de/data_manager/#field-data-types for more info\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n config\n \n \n default\n \n \n description\n \n \n localizable\n \n \n mutable\n \n \n readOnly\n \n \n required\n \n \n title\n \n \n type\n \n \n unique\n \n \n validation\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n config\n \n \n \n \n config: Object\n\n \n \n\n\n \n \n Type : Object\n\n \n \n\n\n\n\n\n \n \n further field config options (like columns etc.) \n\n \n \n \n \n \n \n \n \n \n default\n \n \n \n \n default: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Default value that is returned for a newly created required field on old entries \n\n \n \n \n \n \n \n \n \n \n description\n \n \n \n \n description: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Field Description. Used for placeholders \n\n \n \n \n \n \n \n \n \n \n localizable\n \n \n \n \n localizable: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n Not implemented yet. \n\n \n \n \n \n \n \n \n \n \n mutable\n \n \n \n \n mutable: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n Tells if the field value can be changed. If true, the field is a system field \n\n \n \n \n \n \n \n \n \n \n readOnly\n \n \n \n \n readOnly: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n If true, the field can only be altered when creating. \n\n \n \n \n \n \n \n \n \n \n required\n \n \n \n \n required: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n If true, the field must have a value \n\n \n \n \n \n \n \n \n \n \n title\n \n \n \n \n title: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n System Title \n\n \n \n \n \n \n \n \n \n \n type\n \n \n \n \n type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Field Type \n\n \n \n \n \n \n \n \n \n \n unique\n \n \n \n \n unique: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n Unique: each entry has a unique value for that field \n\n \n \n \n \n \n \n \n \n \n validation\n \n \n \n \n validation: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Validation info, depends on field type. \n\n \n \n \n \n \n \n\n\n \n export interface SdkField {\n /** further field config options (like columns etc.) */\n config: Object;\n /** Field Type */\n type: string;\n /** System Title */\n title: string;\n /** Unique: each entry has a unique value for that field */\n unique: boolean;\n /** Default value that is returned for a newly created required field on old entries */\n default: string;\n /** Tells if the field value can be changed. If true, the field is a system field */\n mutable: boolean;\n /** If true, the field can only be altered when creating. */\n readOnly: boolean;\n /** If true, the field must have a value */\n required: boolean;\n /** Validation info, depends on field type. */\n validation: string;\n /** Field Description. Used for placeholders */\n description: string;\n /** Not implemented yet. */\n localizable: boolean;\n};\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/SdkModule.html":{"url":"modules/SdkModule.html","title":"module - SdkModule","body":"\n \n\n\n\n\n Modules\n SdkModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SdkModule\n\n\n\ncluster_SdkModule_providers\n\n\n\n\nSdkService\n\nSdkService\n\n\n\nSdkModule\n\nSdkModule\n\nSdkModule -->\n\nSdkService->SdkModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/data/src/lib/sdk/sdk.module.ts\n \n\n\n\n\n \n \n \n Providers\n \n \n SdkService\n \n \n \n \n \n\n\n \n\n\n \n // import { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\nimport { SdkService } from './sdk.service';\n\n@NgModule({\n entryComponents: [],\n declarations: [],\n imports: [],\n exports: [],\n providers: [\n SdkService\n ],\n})\nexport class SdkModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/SdkService.html":{"url":"injectables/SdkService.html","title":"injectable - SdkService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n SdkService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/sdk/sdk.service.ts\n \n\n \n Description\n \n \n The SdkService exposes all instances of the ec.sdk APIs.\nTo be able to use it, you have to provide an environment like this in your module's providers:\n {\n provide: 'environment',\n useValue: {\n datamanagerID: '83cc6374',\n environment: 'stage',\n clientID: 'rest',\n // init: false\n // the init option will prevent automatically initing the sdk.\n // you have to call sdk.init() yourself. This can be useful if your environment is not known before runtime\n }\n }The environment is optional, defaulting to live. See\nhttps://entrecode.github.io/ec.sdk/#environment for more info. The clientID is only optional if\nyou do not plan to use authentication. See https://entrecode.github.io/ec.sdk/#environment =>\nsetClientID.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n _api\n \n \n Public\n accounts\n \n \n apiResolved\n \n \n Public\n changesEnvironment\n \n \n Public\n datamanager\n \n \n Public\n environment\n \n \n Public\n ready\n \n \n roots\n \n \n Private\n schemaRequests\n \n \n Public\n session\n \n \n Public\n user\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getAccount\n \n \n getSchema\n \n \n Public\n init\n \n \n noApi\n \n \n useDatamanager\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n root\n \n \n api\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(environment)\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:78\n \n \n\n \n \n Calls init and sets ready to true when finished. Omits init if environment has set init: false \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n environment\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getAccount\n \n \n \n \n \n \n \ngetAccount(api)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:132\n \n \n\n\n \n \n Returns the current account. Works for all apis \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n api\n \n \n No\n \n \n \n this.accounts\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getSchema\n \n \n \n \n \n \n \ngetSchema(model, api)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:121\n \n \n\n\n \n \n Returns a schema for the given model. Caches the promise. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n model\n \n \n No\n \n \n \n \n\n \n \n api\n \n \n No\n \n \n \n this._api\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n init\n \n \n \n \n \n \n \n \n init(environment)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:88\n \n \n\n\n \n \n Creates all the API instances and determines the current user. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n environment\n \n \n No\n \n \n \n this.environment\n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n noApi\n \n \n \n \n \n \n \nnoApi(api: Core)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:144\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n api\n \n Core\n \n \n \n No\n \n \n \n this._api\n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n useDatamanager\n \n \n \n \n \n \n \nuseDatamanager(shortID: string, environment)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:111\n \n \n\n\n \n \n Uses the given datamanager and optional short id to init api.\nIf you set \"datamanagerID\" in your environment, this method is called automatically. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n shortID\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n environment\n \n \n \n \n No\n \n \n \n this.environment\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n _api\n \n \n \n \n \n \n \n _api: PublicAPI\n\n \n \n \n \n Type : PublicAPI\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:51\n \n \n\n \n \n Current Public API instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n accounts\n \n \n \n \n \n \n \n accounts: Accounts\n\n \n \n \n \n Type : Accounts\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:49\n \n \n\n \n \n Current Accounts instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n apiResolved\n \n \n \n \n \n \n \n apiResolved: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:34\n \n \n\n \n \n Flips to true as soon as the PublicAPI instance was resolved (now contains model and asset relations) \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n changesEnvironment\n \n \n \n \n \n \n \n changesEnvironment: Subject\n\n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:53\n \n \n\n \n \n Emits when the env changes \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n datamanager\n \n \n \n \n \n \n \n datamanager: DataManager\n\n \n \n \n \n Type : DataManager\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:67\n \n \n\n \n \n Current DataManager instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n environment\n \n \n \n \n \n \n \n environment: \n\n \n \n \n \n Decorators : \n \n \n @Inject('environment')\n \n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:81\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n ready\n \n \n \n \n \n \n \n ready: Promise\n\n \n \n \n \n Type : Promise\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:78\n \n \n\n \n \n Promise that should be used before using any auth related stuff:\n * this.sdk.ready.then(account => {});\n *\n \n \n\n \n \n \n \n \n \n \n \n \n roots\n \n \n \n \n \n \n \n roots: literal type\n\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:36\n \n \n\n \n \n Collects different datamanager root instances \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n schemaRequests\n \n \n \n \n \n \n \n schemaRequests: object\n\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:71\n \n \n\n \n \n Pending schema requests \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n session\n \n \n \n \n \n \n \n session: Session\n\n \n \n \n \n Type : Session\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:47\n \n \n\n \n \n Current Session instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n user\n \n \n \n \n \n \n \n user: AccountResource\n\n \n \n \n \n Type : AccountResource\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:69\n \n \n\n \n \n Current User \n\n \n \n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n root\n \n \n\n \n \n getroot()\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:37\n \n \n\n \n \n \n \n \n \n \n api\n \n \n\n \n \n getapi()\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:55\n \n \n \n \n getter for api. Throws error if no api present. \n\n\n \n Returns : PublicAPI\n\n \n \n \n\n \n \n setapi(api)\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:62\n \n \n \n \n Sets the public api \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n api\n \n \n \n No\n \n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n\n \n\n\n \n import { Inject, Injectable } from '@angular/core';\nimport Accounts from 'ec.sdk/lib/Accounts';\nimport Core, { environment as env } from 'ec.sdk/lib/Core';\nimport DataManager from 'ec.sdk/lib/DataManager';\nimport PublicAPI from 'ec.sdk/lib/PublicAPI';\nimport Session from 'ec.sdk/lib/Session';\nimport AccountResource from 'ec.sdk/lib/resources/accounts/AccountResource';\nimport DataManagerResource from 'ec.sdk/lib/resources/datamanager/DataManagerResource';\nimport { Subject } from 'rxjs';\n\n/** The SdkService exposes all instances of the ec.sdk APIs.\n * To be able to use it, you have to provide an environment like this in your module's providers:\n *\n *```json\n {\n provide: 'environment',\n useValue: {\n datamanagerID: '83cc6374',\n environment: 'stage',\n clientID: 'rest',\n // init: false\n // the init option will prevent automatically initing the sdk.\n // you have to call sdk.init() yourself. This can be useful if your environment is not known before runtime\n }\n }```\n * The environment is optional, defaulting to live. See\n * https://entrecode.github.io/ec.sdk/#environment for more info. The clientID is only optional if\n * you do not plan to use authentication. See https://entrecode.github.io/ec.sdk/#environment =>\n * setClientID.\n */\n@Injectable()\nexport class SdkService {\n /** Flips to true as soon as the PublicAPI instance was resolved (now contains model and asset relations) */\n apiResolved: boolean;\n /** Collects different datamanager root instances */\n roots: { [id: string]: Promise } = {};\n get root(): Promise {\n if (!this._api) {\n throw new Error('no api');\n }\n if (!this.roots[this._api.dataManagerID]) {\n this.roots[this._api.dataManagerID] = this.ready.then(() => this.datamanager.dataManager(this._api.dataManagerID));\n }\n return this.roots[this._api.dataManagerID];\n }\n /** Current Session instance */\n public session: Session;\n /** Current Accounts instance */\n public accounts: Accounts;\n /** Current Public API instance */\n public _api: PublicAPI;\n /** Emits when the env changes */\n public changesEnvironment: Subject = new Subject();\n /** getter for api. Throws error if no api present. */\n get api(): PublicAPI {\n if (this.noApi()) {\n throw new Error('get api: ' + this.noApi());\n }\n return this._api;\n }\n /** Sets the public api */\n set api(api: PublicAPI) {\n this._api = api;\n this._api.resolve().then(() => this.apiResolved = true);\n }\n /** Current DataManager instance */\n public datamanager: DataManager;\n /** Current User */\n public user: AccountResource;\n /** Pending schema requests */\n private schemaRequests = {};\n /** Promise that should be used before using any auth related stuff:\n *\n * ```ts\n * this.sdk.ready.then(account => {});\n * ```\n * */\n public ready: Promise;\n\n /** Calls init and sets ready to true when finished. Omits init if environment has set init: false */\n constructor(@Inject('environment') public environment) {\n if (!environment || environment.init !== false) {\n this.init();\n }\n }\n\n /** Creates all the API instances and determines the current user. */\n public init(environment = this.environment): Promise {\n if (environment !== this.environment) {\n this.changesEnvironment.next(environment);\n }\n this.environment = environment;\n this.session = new Session(environment.environment);\n if (environment.clientID) {\n this.session.setClientID(environment.clientID);\n }\n this.accounts = new Accounts(environment.environment);\n if (environment.datamanagerID) {\n this.useDatamanager(environment.datamanagerID, environment);\n }\n this.ready = this.getAccount()\n .then((user) => {\n this.user = user;\n this.datamanager = new DataManager(environment.environment);\n return this.user;\n });\n return this.ready;\n }\n /** Uses the given datamanager and optional short id to init api.\n * If you set \"datamanagerID\" in your environment, this method is called automatically. */\n useDatamanager(shortID: string, environment = this.environment) {\n this.apiResolved = false;\n this._api = new PublicAPI(shortID, environment.environment, true);\n this._api.resolve().then(api => this.apiResolved = true);\n if (environment.clientID) {\n this._api.setClientID(environment.clientID);\n }\n }\n\n /** Returns a schema for the given model. Caches the promise. */\n getSchema(model, api = this._api) {\n if (this.noApi(api)) {\n return Promise.reject('getSchema: ' + this.noApi(api));\n }\n if (!this.schemaRequests[model] || this.schemaRequests[model].api !== api) {\n this.schemaRequests[model] = { request: api.getSchema(model), api };\n }\n return this.schemaRequests[model].request;\n }\n\n /** Returns the current account. Works for all apis */\n getAccount(api = this.accounts) {\n if (this.noApi(api)) {\n /* return Promise.reject('getAccount: ' + this.noApi(api)); */\n return Promise.resolve();\n }\n return api.me().then((account) => {\n return account || this._api.me();\n }).catch((err) => {\n return null;\n });\n }\n\n noApi(api: Core = this._api) {\n if (!api) {\n return `No API was initialized. Either set datamanagerID in your environment or call useDatamanager with your shortID`;\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/SelectModule.html":{"url":"modules/SelectModule.html","title":"module - SelectModule","body":"\n \n\n\n\n\n Modules\n SelectModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SelectModule\n\n\n\ncluster_SelectModule_declarations\n\n\n\ncluster_SelectModule_SelectComponent_providers\n\n\n\ncluster_SelectModule_imports\n\n\n\ncluster_SelectModule_exports\n\n\n\n\nActionbarComponent\n\nActionbarComponent\n\n\n\nSelectModule\n\nSelectModule\n\nSelectModule -->\n\nActionbarComponent->SelectModule\n\n\n\n\n\nSelectComponent\n\nSelectComponent\n\nSelectModule -->\n\nSelectComponent->SelectModule\n\n\n\n\n\nActionbarComponent \n\nActionbarComponent \n\nActionbarComponent -->\n\nSelectModule->ActionbarComponent \n\n\n\n\n\nListModule \n\nListModule \n\nListModule -->\n\nSelectModule->ListModule \n\n\n\n\n\nSelectComponent \n\nSelectComponent \n\nSelectComponent -->\n\nSelectModule->SelectComponent \n\n\n\n SelectComponent), multi: true\n} -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true\n}\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true\n}\n\n SelectComponent), multi: true\n}->SelectComponent -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true\n}->SelectComponent\n\n\n\n\n\nListModule\n\nListModule\n\nSelectModule -->\n\nListModule->SelectModule\n\n\n\n\n\nLoaderModule\n\nLoaderModule\n\nSelectModule -->\n\nLoaderModule->SelectModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/select/select.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n ActionbarComponent\n \n \n SelectComponent\n \n \n \n \n Imports\n \n \n ListModule\n \n \n LoaderModule\n \n \n \n \n Exports\n \n \n ActionbarComponent\n \n \n ListModule\n \n \n SelectComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { DndModule } from 'ngx-drag-drop';\nimport { ListModule } from '../list/list.module';\nimport { SelectComponent } from './select.component';\nimport { ActionbarComponent } from '../actionbar/actionbar.component';\nimport { LoaderModule } from '../loader/loader.module';\n\nexport const selectModuleConfig = {\n imports: [\n CommonModule,\n ListModule,\n DndModule,\n LoaderModule\n ],\n declarations: [\n SelectComponent,\n ActionbarComponent\n ],\n exports: [\n ListModule,\n SelectComponent,\n ActionbarComponent,\n DndModule\n ],\n providers: [],\n};\n\n\n@NgModule(selectModuleConfig)\nexport class SelectModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SignupComponent.html":{"url":"components/SignupComponent.html","title":"component - SignupComponent","body":"\n \n\n\n\n\n\n Components\n SignupComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/data/src/lib/auth/signup/signup.component.ts\n\n\n \n Description\n \n \n Uses LoginFormComponent. Tries to login via AuthService. Shows notifications and nexts success Subject if login was successful.\nhttps://components.entrecode.de/auth/signup?e=1\n\n \n\n \n Extends\n \n \n LoginComponent\n \n\n \n Implements\n \n \n WithLoader\n WithNotifications\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-signup\n \n\n\n\n\n \n templateUrl\n signup.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n loader\n \n \n notifications\n \n \n Public\n auth\n \n \n loader\n \n \n notifications\n \n \n Public\n notificationService\n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n signup\n \n \n login\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n invite\n \n \n api\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n success\n \n \n error\n \n \n success\n \n \n \n \n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n You can optionally specify PublicAPI instance. Defaults to SdkService#api. \n\n \n Type : PublicAPI\n\n \n \n \n \n \n Defined in packages/data/src/lib/auth/signup/signup.component.ts:17\n \n \n \n \n \n \n \n \n \n invite\n \n \n Invite code to use. If set, the invite form field will be hidden. \n\n \n Default value : ''\n \n \n \n \n \n Defined in packages/data/src/lib/auth/signup/signup.component.ts:19\n \n \n \n \n \n \n \n \n \n api\n \n \n You can optionally specify PublicAPI instance. Defaults to SdkService#api. \n\n \n Type : PublicAPI\n\n \n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:24\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n success\n \n \n Subject that is nexted when the login was successful. Meant to be used for redirecting to another page (or similar). \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/auth/signup/signup.component.ts:21\n \n \n \n \n \n \n \n \n \n error\n \n \n Subject that is nexted when an error occurs. For custom error reactions \n\n $event Type: EventEmitter\n\n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:28\n \n \n \n \n \n \n \n \n \n success\n \n \n Subject that is nexted when the login was successful. Meant to be used for redirecting to another page (or similar). \n\n $event Type: EventEmitter\n\n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:26\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n signup\n \n \n \n \n \n \n \nsignup(undefined)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/signup/signup.component.ts:28\n \n \n\n\n \n \n Communicates with the AuthService. Handles loader, notifications and success Subject. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin(undefined)\n \n \n\n\n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:39\n \n \n\n\n \n \n Communicates with the AuthService. Handles loader, notifications and success Subject. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: \n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LoaderComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/auth/signup/signup.component.ts:23\n \n \n\n \n \n The included loader. \n\n \n \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in packages/data/src/lib/auth/signup/signup.component.ts:25\n \n \n\n \n \n Error notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n auth\n \n \n \n \n \n \n \n auth: AuthService\n\n \n \n \n \n Type : AuthService\n\n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:34\n \n \n\n\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: \n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LoaderComponent)\n \n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:30\n \n \n\n \n \n The included loader. \n\n \n \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:32\n \n \n\n \n \n Error notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n notificationService\n \n \n \n \n \n \n \n notificationService: NotificationsService\n\n \n \n \n \n Type : NotificationsService\n\n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:35\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:36\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';\nimport { LoginComponent } from '../login/login.component';\nimport { WithNotifications, LoaderComponent, WithLoader, Notification } from '@ec.components/ui';\nimport PublicAPI from 'ec.sdk/lib/PublicAPI';\nimport AccountResource from 'ec.sdk/lib/resources/accounts/AccountResource';\n\n/** Uses LoginFormComponent. Tries to login via AuthService. Shows notifications and nexts success Subject if login was successful.\n * https://components.entrecode.de/auth/signup?e=1\n*/\n@Component({\n selector: 'ec-signup',\n templateUrl: 'signup.component.html'\n})\n\nexport class SignupComponent extends LoginComponent implements WithLoader, WithNotifications {\n /** You can optionally specify PublicAPI instance. Defaults to SdkService#api. */\n @Input() api: PublicAPI;\n /** Invite code to use. If set, the invite form field will be hidden. */\n @Input() invite = '';\n /** Subject that is nexted when the login was successful. Meant to be used for redirecting to another page (or similar). */\n @Output() success: EventEmitter = new EventEmitter();\n /** The included loader. */\n @ViewChild(LoaderComponent) loader;\n /** Error notifications */\n notifications: Notification[] = [];\n\n /** Communicates with the AuthService. Handles loader, notifications and success Subject. */\n signup({ email, password, invite }) {\n const registration = this.auth.signup({ email, password, invite }, this.api)\n .then((user) => {\n this.notificationService.emit({\n type: 'success',\n title: this.symbol.resolve('signup.success'),\n hide: this.notifications\n });\n this.success.emit(user);\n })\n .catch((error) => {\n this.notificationService.emit({\n title: this.symbol.resolve('signup.error'),\n error,\n sticky: true,\n hide: this.notifications,\n replace: this.notifications\n });\n this.error.next(error);\n console.log('could not signup', error);\n });\n this.loader.wait(registration);\n }\n}\n\n \n\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'SignupComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SignupFormComponent.html":{"url":"components/SignupFormComponent.html","title":"component - SignupFormComponent","body":"\n \n\n\n\n\n\n Components\n SignupFormComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/utility/signup-form/signup-form.component.ts\n\n\n \n Description\n \n \n Login Form Component with validation. Fires success event with credentials on submit.\nhttps://components.entrecode.de/ui/login?e=1\n\n \n\n \n Extends\n \n \n LoginFormComponent\n \n\n \n Implements\n \n \n OnInit\n WithLoader\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-signup-form\n \n\n\n\n\n \n templateUrl\n ./signup-form.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n errorMessage\n \n \n Public\n form\n \n \n notifications\n \n \n Protected\n submitted\n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n onSubmit\n \n \n signup\n \n \n login\n \n \n ngOnInit\n \n \n onSubmit\n \n \n showError\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n buttonLabel\n \n \n invite\n \n \n invitePlaceholder\n \n \n buttonClasses\n \n \n buttonLabel\n \n \n emailLabel\n \n \n emailPlaceholder\n \n \n loader\n \n \n passwordLabel\n \n \n passwordPlaceholder\n \n \n showLabels\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n error\n \n \n success\n \n \n \n \n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n buttonLabel\n \n \n The Label of the submit button. Defaults to Login \n\n \n Default value : this.symbol.resolve('signup.button.label')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/signup-form/signup-form.component.ts:17\n \n \n \n \n \n \n \n \n \n invite\n \n \n If set, the invite field will be hidden and the given code will be used for signup \n\n \n Default value : ''\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/signup-form/signup-form.component.ts:21\n \n \n \n \n \n \n \n \n \n invitePlaceholder\n \n \n The Placeholder of the mail Field \n\n \n Default value : this.symbol.resolve('signup.invite.placeholder')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/signup-form/signup-form.component.ts:19\n \n \n \n \n \n \n \n \n \n buttonClasses\n \n \n Additional Button classes \n\n \n Default value : ''\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:42\n \n \n \n \n \n \n \n \n \n buttonLabel\n \n \n The Label of the submit button. Defaults to Login \n\n \n Default value : this.symbol.resolve('login.button.label')\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:40\n \n \n \n \n \n \n \n \n \n emailLabel\n \n \n The Label of the Mail field \n\n \n Default value : this.symbol.resolve('login.email.label')\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:32\n \n \n \n \n \n \n \n \n \n emailPlaceholder\n \n \n The Placeholder of the mail Field \n\n \n Default value : this.symbol.resolve('login.email.placeholder')\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:34\n \n \n \n \n \n \n \n \n \n loader\n \n \n The loader that should be shown during login \n\n \n Type : LoaderComponent\n\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:28\n \n \n \n \n \n \n \n \n \n passwordLabel\n \n \n The Label of the password field. \n\n \n Default value : this.symbol.resolve('login.password.label')\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:36\n \n \n \n \n \n \n \n \n \n passwordPlaceholder\n \n \n The Placeholder of the password field \n\n \n Default value : this.symbol.resolve('login.password.placeholder')\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:38\n \n \n \n \n \n \n \n \n \n showLabels\n \n \n If true, email and password wont have labels \n\n \n Default value : true\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:30\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n error\n \n \n Event that emits when calling showError. \n\n $event Type: EventEmitter\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:26\n \n \n \n \n \n \n \n \n \n success\n \n \n Event that emits on succesful submit of the form, passing the login credentials. \n\n $event Type: EventEmitter\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:24\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/signup-form/signup-form.component.ts:28\n \n \n\n\n \n \n Initializes the form \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n onSubmit\n \n \n \n \n \n \n \nonSubmit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/signup-form/signup-form.component.ts:37\n \n \n\n\n \n \n Is called when the form has been successfully submitted. Calls login and resets the form after. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n signup\n \n \n \n \n \n \n \nsignup(value)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/signup-form/signup-form.component.ts:23\n \n \n\n\n \n \n Method that is meant to be overwritten by a subclass to communicate with an API. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin(value)\n \n \n\n\n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:67\n \n \n\n\n \n \n Method that is meant to be overwritten by a subclass to communicate with an API. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:51\n \n \n\n\n \n \n Initializes the form \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n onSubmit\n \n \n \n \n \n \n \nonSubmit()\n \n \n\n\n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:72\n \n \n\n\n \n \n Is called when the form has been successfully submitted. Calls login and resets the form after. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n showError\n \n \n \n \n \n \n \nshowError(err)\n \n \n\n\n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:59\n \n \n\n\n \n \n Shows the given error in the form. Clears the password field and emits the error event. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n err\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n errorMessage\n \n \n \n \n \n \n \n errorMessage: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:22\n \n \n\n \n \n Contains possible error messages. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n form\n \n \n \n \n \n \n \n form: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:18\n \n \n\n \n \n The login's form group.\n\n \n \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:44\n \n \n\n \n \n Recent error Notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n Protected\n submitted\n \n \n \n \n \n \n \n submitted: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:20\n \n \n\n \n \n Flips true when submitted. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:47\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Input, OnInit } from '@angular/core';\nimport { Validators } from '@angular/forms';\nimport { FieldValidators } from '../../utility/validators/field-validators';\nimport { WithLoader } from '../../loader/with-loader.interface';\nimport { LoginFormComponent } from '../login-form/login-form.component';\n\n/** Login Form Component with validation. Fires success event with credentials on submit.\n * https://components.entrecode.de/ui/login?e=1\n*/\n@Component({\n selector: 'ec-signup-form',\n templateUrl: './signup-form.component.html',\n})\nexport class SignupFormComponent extends LoginFormComponent implements OnInit, WithLoader {\n\n /** The Label of the submit button. Defaults to Login */\n @Input() buttonLabel = this.symbol.resolve('signup.button.label');\n /** The Placeholder of the mail Field */\n @Input() invitePlaceholder = this.symbol.resolve('signup.invite.placeholder');\n /** If set, the invite field will be hidden and the given code will be used for signup */\n @Input() invite = '';\n /** Method that is meant to be overwritten by a subclass to communicate with an API. */\n signup(value) { // meant to be overridden\n return Promise.resolve(value);\n }\n\n /** Initializes the form */\n ngOnInit() {\n this.form = this.fb.group({\n email: ['', [Validators.required, FieldValidators.email]], // emailAvailable?\n password: ['', [Validators.required]],\n invite: [this.invite, [Validators.required]] // FieldValidators.uuid\n });\n }\n\n /** Is called when the form has been successfully submitted. Calls login and resets the form after. */\n onSubmit() {\n this.submitted = true;\n delete this.errorMessage;\n if (!this.form.valid) {\n return;\n }\n const login = this.signup(this.form.value)\n .then((res) => {\n // this.form.reset();\n this.success.emit(res);\n });\n if (this.loader) {\n this.loader.wait(login);\n }\n }\n}\n\n \n\n \n \n \n {{errorMessage}}\n \n \n {{emailLabel}}\n \n \n \n \n Passwort\n \n \n \n \n Invite\n \n \n \n\n \n {{buttonLabel}}\n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{errorMessage}} {{emailLabel}} Passwort Invite {{buttonLabel}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'SignupFormComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/SlotHostDirective.html":{"url":"directives/SlotHostDirective.html","title":"directive - SlotHostDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n SlotHostDirective\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/io/slot-host.directive.ts\n \n\n \n Description\n \n \n The field host is a helper to load components inside its view container.\nsee https://angular.io/guide/dynamic-component-loader\n\n \n\n\n\n \n Metadata\n \n \n\n \n Selector\n [ecSlotHost]\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n viewContainerRef\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(viewContainerRef: ViewContainerRef)\n \n \n \n \n Defined in packages/ui/src/lib/io/slot-host.directive.ts:9\n \n \n\n \n \n The constructor exposes the viewContainer that is used to load components into from outside.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n viewContainerRef\n \n \n ViewContainerRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n viewContainerRef\n \n \n \n \n \n \n \n viewContainerRef: ViewContainerRef\n\n \n \n \n \n Type : ViewContainerRef\n\n \n \n \n \n Defined in packages/ui/src/lib/io/slot-host.directive.ts:11\n \n \n\n\n \n \n\n\n\n \n\n\n \n import { Directive, ViewContainerRef } from '@angular/core';\n\n/** The field host is a helper to load components inside its view container.\n * see https://angular.io/guide/dynamic-component-loader\n * */\n@Directive({\n selector: '[ecSlotHost]',\n})\nexport class SlotHostDirective {\n /** The constructor exposes the viewContainer that is used to load components into from outside.*/\n constructor(public viewContainerRef: ViewContainerRef) {\n }\n}\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Sorter.html":{"url":"classes/Sorter.html","title":"class - Sorter","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Sorter\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/sorter/sorter.ts\n \n\n \n Description\n \n \n The Sorter is a singleton that handles all kinds of sorting operations. \n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Static\n sortType\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Private\n Static\n getAlgorithm\n \n \n Static\n sort\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Static\n sortType\n \n \n \n \n \n \n \n sortType: object\n\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n 'string': sortString,\n 'number': sortNumber,\n 'boolean': sortBoolean\n }\n \n \n \n \n Defined in packages/core/src/lib/sorter/sorter.ts:25\n \n \n\n \n \n Contains sorting methods for different value types. \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Private\n Static\n getAlgorithm\n \n \n \n \n \n \n \n \n getAlgorithm(items: Array>, property?: string)\n \n \n\n\n \n \n Defined in packages/core/src/lib/sorter/sorter.ts:32\n \n \n\n\n \n \n Returns the sorting algorithm for the given item array. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n items\n \n Array>\n \n \n \n No\n \n \n\n \n \n property\n \n string\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : number\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n sort\n \n \n \n \n \n \n \n \n sort(items: Array>, property?: string, desc?: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/sorter/sorter.ts:62\n \n \n\n\n \n \n Sorts a given Array of items after a given property.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n items\n \n Array>\n \n \n \n No\n \n \n\n \n Array of arbitrary content.\n\n \n \n \n property\n \n string\n \n \n \n Yes\n \n \n\n \n Optional property to sort after (For Objects)\n\n \n \n \n desc\n \n boolean\n \n \n \n Yes\n \n \n\n \n Optional Flag that will reverse sort the result (descending).\n\n \n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n\n \n Sorter\nThe Sorter is a static class that acts as a helper to sort different primitive types. See the tests for example usage.\n\n \n\n \n import { Item } from '../item/item';\n\n/** Used for natural sorting of strings */\nconst collator = new Intl.Collator(undefined, { numeric: true, sensitivity: 'base' });\n\n/** Sorts strings (naturally) */\nexport function sortString(a, b) {\n return collator.compare(a, b);\n}\n\n/** Sorts numbers */\nexport function sortNumber(a, b) {\n return a - b;\n}\n\n/** Sorts booleans */\nexport function sortBoolean(a, b) {\n return a ? -1 : 1;\n}\n\n/** The Sorter is a singleton that handles all kinds of sorting operations. */\nexport abstract class Sorter {\n\n /** Contains sorting methods for different value types. */\n static sortType = {\n 'string': sortString,\n 'number': sortNumber,\n 'boolean': sortBoolean\n };\n\n /** Returns the sorting algorithm for the given item array. */\n private static getAlgorithm(items: Array>, property?: string): (a, b) => number {\n if (!items.length) {\n return;\n }\n if (property && !items\n .reduce((has, item) => has && item.sort(property) !== undefined, true)) {\n console.warn('cannot sort property \"' + property + '\" because not all items have that property', items);\n return;\n }\n const types = items\n .map(item => typeof item.sort(property))\n .filter((item, index, _items) => _items.indexOf(item) === index);\n if (types.length > 1) {\n console.warn('cannot sort items because they contain multiple types:', types);\n return;\n }\n if (!this.sortType[types[0]]) {\n console.warn('cannot sort items because no algorithm was found for type', types[0]);\n return;\n }\n return this.sortType[types[0]];\n }\n\n /** Sorts a given Array of items after a given property.\n * @param items Array of arbitrary content.\n * @param property Optional property to sort after (For Objects)\n * @param desc Optional Flag that will reverse sort the result (descending).\n * @param resolve Optional resolve function to expose relevant the part of object that contains\n * the given property. */\n\n static sort(items: Array>, property?: string, desc?: boolean): Array {\n const algorithm = this.getAlgorithm(items, property);\n if (!algorithm) {\n return;\n }\n items.sort((a, b) => {\n if (!property) {\n return algorithm(a.resolve(), b.resolve());\n }\n return algorithm(a.sort(property), b.sort(property));\n });\n if (desc) {\n items.reverse();\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Symbol.html":{"url":"interfaces/Symbol.html","title":"interface - Symbol","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Symbol\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/symbol/symbol.interface.ts\n \n\n \n Description\n \n \n A Symbol is specified with a unique name and an optional string content. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n content\n \n \n name\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n content\n \n \n \n \n content: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Text content. If nothing is set, the symbol is expected to have e.g. valid font glyph name. \n\n \n \n \n \n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n The name under which the symbol is accessible. \n\n \n \n \n \n \n \n\n\n \n export interface Symbol {\n /** The name under which the symbol is accessible. */\n name: string;\n /** Text content. If nothing is set, the symbol is expected to have e.g. valid font glyph name. */\n content?: string;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/SymbolModule.html":{"url":"modules/SymbolModule.html","title":"module - SymbolModule","body":"\n \n\n\n\n\n Modules\n SymbolModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SymbolModule\n\n\n\ncluster_SymbolModule_declarations\n\n\n\ncluster_SymbolModule_exports\n\n\n\ncluster_SymbolModule_providers\n\n\n\n\nSymbolPipe\n\nSymbolPipe\n\n\n\nSymbolModule\n\nSymbolModule\n\nSymbolModule -->\n\nSymbolPipe->SymbolModule\n\n\n\n\n\nSymbolPipe \n\nSymbolPipe \n\nSymbolPipe -->\n\nSymbolModule->SymbolPipe \n\n\n\n\n\nSymbolService\n\nSymbolService\n\nSymbolModule -->\n\nSymbolService->SymbolModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/symbol/symbol.module.ts\n \n\n\n \n Description\n \n \n Collects all localization related components and services.\n\n \n\n\n \n \n \n Declarations\n \n \n SymbolPipe\n \n \n \n \n Providers\n \n \n SymbolService\n \n \n \n \n Exports\n \n \n SymbolPipe\n \n \n \n \n \n\n\n \n\n \n Localization\nYou can setup localization via the SymbolService:\nimport en from './en';\n\n@Component({\n templateUrl: './app.component.html',\n})\nexport class AppComponent {\n constructor(private symbols: SymbolService) {\n this.symbols.set(en);\n }\n}It is expected that you pass an array of Symbol's to SymbolService#set\nDate Localization\nIf you are using datepickers, you have to include the following line to your root component:\nmoment.locale(this.symbols.resolve('moment.locale'));Using symbols in templates\nTo translate symbols in a template, use the symbol pipe:\n{{'symbol.language' | symbol}} Overwriting\nThe names of the symbols act as unique identifier, meaning you can overwrite any preexisting symbols. The default preexisting symbols of ec.components can be looked up here, or directly at the source: EN, DE\n\n \n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { SymbolService } from './symbol.service';\nimport { SymbolPipe } from './symbol.pipe';\n\n/**\n * Collects all localization related components and services.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [SymbolPipe],\n exports: [SymbolPipe],\n providers: [SymbolService],\n})\nexport class SymbolModule { }\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/SymbolPipe.html":{"url":"injectables/SymbolPipe.html","title":"injectable - SymbolPipe","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n SymbolPipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/symbol/symbol.pipe.ts\n \n\n \n Description\n \n \n The symbol pipe translates Symbol names to their content.\n * {{ 'entry.saved' | symbol }}\n *See SymbolService for more info about Symbols.\n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n transform\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nObject()\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(name: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.pipe.ts:21\n \n \n\n\n \n \n Calls SymbolService.resolve with the given name \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n\n\n\n \n\n\n \n import { Pipe, Injectable, PipeTransform } from '@angular/core';\nimport { Symbol } from './symbol.interface';\nimport { SymbolService } from './symbol.service';\n\n/** The symbol pipe translates Symbol names to their content.\n *\n * ```html\n * {{ 'entry.saved' | symbol }}\n * ```\n *\n * See SymbolService for more info about Symbols.\n */\n@Pipe({\n name: 'symbol'\n})\n@Injectable()\nexport class SymbolPipe implements PipeTransform {\n /** Depends on the SymbolService */\n constructor(private symbol: SymbolService) { }\n /** Calls SymbolService.resolve with the given name */\n transform(name: string): string {\n if (!name) {\n return '';\n }\n return this.symbol.resolve(name) || '';\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/SymbolService.html":{"url":"injectables/SymbolService.html","title":"injectable - SymbolService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n SymbolService\n\n\n\n \n Info\n \n \n Source\n \n \n Examples\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/symbol/symbol.service.ts\n \n\n \n Description\n \n \n Service to register symbols for localization. The default set is de.\nhttps://components.entrecode.de/ui/symbols?e=1\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Static\n registry\n \n \n Public\n registry\n \n \n Static\n sets\n \n \n Public\n sets\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n get\n \n \n get\n \n \n Static\n resolve\n \n \n resolve\n \n \n Static\n set\n \n \n set\n \n \n use\n \n \n useSet\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:46\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n get\n \n \n \n \n \n \n \n \n get(name: string, registry)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:23\n \n \n\n\n \n \n finds a symbol in the registry by name \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n name\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n registry\n \n \n \n \n No\n \n \n \n SymbolService.registry\n \n\n \n \n \n \n \n \n \n Returns : Symbol\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n get\n \n \n \n \n \n \n \nget(name: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:66\n \n \n\n\n \n \n finds a symbol in the registry by name \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Symbol\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n resolve\n \n \n \n \n \n \n \n \n resolve(name: string, registry)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:28\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n name\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n registry\n \n \n \n \n No\n \n \n \n SymbolService.registry\n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n resolve\n \n \n \n \n \n \n \nresolve(name: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:71\n \n \n\n\n \n \n resolves a symbols content by name \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n set\n \n \n \n \n \n \n \n \n set(symbols: Symbol[], registry)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:37\n \n \n\n\n \n \n Uses the given symbol set to enhance the current registry.\nAll duplicates will be overriden. Non specified symbols will stay in the registry. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n symbols\n \n Symbol[]\n \n \n \n No\n \n \n \n []\n \n\n \n \n registry\n \n \n \n \n No\n \n \n \n SymbolService.registry\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \n \nset(symbols: Symbol[])\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:77\n \n \n\n\n \n \n Uses the given symbol set to enhance the current registry.\nAll duplicates will be overriden. Non specified symbols will stay in the registry. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n symbols\n \n Symbol[]\n \n \n \n No\n \n \n \n []\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n use\n \n \n \n \n \n \n \nuse(symbols: Symbol[])\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:53\n \n \n\n\n \n \n Uses the given symbol set. Replaces registry. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbols\n \n Symbol[]\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n useSet\n \n \n \n \n \n \n \nuseSet(key: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:58\n \n \n\n\n \n \n uses the set with the given key \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Static\n registry\n \n \n \n \n \n \n \n registry: Symbol[]\n\n \n \n \n \n Type : Symbol[]\n\n \n \n \n \n Default value : Object.keys(SymbolService.sets).length ? SymbolService.sets[Object.keys(SymbolService.sets)[0]] : []\n \n \n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n registry\n \n \n \n \n \n \n \n registry: Symbol[]\n\n \n \n \n \n Type : Symbol[]\n\n \n \n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n \n Static\n sets\n \n \n \n \n \n \n \n sets: literal type\n\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {\n en, de\n }\n \n \n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:12\n \n \n\n \n \n The current symbol set that is registered to the service. It will be used to resolve strings from. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n sets\n \n \n \n \n \n \n \n sets: literal type\n\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {\n en, de\n }\n \n \n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:18\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Symbol } from './symbol.interface';\nimport { de } from './de';\nimport { en } from './en';\n/** Service to register symbols for localization. The default set is de.\n * https://components.entrecode.de/ui/symbols?e=1\n*/\n// https://github.com/ng-packagr/ng-packagr/issues/696\n@Injectable()\nexport class SymbolService {\n /** The current symbol set that is registered to the service. It will be used to resolve strings from. */\n public static sets: { [key: string]: Symbol[] } = {\n en, de\n };\n public static registry: Symbol[] = Object.keys(SymbolService.sets).length ? SymbolService.sets[Object.keys(SymbolService.sets)[0]] : [];\n\n public registry: Symbol[];\n public sets: { [key: string]: Symbol[] } = {\n en, de\n };\n\n /** finds a symbol in the registry by name */\n static get(name: string, registry = SymbolService.registry): Symbol {\n const symbol = registry.find(s => s.name === name);\n return symbol;\n }\n\n static resolve(name: string, registry = SymbolService.registry): string {\n const symbol = SymbolService.get(name, registry);\n if (symbol) {\n return symbol.content;\n }\n return null;\n }\n /** Uses the given symbol set to enhance the current registry.\n * All duplicates will be overriden. Non specified symbols will stay in the registry. */\n static set(symbols: Symbol[] = [], registry = SymbolService.registry) {\n symbols.map(symbol => {\n const index = registry.indexOf(this.get(symbol.name));\n if (index === -1) {\n registry.push(symbol);\n } else {\n registry[index] = symbol;\n }\n });\n }\n\n constructor() {\n this.registry = Object.keys(this.sets).length ? this.sets[Object.keys(this.sets)[0]] : [];\n }\n\n /** Uses the given symbol set. Replaces registry. */\n use(symbols: Symbol[]) {\n this.registry = symbols;\n }\n\n /** uses the set with the given key */\n useSet(key: string) {\n if (!this.sets[key]) {\n throw new Error('the symbol set with the key \"' + key + '\" does not exist');\n }\n this.use(this.sets[key]);\n }\n\n /** finds a symbol in the registry by name */\n get(name: string): Symbol {\n return SymbolService.get(name, this.registry);\n }\n\n /** resolves a symbols content by name */\n resolve(name: string): string {\n return SymbolService.resolve(name, this.registry);\n }\n\n /** Uses the given symbol set to enhance the current registry.\n * All duplicates will be overriden. Non specified symbols will stay in the registry. */\n set(symbols: Symbol[] = []) {\n SymbolService.set(symbols, this.registry);\n }\n}\n\n \n\n \n \n no-iframes\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TabComponent.html":{"url":"components/TabComponent.html","title":"component - TabComponent","body":"\n \n\n\n\n\n\n Components\n TabComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/utility/tab/tab.component.ts\n\n\n \n Description\n \n \n A Tab is meant to be placed inside TabsComponent \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-tab\n \n\n\n\n\n \n templateUrl\n ./tab.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n el\n \n \n parent\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n activate\n \n \n deactivate\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n label\n \n \n route\n \n \n selected\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n activated\n \n \n deactivated\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(el: ElementRef)\n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:21\n \n \n\n \n \n The constructor adds the tab itself to its TabsComponent parent. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n el\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n label\n \n \n The tab's label \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:11\n \n \n \n \n \n \n \n \n \n route\n \n \n If set, the tab will be selected when the given (relative) route is active. \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:15\n \n \n \n \n \n \n \n \n \n selected\n \n \n If set to true, the tab will be selected at start. \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:13\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n activated\n \n \n Output that emits when the tab is activated \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:17\n \n \n \n \n \n \n \n \n \n deactivated\n \n \n Output that emits when the tab is deactivated \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:19\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n activate\n \n \n \n \n \n \n \nactivate()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:27\n \n \n\n\n \n \n Selects the tab and nexts activated \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n deactivate\n \n \n \n \n \n \n \ndeactivate()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:32\n \n \n\n\n \n \n Deselects the tab and nexts activated \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n el\n \n \n \n \n \n \n \n el: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:24\n \n \n\n\n \n \n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n parent: TabsComponent\n\n \n \n \n \n Type : TabsComponent\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:21\n \n \n\n \n \n The parent TabsComponent \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, ElementRef, EventEmitter, Input, Output } from '@angular/core';\nimport { TabsComponent } from '../tabs/tabs.component';\n\n/** A Tab is meant to be placed inside TabsComponent */\n@Component({\n selector: 'ec-tab',\n templateUrl: './tab.component.html',\n})\nexport class TabComponent {\n /** The tab's label */\n @Input() label: string;\n /** If set to true, the tab will be selected at start. */\n @Input() selected: boolean;\n /** If set, the tab will be selected when the given (relative) route is active. */\n @Input() route: string;\n /** Output that emits when the tab is activated */\n @Output() activated: EventEmitter = new EventEmitter();\n /** Output that emits when the tab is deactivated */\n @Output() deactivated: EventEmitter = new EventEmitter();\n /** The parent TabsComponent */\n parent: TabsComponent;\n\n /** The constructor adds the tab itself to its TabsComponent parent. */\n constructor(public el: ElementRef) {\n }\n /** Selects the tab and nexts activated */\n activate() {\n this.selected = true;\n this.activated.next();\n }\n /** Deselects the tab and nexts activated */\n deactivate() {\n this.selected = false;\n this.deactivated.next();\n }\n}\n\n \n\n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'TabComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TabsComponent.html":{"url":"components/TabsComponent.html","title":"component - TabsComponent","body":"\n \n\n\n\n\n\n Components\n TabsComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/utility/tabs/tabs.component.ts\n\n\n \n Description\n \n \n The TabsComponent holds serveral instances of TabComponent.\nhttps://components.entrecode.de/ui/tabs?e=1\n\n \n\n\n \n Implements\n \n \n AfterContentInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-tabs\n \n\n\n\n\n \n templateUrl\n ./tabs.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n tabs\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n initTabs\n \n \n ngAfterContentInit\n \n \n select\n \n \n selectByUrl\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n selected\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(router: Router, route: ActivatedRoute)\n \n \n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:16\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n selected\n \n \n You can set the initially selected tab by passing a TabComponent in (e.g. via #variable) \n\n \n Type : TabComponent\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:16\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n initTabs\n \n \n \n \n \n \n \ninitTabs()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:38\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngAfterContentInit\n \n \n \n \n \n \n \nngAfterContentInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:48\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \n \nselect(tab: TabComponent, skipRoute)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:53\n \n \n\n\n \n \n Selects the given tab (Component). \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n tab\n \n TabComponent\n \n \n \n No\n \n \n \n \n\n \n \n skipRoute\n \n \n \n \n No\n \n \n \n false\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n selectByUrl\n \n \n \n \n \n \n \nselectByUrl(url: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:27\n \n \n\n\n \n \n Selects the tab associated with the route present in the given url \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n url\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n tabs\n \n \n \n \n \n \n \n tabs: QueryList\n\n \n \n \n \n Type : QueryList\n\n \n \n \n \n Decorators : \n \n \n @ContentChildren(TabComponent)\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:14\n \n \n\n \n \n The nested Tabs \n\n \n \n\n \n \n\n\n\n\n \n Tabs\nThis is how you use Tabs:\n\n \n \n \n \n \n \n \n \n \n \n \n \nTODO:\n\n*ngIf\nSlot for templated Tab Header\n\n\n \n\n \n import { AfterContentInit, Component, ContentChildren, Input, QueryList } from '@angular/core';\nimport { ActivatedRoute, NavigationEnd, Router } from '@angular/router';\nimport { TabComponent } from '../tab/tab.component';\n\n/** The TabsComponent holds serveral instances of TabComponent.\n * https://components.entrecode.de/ui/tabs?e=1\n*/\n@Component({\n selector: 'ec-tabs',\n templateUrl: './tabs.component.html',\n})\nexport class TabsComponent implements AfterContentInit {\n /** The nested Tabs */\n @ContentChildren(TabComponent) tabs: QueryList;\n /** You can set the initially selected tab by passing a TabComponent in (e.g. via #variable) */\n @Input() selected: TabComponent;\n\n constructor(private router: Router, private route: ActivatedRoute) {\n this.router.events.subscribe((event) => {\n if (event instanceof NavigationEnd) {\n this.selectByUrl(event.url);\n }\n });\n }\n\n /** Selects the tab associated with the route present in the given url */\n selectByUrl(url: string) {\n if (!url || !this.tabs) {\n return;\n }\n const paths = url.split('/');\n const match = this.tabs.find((tab) => paths[paths.length - 1].indexOf(tab.route) !== -1);\n if (match) {\n this.select(match, true);\n }\n }\n\n initTabs() {\n this.tabs.forEach((tab) => {\n tab.parent = this;\n if (tab.el.nativeElement.getAttribute('selected') !== null) {\n this.select(tab);\n }\n });\n this.selectByUrl(this.router.url);\n }\n\n ngAfterContentInit() {\n this.initTabs();\n }\n\n /** Selects the given tab (Component). */\n select(tab: TabComponent, skipRoute = false) {\n if (this.selected) {\n this.selected.deactivate();\n }\n this.selected = tab;\n tab.activate();\n if (tab.route && !skipRoute) {\n this.router.navigate(['../' + tab.route], { relativeTo: this.route });\n }\n }\n\n}\n\n \n\n \n \n \n \n \n {{tab.label}}\n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{tab.label}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'TabsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TinymceComponent.html":{"url":"components/TinymceComponent.html","title":"component - TinymceComponent","body":"\n \n\n\n\n\n\n Components\n TinymceComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/tinymce/src/lib/tinymce/tinymce.component.ts\n\n\n \n Description\n \n \n Wraps tinymce as a control input.\nhttps://components.entrecode.de/misc/tinymce?e=1\n\n \n\n\n \n Implements\n \n \n AfterViewInit\n OnDestroy\n ControlValueAccessor\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n \n encapsulation\n ViewEncapsulation.None\n \n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => TinymceComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-tinymce\n \n\n \n styleUrls\n ./tinymce.component.scss\n \n\n\n\n \n templateUrl\n ./tinymce.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n container\n \n \n Public\n editor\n \n \n propagateChange\n \n \n ready\n \n \n update\n \n \n Public\n value\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addImageByUrl\n \n \n destroy\n \n \n init\n \n \n ngAfterViewInit\n \n \n ngOnDestroy\n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n debounce\n \n \n lazy\n \n \n settings\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n changed\n \n \n setup\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(app: ApplicationRef)\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:67\n \n \n\n \n \n Subscribes for changes and propagates them + calling application tick manually :( \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n app\n \n \n ApplicationRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n debounce\n \n \n Debounce time for value change processing \n\n \n Default value : 200\n \n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:56\n \n \n \n \n \n \n \n \n \n lazy\n \n \n If true, the editor wont init by default. This can be useful when using tinymce inside tabs or pops where tiny breaks \n\n \n Default value : false\n \n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:60\n \n \n \n \n \n \n \n \n \n settings\n \n \n TinyMCE Settings. Get Object.assigned to the default settings \n\n \n Type : any\n\n \n \n Default value : {}\n \n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:58\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n changed\n \n \n Output that emits when the value has been changed by the user \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:62\n \n \n \n \n \n \n \n \n \n setup\n \n \n Output that is emitted when the setup is being made.\nPasses the editor instance. Intended to be used for custom controls \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:65\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n addImageByUrl\n \n \n \n \n \n \n \naddImageByUrl(url: string, caption: string, size: number)\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:133\n \n \n\n\n \n \n adds an image by url to the editor \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n url\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n caption\n \n string\n \n \n \n No\n \n \n \n ''\n \n\n \n \n size\n \n number\n \n \n \n No\n \n \n \n 200\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n destroy\n \n \n \n \n \n \n \ndestroy()\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:91\n \n \n\n\n \n \n Destroys the editor. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \n \ninit()\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:103\n \n \n\n\n \n \n Initializes the editor \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \n \nngAfterViewInit()\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:85\n \n \n\n\n \n \n calls init \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:98\n \n \n\n\n \n \n calls destroy \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:147\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:151\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: any)\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:138\n \n \n\n\n \n \n Writes value to editor on outside model change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n container\n \n \n \n \n \n \n \n container: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('container')\n \n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:52\n \n \n\n \n \n The container where the editor is rendered \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n editor\n \n \n \n \n \n \n \n editor: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:50\n \n \n\n \n \n The current editor instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => { }\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:145\n \n \n\n\n \n \n \n \n \n \n \n \n \n ready\n \n \n \n \n \n \n \n ready: Promise\n\n \n \n \n \n Type : Promise\n\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:48\n \n \n\n \n \n Promise that resolves when the editor has been initialized \n\n \n \n\n \n \n \n \n \n \n \n \n \n update\n \n \n \n \n \n \n \n update: Subject\n\n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:54\n \n \n\n \n \n Subject that is nexted on editor change \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n value\n \n \n \n \n \n \n \n value: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:67\n \n \n\n \n \n Current value \n\n \n \n\n \n \n\n\n\n\n\n \n import {\n AfterViewInit, ApplicationRef,\n Component, ElementRef,\n EventEmitter, forwardRef,\n Input, OnDestroy, Output,\n ViewChild, ViewEncapsulation\n} from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { Subject } from 'rxjs';\nimport tinymce from 'tinymce/tinymce';\nimport 'tinymce/plugins/autolink';\nimport 'tinymce/plugins/autoresize';\nimport 'tinymce/plugins/code';\nimport 'tinymce/plugins/colorpicker';\nimport 'tinymce/plugins/contextmenu';\nimport 'tinymce/plugins/fullscreen';\nimport 'tinymce/plugins/link';\nimport 'tinymce/plugins/lists';\nimport 'tinymce/plugins/paste';\nimport 'tinymce/plugins/table';\nimport 'tinymce/plugins/template';\nimport 'tinymce/plugins/textcolor';\nimport 'tinymce/plugins/visualblocks';\nimport 'tinymce/themes/modern';\n\nimport { editorSettings } from './tinymce-settings';\nimport { debounceTime } from 'rxjs/operators';\n\n/** Wraps tinymce as a control input.\n * https://components.entrecode.de/misc/tinymce?e=1\n*/\n@Component({\n selector: 'ec-tinymce',\n templateUrl: './tinymce.component.html',\n styleUrls: ['./tinymce.component.scss'],\n encapsulation: ViewEncapsulation.None,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => TinymceComponent),\n multi: true\n }\n ]\n})\nexport class TinymceComponent\n implements AfterViewInit, OnDestroy, ControlValueAccessor, OnDestroy {\n /** Promise that resolves when the editor has been initialized */\n ready: Promise;\n /** The current editor instance */\n public editor: any;\n /** The container where the editor is rendered */\n @ViewChild('container') container: ElementRef;\n /** Subject that is nexted on editor change */\n update: Subject = new Subject();\n /** Debounce time for value change processing */\n @Input() debounce = 200;\n /** TinyMCE Settings. Get Object.assigned to the default settings */\n @Input() settings: any = {};\n /** If true, the editor wont init by default. This can be useful when using tinymce inside tabs or pops where tiny breaks */\n @Input() lazy = false;\n /** Output that emits when the value has been changed by the user */\n @Output() changed: EventEmitter = new EventEmitter();\n /** Output that is emitted when the setup is being made.\n * Passes the editor instance. Intended to be used for custom controls */\n @Output() setup: EventEmitter = new EventEmitter();\n /** Current value */\n public value = '';\n\n /** Subscribes for changes and propagates them + calling application tick manually :( */\n constructor(private app: ApplicationRef) {\n this.update\n .asObservable()\n .pipe(debounceTime(this.debounce))\n .subscribe(editor => {\n if (!this.editor) {\n return;\n }\n this.value = editor.getContent();\n this.propagateChange(this.value);\n this.changed.emit(this.value);\n this.app.tick();\n });\n }\n /** calls init */\n ngAfterViewInit() {\n if (!this.lazy) {\n this.init();\n }\n }\n /** Destroys the editor. */\n destroy() {\n if (this.editor) {\n this.editor.remove();\n delete this.editor;\n }\n }\n /** calls destroy */\n ngOnDestroy() {\n this.destroy();\n }\n\n /** Initializes the editor */\n init() {\n const settings = Object.assign({},\n editorSettings,\n this.settings,\n {\n target: this.container.nativeElement,\n setup: (editor) => {\n editorSettings.setup(editor);\n if (this.settings && this.settings.setup) {\n this.settings.setup(editor);\n }\n this.setup.emit(editor);\n }\n }\n );\n this.ready = new Promise((resolve, reject) => setTimeout(() => resolve(tinymce.init(settings))));\n this.ready.then(editor => {\n this.editor = editor[0];\n this.editor.setContent(this.value || '');\n this.editor.on('dblclick', e => {\n if (e.target.localName === 'img') {\n this.editor.buttons.image.onclick(true, e.toElement);\n }\n });\n this.editor.on('change keyup', res => this.update.next(this.editor));\n return this.editor;\n });\n }\n\n /** adds an image by url to the editor */\n addImageByUrl(url: string, caption = '', size = 200) {\n this.editor.execCommand('mceInsertContent', false,\n ``);\n }\n /** Writes value to editor on outside model change. */\n writeValue(value: any) {\n this.value = value || '';\n if (this.editor) {\n this.editor.setContent(this.value);\n }\n }\n\n propagateChange = (_: any) => { };\n\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n\n registerOnTouched() { }\n}\n\n \n\n \n \n \n\n \n \n ./tinymce.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'TinymceComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/TinymceModule.html":{"url":"modules/TinymceModule.html","title":"module - TinymceModule","body":"\n \n\n\n\n\n Modules\n TinymceModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_TinymceModule\n\n\n\ncluster_TinymceModule_declarations\n\n\n\ncluster_TinymceModule_exports\n\n\n\n\nTinymceComponent\n\nTinymceComponent\n\n\n\nTinymceModule\n\nTinymceModule\n\nTinymceModule -->\n\nTinymceComponent->TinymceModule\n\n\n\n\n\nTinymceComponent \n\nTinymceComponent \n\nTinymceComponent -->\n\nTinymceModule->TinymceComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/tinymce/src/lib/tinymce.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n TinymceComponent\n \n \n \n \n EntryComponents\n \n \n TinymceComponent\n \n \n \n \n Exports\n \n \n TinymceComponent\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { TinymceComponent } from './tinymce/tinymce.component';\n\nexport const tinymceModuleConfig = {\n declarations: [TinymceComponent],\n entryComponents: [TinymceComponent],\n exports: [TinymceComponent]\n};\n\n@NgModule(tinymceModuleConfig)\nexport class TinymceModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ToggleComponent.html":{"url":"components/ToggleComponent.html","title":"component - ToggleComponent","body":"\n \n\n\n\n\n\n Components\n ToggleComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/form/toggle/toggle.component.ts\n\n\n \n Description\n \n \n The toggle component is an alternative to the default boolean checkbox with fancier style.\nIt is used in the default input template for the view 'toggle'. \n\n \n\n\n \n Implements\n \n \n ControlValueAccessor\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => ToggleComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-toggle\n \n\n\n\n\n \n templateUrl\n ./toggle.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n propagateChange\n \n \n value\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n toggle\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n placeholder\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n placeholder\n \n \n The toggles placeholder (currently not in use) \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:21\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:36\n \n \n\n\n \n \n Registers change callback \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:40\n \n \n\n\n \n \n Register Touch \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n toggle\n \n \n \n \n \n \n \ntoggle()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:24\n \n \n\n\n \n \n Toggles the value \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: boolean)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:29\n \n \n\n\n \n \n writes incoming value \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n boolean\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => {\n }\n \n \n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n value: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:19\n \n \n\n \n \n The current value \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, forwardRef, Input } from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\n\n/** The toggle component is an alternative to the default boolean checkbox with fancier style.\n * It is used in the default input template for the view 'toggle'. */\n@Component({\n selector: 'ec-toggle',\n templateUrl: './toggle.component.html',\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => ToggleComponent),\n multi: true\n }\n ]\n})\nexport class ToggleComponent implements ControlValueAccessor {\n /** The current value */\n value: boolean;\n /** The toggles placeholder (currently not in use) */\n @Input() placeholder: string;\n\n /** Toggles the value */\n toggle() {\n this.value = !this.value;\n this.propagateChange(this.value);\n }\n /** writes incoming value */\n writeValue(value: boolean) {\n this.value = value;\n }\n /* Propagates change*/\n propagateChange = (_: any) => {\n }\n /** Registers change callback */\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n /** Register Touch */\n registerOnTouched() {\n }\n\n}\n\n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ToggleComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/TypeConfigService.html":{"url":"injectables/TypeConfigService.html","title":"injectable - TypeConfigService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n TypeConfigService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/model-config/type-config.service.ts\n \n\n \n Description\n \n \n The TypeConfig holds each field type's specific behaviour in certain situations \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n nestedCrudConfig\n \n \n Private\n types\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n displayAccount\n \n \n displayDate\n \n \n get\n \n \n groupDate\n \n \n set\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(symbol: SymbolService)\n \n \n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:179\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n displayAccount\n \n \n \n \n \n \n \ndisplayAccount()\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:217\n \n \n\n\n \n \n Returns an account display function \n\n\n \n Returns : (value: any, entry: any, property: any) => any\n\n \n \n \n \n \n \n \n \n \n \n \n \n displayDate\n \n \n \n \n \n \n \ndisplayDate(time)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:209\n \n \n\n\n \n \n Returns a date display function. If time is true, the time will be displayed too.\nUsese 'moment.format.date' and 'moment.format.time' symbols. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n time\n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : (value: any) => any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n get\n \n \n \n \n \n \n \nget(type: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:183\n \n \n\n\n \n \n Returns the base FieldConfig for the given type. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n type\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : FieldConfigProperty\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n groupDate\n \n \n \n \n \n \n \ngroupDate()\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:223\n \n \n\n\n \n \n Returns a date group function. Uses 'moment.format.month' symbol \n\n\n \n Returns : (value: any) => any\n\n \n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \n \nset(type: string, config: FieldConfigProperty)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:199\n \n \n\n\n \n \n Assigns the given config to the type, e.g. to change the default template of a type. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n type\n \n string\n \n \n \n No\n \n \n\n \n \n config\n \n FieldConfigProperty\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n nestedCrudConfig\n \n \n \n \n \n \n \n nestedCrudConfig: CrudConfig\n\n \n \n \n \n Type : CrudConfig\n\n \n \n \n \n Default value : {\n /* size: 5, */\n // methods: ['get']\n }\n \n \n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:15\n \n \n\n \n \n The default config for nested crud lists, as passed to entry-select \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n types\n \n \n \n \n \n \n \n types: FieldConfig\n\n \n \n \n \n Type : FieldConfig\n\n \n \n \n \n Default value : {\n id: {\n view: 'label'\n },\n text: {\n view: 'string',\n filterable: true,\n sortable: true\n },\n boolean: {\n prefill: false,\n filterOperator: 'exact'\n },\n formattedText: {\n view: 'textarea',\n filterable: true\n },\n number: {\n sortable: true,\n filterable: true,\n filterOperator: 'exact'\n },\n decimal: {\n view: 'number',\n sortable: true\n },\n url: {\n sortable: true,\n filterable: true\n },\n asset: {\n view: 'asset',\n inputView: 'asset-select',\n // view: 'avatar',\n input: DefaultEntryInputComponent,\n filterOperator: 'exact',\n filterable: true,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n filterPopClass: ''\n },\n assets: {\n view: 'assets',\n inputView: 'assets-select',\n // view: 'avatars',\n input: DefaultEntryInputComponent,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n prefill: [],\n filterOperator: 'any',\n filterable: true,\n queryFilter: value => value.split(','),\n filterPopClass: ''\n },\n dmAsset: {\n view: 'dmAsset',\n inputView: 'dmAsset-select',\n // view: 'avatar',\n input: DefaultEntryInputComponent,\n filterOperator: 'exact',\n filterable: true,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n filterPopClass: ''\n },\n dmAssets: {\n view: 'dmAssets',\n inputView: 'dmAssets-select',\n // view: 'avatars',\n input: DefaultEntryInputComponent,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n prefill: [],\n filterOperator: 'any',\n filterable: true,\n queryFilter: value => value.split(','),\n filterPopClass: ''\n },\n email: {},\n phone: {\n view: 'string'\n },\n datetime: {\n view: 'date',\n sortable: true,\n display: this.displayDate(true),\n validate: value => {\n if (value && (value === 'invalid' || !moment(value).isValid())) {\n return 'Ungültiges Datum';\n }\n return;\n },\n filterPopClass: 'ec-pop_dialog',\n placeholder: moment(new Date()).format(\n this.symbol.resolve('moment.format.date')\n )\n /*,\n prefill: new Date(0)*/\n },\n entry: {\n view: 'tag',\n inputView: 'entry-select',\n input: DefaultEntryInputComponent,\n output: DefaultOutputComponent,\n display: (value, entry, property) => entry.getTitle(property),\n filterable: true,\n filterOperator: 'exact',\n filterPopClass: 'ec-pop_dialog',\n nestedCrudConfig: this.nestedCrudConfig\n },\n entries: {\n view: 'tags',\n inputView: 'entries-select',\n inputViews: [\n {\n name: 'entries-select'\n },\n {\n name: 'entry-list-select',\n levels: 2\n }\n ],\n input: DefaultEntryInputComponent,\n output: DefaultOutputComponent,\n display: (value, entry, property) => entry.getTitle(property),\n filterable: true,\n filterOperator: 'any',\n prefill: [],\n queryFilter: value => value.split(','),\n filterPopClass: 'ec-pop_dialog',\n nestedCrudConfig: this.nestedCrudConfig\n },\n json: {\n view: 'json',\n input: DefaultEntryInputComponent,\n output: DefaultEntryOutputComponent,\n display: value => (value ? JSON.stringify(value) : '')\n },\n location: {\n input: DefaultEntryInputComponent,\n output: DefaultEntryOutputComponent,\n display: value => (value ? value.longitude + ',' + value.latitude : ''),\n filterPopClass: 'ec-pop_dialog'\n },\n account: {\n display: value => (value ? value.title : ''),\n input: AdminEntryInputComponent,\n output: DefaultEntryOutputComponent,\n filterPopClass: 'ec-pop_dialog'\n },\n role: {\n display: value => (value ? value.name : ''),\n input: AdminEntryInputComponent,\n output: DefaultEntryOutputComponent,\n filterPopClass: 'ec-pop_dialog'\n }\n }\n \n \n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:23\n \n \n\n \n \n Defines the base configuration of each type.\n\n \n \n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { FieldConfig, FieldConfigProperty } from '@ec.components/core';\nimport { DefaultInputComponent, DefaultOutputComponent, SymbolService } from '@ec.components/ui';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\nimport moment from 'moment-es6';\nimport { CrudConfig } from '../crud/crud-config.interface';\nimport { AdminEntryInputComponent } from '../entry-form/admin-entry-input.component';\nimport { DefaultEntryInputComponent } from '../entry-form/default-entry-input.component';\nimport { DefaultEntryOutputComponent } from '../entry-form/default-entry-output.component';\n\n/** The TypeConfig holds each field type's specific behaviour in certain situations */\n@Injectable()\nexport class TypeConfigService {\n /** The default config for nested crud lists, as passed to entry-select */\n private nestedCrudConfig: CrudConfig = {\n /* size: 5, */\n // methods: ['get']\n };\n\n // TODO check if filterPopClass: '' is still needed\n\n /** Defines the base configuration of each type.*/\n private types: FieldConfig = {\n id: {\n view: 'label'\n },\n text: {\n view: 'string',\n filterable: true,\n sortable: true\n },\n boolean: {\n prefill: false,\n filterOperator: 'exact'\n },\n formattedText: {\n view: 'textarea',\n filterable: true\n },\n number: {\n sortable: true,\n filterable: true,\n filterOperator: 'exact'\n },\n decimal: {\n view: 'number',\n sortable: true\n },\n url: {\n sortable: true,\n filterable: true\n },\n asset: {\n view: 'asset',\n inputView: 'asset-select',\n // view: 'avatar',\n input: DefaultEntryInputComponent,\n filterOperator: 'exact',\n filterable: true,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n filterPopClass: ''\n },\n assets: {\n view: 'assets',\n inputView: 'assets-select',\n // view: 'avatars',\n input: DefaultEntryInputComponent,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n prefill: [],\n filterOperator: 'any',\n filterable: true,\n queryFilter: value => value.split(','),\n filterPopClass: ''\n },\n dmAsset: {\n view: 'dmAsset',\n inputView: 'dmAsset-select',\n // view: 'avatar',\n input: DefaultEntryInputComponent,\n filterOperator: 'exact',\n filterable: true,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n filterPopClass: ''\n },\n dmAssets: {\n view: 'dmAssets',\n inputView: 'dmAssets-select',\n // view: 'avatars',\n input: DefaultEntryInputComponent,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n prefill: [],\n filterOperator: 'any',\n filterable: true,\n queryFilter: value => value.split(','),\n filterPopClass: ''\n },\n email: {},\n phone: {\n view: 'string'\n },\n datetime: {\n view: 'date',\n sortable: true,\n display: this.displayDate(true),\n validate: value => {\n if (value && (value === 'invalid' || !moment(value).isValid())) {\n return 'Ungültiges Datum';\n }\n return;\n },\n filterPopClass: 'ec-pop_dialog',\n placeholder: moment(new Date()).format(\n this.symbol.resolve('moment.format.date')\n )\n /*,\n prefill: new Date(0)*/\n },\n entry: {\n view: 'tag',\n inputView: 'entry-select',\n input: DefaultEntryInputComponent,\n output: DefaultOutputComponent,\n display: (value, entry, property) => entry.getTitle(property),\n filterable: true,\n filterOperator: 'exact',\n filterPopClass: 'ec-pop_dialog',\n nestedCrudConfig: this.nestedCrudConfig\n },\n entries: {\n view: 'tags',\n inputView: 'entries-select',\n inputViews: [\n {\n name: 'entries-select'\n },\n {\n name: 'entry-list-select',\n levels: 2\n }\n ],\n input: DefaultEntryInputComponent,\n output: DefaultOutputComponent,\n display: (value, entry, property) => entry.getTitle(property),\n filterable: true,\n filterOperator: 'any',\n prefill: [],\n queryFilter: value => value.split(','),\n filterPopClass: 'ec-pop_dialog',\n nestedCrudConfig: this.nestedCrudConfig\n },\n json: {\n view: 'json',\n input: DefaultEntryInputComponent,\n output: DefaultEntryOutputComponent,\n display: value => (value ? JSON.stringify(value) : '')\n },\n location: {\n input: DefaultEntryInputComponent,\n output: DefaultEntryOutputComponent,\n display: value => (value ? value.longitude + ',' + value.latitude : ''),\n filterPopClass: 'ec-pop_dialog'\n },\n account: {\n display: value => (value ? value.title : ''),\n input: AdminEntryInputComponent,\n output: DefaultEntryOutputComponent,\n filterPopClass: 'ec-pop_dialog'\n },\n role: {\n display: value => (value ? value.name : ''),\n input: AdminEntryInputComponent,\n output: DefaultEntryOutputComponent,\n filterPopClass: 'ec-pop_dialog'\n }\n };\n constructor(private symbol: SymbolService) { }\n\n /** Returns the base FieldConfig for the given type. */\n get(type: string): FieldConfigProperty {\n const config = this.types[type];\n if (!config) {\n console.error('missing config for type', type);\n return {};\n }\n Object.assign(config, {\n type,\n view: config.view || type,\n input: config.input || DefaultInputComponent,\n output: config.output || DefaultOutputComponent\n });\n return config;\n }\n\n /** Assigns the given config to the type, e.g. to change the default template of a type. */\n set(type: string, config: FieldConfigProperty) {\n if (!this.types[type]) {\n console.error('cannot configure non existing type', type);\n return;\n }\n Object.assign(this.types[type], config);\n }\n\n /** Returns a date display function. If time is true, the time will be displayed too.\n * Usese 'moment.format.date' and 'moment.format.time' symbols. */\n displayDate(time = true) {\n const format =\n this.symbol.resolve('moment.format.date') +\n (time ? ' ' + this.symbol.resolve('moment.format.time') : '');\n return value => (value ? moment(value).format(format) : '');\n }\n\n /** Returns an account display function */\n displayAccount() {\n return (value, entry, property) =>\n entry.getTitle(property) || this.symbol.resolve('field.creator.ecuser');\n }\n\n /** Returns a date group function. Uses 'moment.format.month' symbol */\n groupDate() {\n return value =>\n moment(value).format(this.symbol.resolve('moment.format.month'));\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/UiModule.html":{"url":"modules/UiModule.html","title":"module - UiModule","body":"\n \n\n\n\n\n Modules\n UiModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_UiModule\n\n\n\ncluster_UiModule_imports\n\n\n\ncluster_UiModule_exports\n\n\n\n\nFormModule\n\nFormModule\n\n\n\nUiModule\n\nUiModule\n\nUiModule -->\n\nFormModule->UiModule\n\n\n\n\n\nIconModule\n\nIconModule\n\nUiModule -->\n\nIconModule->UiModule\n\n\n\n\n\nListModule\n\nListModule\n\nUiModule -->\n\nListModule->UiModule\n\n\n\n\n\nLoaderModule\n\nLoaderModule\n\nUiModule -->\n\nLoaderModule->UiModule\n\n\n\n\n\nNotificationsModule\n\nNotificationsModule\n\nUiModule -->\n\nNotificationsModule->UiModule\n\n\n\n\n\nPopModule\n\nPopModule\n\nUiModule -->\n\nPopModule->UiModule\n\n\n\n\n\nSelectModule\n\nSelectModule\n\nUiModule -->\n\nSelectModule->UiModule\n\n\n\n\n\nSymbolModule\n\nSymbolModule\n\nUiModule -->\n\nSymbolModule->UiModule\n\n\n\n\n\nUtilityModule\n\nUtilityModule\n\nUiModule -->\n\nUtilityModule->UiModule\n\n\n\n\n\nFormModule \n\nFormModule \n\nFormModule -->\n\nUiModule->FormModule \n\n\n\n\n\nIconModule \n\nIconModule \n\nIconModule -->\n\nUiModule->IconModule \n\n\n\n\n\nListModule \n\nListModule \n\nListModule -->\n\nUiModule->ListModule \n\n\n\n\n\nLoaderModule \n\nLoaderModule \n\nLoaderModule -->\n\nUiModule->LoaderModule \n\n\n\n\n\nNotificationsModule \n\nNotificationsModule \n\nNotificationsModule -->\n\nUiModule->NotificationsModule \n\n\n\n\n\nPopModule \n\nPopModule \n\nPopModule -->\n\nUiModule->PopModule \n\n\n\n\n\nSelectModule \n\nSelectModule \n\nSelectModule -->\n\nUiModule->SelectModule \n\n\n\n\n\nSymbolModule \n\nSymbolModule \n\nSymbolModule -->\n\nUiModule->SymbolModule \n\n\n\n\n\nUtilityModule \n\nUtilityModule \n\nUtilityModule -->\n\nUiModule->UtilityModule \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/ui.module.ts\n \n\n\n\n\n \n \n \n Imports\n \n \n FormModule\n \n \n IconModule\n \n \n ListModule\n \n \n LoaderModule\n \n \n NotificationsModule\n \n \n PopModule\n \n \n SelectModule\n \n \n SymbolModule\n \n \n UtilityModule\n \n \n \n \n Exports\n \n \n FormModule\n \n \n IconModule\n \n \n ListModule\n \n \n LoaderModule\n \n \n NotificationsModule\n \n \n PopModule\n \n \n SelectModule\n \n \n SymbolModule\n \n \n UtilityModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { ListModule } from './list/list.module';\nimport { PopModule } from './pop/pop.module';\nimport { LoaderModule } from './loader/loader.module';\nimport { NotificationsModule } from './notifications/notifications.module';\nimport { UtilityModule } from './utility/utility.module';\nimport { SelectModule } from './select/select.module';\nimport { IconModule } from './icon/icon.module';\nimport { SymbolModule } from './symbol/symbol.module';\nimport { FormModule } from './form/form.module';\n\nexport const uiModuleConfig = {\n imports: [\n UtilityModule,\n NotificationsModule,\n PopModule,\n LoaderModule,\n FormModule,\n ListModule,\n SelectModule,\n IconModule,\n SymbolModule\n ],\n exports: [\n UtilityModule,\n PopModule,\n NotificationsModule,\n LoaderModule,\n ListModule,\n FormModule,\n SelectModule,\n IconModule,\n SymbolModule\n ]\n};\n\n@NgModule(uiModuleConfig)\nexport class UiModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Update.html":{"url":"interfaces/Update.html","title":"interface - Update","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Update\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/resource-config/resource.service.ts\n \n\n \n Description\n \n \n Instances of Update are emitted by the changes EventEmitter of the CrudService. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n broadcast\n \n \n Optional\n identifier\n \n \n Optional\n list\n \n \n relation\n \n \n Optional\n resource\n \n \n Optional\n type\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n broadcast\n \n \n \n \n broadcast: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the Update will reach all subscribers, ignoring all filters. Use with caution (reloads everything) \n\n \n \n \n \n \n \n \n \n \n identifier\n \n \n \n \n identifier: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n An identifier associated with the update e.g. an entryID \n\n \n \n \n \n \n \n \n \n \n list\n \n \n \n \n list: ResourceList\n\n \n \n\n\n \n \n Type : ResourceList\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The list where it happened. \n\n \n \n \n \n \n \n \n \n \n relation\n \n \n \n \n relation: string | string[]\n\n \n \n\n\n \n \n Type : string | string[]\n\n \n \n\n\n\n\n\n \n \n The relation that has been updated. \n\n \n \n \n \n \n \n \n \n \n resource\n \n \n \n \n resource: Resource\n\n \n \n\n\n \n \n Type : Resource\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The relevant resource. \n\n \n \n \n \n \n \n \n \n \n type\n \n \n \n \n type: \"post\" | \"get\" | \"put\" | \"delete\"\n\n \n \n\n\n \n \n Type : \"post\" | \"get\" | \"put\" | \"delete\"\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The type of update. (create/read/update/delete) \n\n \n \n \n \n \n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Item } from '@ec.components/core';\nimport Core from 'ec.sdk/lib/Core';\nimport Resource from 'ec.sdk/lib/resources/Resource';\nimport { Subject, Observable } from 'rxjs';\nimport { filter as rxFilter } from 'rxjs/operators';\nimport { ResourceList } from '../resource-list/resource-list';\nimport { SdkService } from '../sdk/sdk.service';\nimport { ResourceConfig } from './resource-config.service';\n\n/** Instances of Update are emitted by the changes EventEmitter of the CrudService. */\nexport interface Update {\n /** The relation that has been updated. */\n relation: string | string[];\n /** The relevant resource. */\n resource?: Resource;\n /** The list where it happened. */\n list?: ResourceList;\n /** The type of update. (create/read/update/delete) */\n type?: 'post' | 'get' | 'put' | 'delete';\n /** An identifier associated with the update e.g. an entryID */\n identifier?: string;\n /** If true, the Update will reach all subscribers, ignoring all filters. Use with caution (reloads everything) */\n broadcast?: boolean;\n}\n\n/** The CRUD service is meant to be used when modifying entries.\n * As the letters state it should be used to create update and delete entries.\n * Each action fires up a change that can be subscribed upon in any component to react to relevant\n * changes.\n * */\n@Injectable()\nexport class ResourceService {\n /** The changes event is emitted everytime an resource is created or updated. */\n public changes: Subject = new Subject();\n\n /** Injects sdk */\n constructor(private sdk: SdkService, public config: ResourceConfig) {\n /* this.sdk.changesEnvironment.subscribe(env =>\n this.changes.next({\n relation: 'environment',\n broadcast: true\n })) */\n }\n\n /** Gives true if the given change fits all property values of the filter. */\n matches(change: Update, filter: Update): boolean {\n return change.broadcast || Object.keys(filter)\n .reduce((match, key) => match && change[key] === filter[key], true);\n }\n\n /** Yields an observable that emits for all updates that match the given filter */\n change(filter?: Update): Observable {\n if (!filter) {\n return this.changes.asObservable();\n }\n return this.changes.asObservable().pipe(\n rxFilter((change: Update) => this.matches(change, filter))\n );\n }\n\n /** Saves the given resource with the given value. If the resource is not yet existing,\n * it will be created.Otherwise it will be updated. */\n save(item: Item, value: Object, relation: string, api: Core): Promise {\n const resource = item.getBody();\n if (item.config.onSave) {\n return Promise.resolve(item.config.onSave(item, value));\n }\n item.deleteImmutableProperties(value);\n if (resource && resource.save) {\n return this.update(relation, resource, value);\n }\n return this.create(relation, value, api)\n .then((_resource) => {\n return _resource;\n }).catch((err) => {\n return Promise.reject(err);\n });\n }\n\n /** Updates the given resource with the new value. Fires the \"update\" change. */\n update(relation, resource: Resource, value: Object): Promise {\n const oldValues = {}; // save old values\n Object.keys(value).forEach((key) => oldValues[key] = resource[key]);\n Object.assign(resource, this.clean(value, false, false)); // assign new form values\n return resource.save().then((_resource) => {\n this.changes.next({ relation, resource: _resource, type: 'put' });\n return _resource;\n })\n .catch((err) => {\n Object.assign(resource, this.clean(oldValues, false, false)); // fall back to old values\n return Promise.reject(err);\n });\n }\n\n /** Returns true if the given field key is an immutable system property */\n isImmutableProperty(key: string) {\n return key[0] === '_' ||\n ['id', 'created', 'modified'].indexOf(key) !== -1;\n }\n\n /** Removes all null or undefined values from the given object */\n clean(value: Object, setEmptyStringsToNull = true, deleteNullProperties = true): Object {\n for (const key in value) {\n if (value.hasOwnProperty(key)) {\n if (setEmptyStringsToNull && value[key] === '') { // clear empty strings\n value[key] = null;\n }\n if (deleteNullProperties && value[key] === null) {\n delete value[key];\n }\n if (this.isImmutableProperty(key)) { // filter system properties\n delete value[key];\n }\n }\n }\n return value;\n }\n\n /** Creates a new resource with the given value for the given relation. Fires the \"create\" change. */\n create(relation: string, value: Object, api: Core): Promise {\n return api.create(relation, this.clean(value))\n .then((resource: Resource) => {\n this.changes.next({ relation, resource, type: 'post' });\n return resource;\n }).catch((err) => {\n return Promise.reject(err);\n });\n }\n\n /** deletes the given resource and emits the \"delete\" change. */\n del(relation: string, resource: Resource) {\n return resource.del().then((res) => {\n this.changes.next({ relation, resource, type: 'delete' });\n return res;\n });\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Upload.html":{"url":"interfaces/Upload.html","title":"interface - Upload","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Upload\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/files/file.service.ts\n \n\n \n Description\n \n \n Instances of Update are emitted by the changes EventEmitter of the CrudService. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n asset\n \n \n Optional\n assets\n \n \n Optional\n item\n \n \n Optional\n items\n \n \n Optional\n list\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n asset\n \n \n \n \n asset: PublicAssetResource\n\n \n \n\n\n \n \n Type : PublicAssetResource\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The relevant asset. \n\n \n \n \n \n \n \n \n \n \n assets\n \n \n \n \n assets: PublicAssetResource[]\n\n \n \n\n\n \n \n Type : PublicAssetResource[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The relevant assets (when uploading multiple). \n\n \n \n \n \n \n \n \n \n \n item\n \n \n \n \n item: Item\n\n \n \n\n\n \n \n Type : Item\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The uploaded asset as item \n\n \n \n \n \n \n \n \n \n \n items\n \n \n \n \n items: Array>\n\n \n \n\n\n \n \n Type : Array>\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The uploaded asset as item \n\n \n \n \n \n \n \n \n \n \n list\n \n \n \n \n list: ResourceList\n\n \n \n\n\n \n \n Type : ResourceList\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The list where it happened. \n\n \n \n \n \n \n \n\n\n \n import { EventEmitter, Injectable } from '@angular/core';\nimport { Item } from '@ec.components/core';\nimport DMAssetList from 'ec.sdk/lib/resources/publicAPI/DMAssetList';\nimport DMAssetResource from 'ec.sdk/lib/resources/publicAPI/DMAssetResource';\nimport PublicAssetList from 'ec.sdk/lib/resources/publicAPI/PublicAssetList';\nimport PublicAssetResource from 'ec.sdk/lib/resources/publicAPI/PublicAssetResource';\nimport { TypeConfigService } from '../model-config/type-config.service';\nimport { ResourceConfig } from '../resource-config/resource-config.service';\nimport { ResourceService } from '../resource-config/resource.service';\nimport { ResourceList } from '../resource-list/resource-list';\nimport { SdkService } from '../sdk/sdk.service';\n\n/** Instances of Update are emitted by the changes EventEmitter of the CrudService. */\nexport interface Upload {\n /** The relevant asset. */\n asset?: PublicAssetResource;\n /** The relevant assets (when uploading multiple). */\n assets?: PublicAssetResource[];\n /** The uploaded asset as item */\n item?: Item;\n /** The uploaded asset as item */\n items?: Array>;\n /** The list where it happened. */\n list?: ResourceList;\n}\n\n/** Interface for file options used by new assets */\nexport interface FileOptions {\n /** Preserves Filenames */\n preserveFilenames?: boolean;\n /** Includes assetID in path */\n includeAssetIDInPath?: boolean;\n /** Ignores duplicates */\n ignoreDuplicates?: boolean;\n /** Optional custom names for assets. Mapped by indices to assets. */\n fileName?: string[];\n /** Custom file form fieldName */\n fieldName?: string;\n /** Deduplicate upload */\n deduplicate?: boolean;\n}\n\n/** The CRUD service is meant to be used when modifying entries.\n * As the letters state it should be used to create update and delete entries.\n * Each action fires up a change that can be subscribed upon in any component to react to relevant\n * changes.\n * */\n@Injectable()\nexport class FileService {\n /** Promise that resolves assetGroupList from sdk */\n assetGroupListPromise: Promise;\n /** The changes event is emitted everytime an entry is created or updated. */\n public uploads: EventEmitter = new EventEmitter();\n /** Default options for file upload */\n public defaultOptions: FileOptions = {\n preserveFilenames: true,\n includeAssetIDInPath: true,\n ignoreDuplicates: false,\n deduplicate: false,\n fileName: []\n };\n /** config for new assets */\n public dmAssetConfig = Object.assign({}, this.resourceConfig.get('dmAsset'));\n /** config for legacy assets */\n public legacyAssetConfig = Object.assign({}, this.resourceConfig.get('legacyAsset'), { forceGroup: true });\n /** All the possible assetGroupIDs that are interpreted as old. Comes from validation of field */\n public oldAssetGroupIDs = ['image', 'video', 'audio', 'plain', 'document', 'spreadsheet', 'legacyAsset'];\n\n /** Injects sdk */\n constructor(private sdk: SdkService,\n private typeConfig: TypeConfigService,\n private resourceService: ResourceService,\n private resourceConfig: ResourceConfig) {\n }\n\n public getAssetConfig(assetGroupID) {\n if (this.isOldAssetGroupID(assetGroupID)) {\n const config = Object.assign({}, this.legacyAssetConfig);\n if (this.oldAssetGroupIDs.includes(assetGroupID) && assetGroupID !== 'legacyAsset') {\n config.filter = Object.assign({}, (config.filter || {}), {\n type: assetGroupID\n });\n }\n return config;\n } else {\n return Object.assign({}, this.dmAssetConfig);\n }\n }\n\n /** returns true if the given asset is a new one (DMAssetResource) */\n public isNewAsset(asset: Array | string | DMAssetResource | PublicAssetResource, only = false) {\n if (Array.isArray(asset)) {\n return asset.reduce(\n (match, a) =>\n ((only && (match && this.isNewAsset(a)) ||\n (!only && (match || this.isNewAsset(a)))))\n , only);\n }\n const id = typeof asset === 'string' ? asset : asset.assetID;\n return /^[a-zA-Z0-9\\-_]{22}$/.test(id);\n }\n\n /** Returns form data for a file list. You have to append options (even if empty) to get formData for new assets! */\n public getFormData(files: FileList, options?: FileOptions): FormData {\n const formData: FormData = new FormData();\n for (let i = 0; i {\n if (key in options) {\n formData.append(key, `${options[key]}`);\n }\n });\n }\n return formData;\n }\n\n /** Upload New Assets */\n public uploadAssets(files, assetGroupID, options: FileOptions = {}, api = this.sdk.api): Promise {\n if (!files.length) {\n return;\n }\n const data = files[0].url ? files.map(f => f.url) : this.getFormData(files, options);\n return api.createDMAssets(assetGroupID, data, options)\n .then((assetList: DMAssetList) => {\n const assets = assetList.getAllItems();\n return {\n asset: assets[0],\n assets,\n item: new Item(assets[0], this.resourceConfig.get('dmAsset')),\n items: assets.map(asset => new Item(asset, this.resourceConfig.get('dmAsset')))\n };\n }).then((upload: Upload) => {\n this.uploads.emit(upload);\n this.resourceService.changes.next({ relation: 'dmAsset', type: 'post' });\n return upload;\n });\n }\n\n /** Upload old assets */\n public uploadFiles(files): Promise {\n if (!files.length) {\n return;\n }\n const data = this.getFormData(files);\n return Promise.resolve().then((): Promise Promise> => {\n if (files.length === 1) {\n return this.sdk.api.createAsset(data, {});\n }\n return this.sdk.api.createAssets(data, {});\n })\n .then(res => res())\n .then((response) => {\n if (response['getAllItems']) {\n return response['getAllItems']();\n }\n return [response];\n }).then((assets) => {\n return {\n asset: assets[0],\n assets,\n item: new Item(assets[0], this.resourceConfig.get('legacyAsset')),\n items: assets.map(asset => new Item(asset, this.resourceConfig.get('legacyAsset')))\n };\n }).then((upload: Upload) => {\n this.uploads.emit(upload);\n this.resourceService.changes.next({ relation: 'legacyAsset', type: 'post' });\n this.resourceService.changes.next({ relation: 'asset', type: 'post' });\n return upload;\n });\n }\n\n /** Resolves all assetIDs to PublicAssetResources */\n public resolveAssets(assets: Array, assetGroupID?: string):\n Promise> {\n console.warn('FileService#resolveAssets is deprecated. I doubt somebody ever used it but if you see this, stop it. please.');\n const unresolved = assets.reduce((ids, asset) => {\n if (typeof asset === 'string') {\n ids.push(asset);\n }\n return ids;\n }, []);\n if (unresolved.length === 0) {\n return Promise.resolve(>assets);\n }\n if (!assetGroupID && this.isNewAsset(unresolved)) {\n console.warn('wont resolve new asset without knowing assetGroupID');\n return Promise.resolve([]);\n }\n if (assetGroupID) { // new assets\n return this.sdk.api.dmAssetList(assetGroupID, { assetID: { any: unresolved }, size: 100 })\n .then(dmAssetList => dmAssetList.getAllItems());\n }\n return Promise.resolve().then((): any => {\n if (unresolved.length === 1) {\n return this.sdk.api.asset(unresolved[0]).then(asset => {\n return [asset];\n });\n }\n return this.sdk.api.assetList({ assetID: { any: unresolved }, page: 1 })\n .then((assetList) => {\n const resolved = assetList.getAllItems();\n return assets.map((asset) =>\n typeof asset === 'string' ?\n resolved.find((resource) => resource.assetID === asset) : asset);\n });\n\n });\n }\n\n public assetGroupList(forceReload = false) {\n return (!forceReload && this.assetGroupListPromise) || this.sdk.api.assetGroupList();\n }\n\n /** Yields true if the given assetGroupID is an old one. Also checks for old validation types */\n public isOldAssetGroupID(assetGroupID) {\n return !assetGroupID || this.oldAssetGroupIDs.includes(assetGroupID);\n }\n /** Yields true if the given assetGroupID is not an old one, meaning it is defined and legacyAsset or an old asset type. */\n public isNewAssetGroupID(assetGroupID) {\n return !this.isOldAssetGroupID(assetGroupID);\n }\n\n /** method that can be called after the upload to select the uploaded item(s). */\n selectUpload(upload: Upload, selection: any) {\n if (!selection) {\n console.warn('no selection');\n return;\n }\n if (selection.config.solo) {\n selection.select(upload.item);\n } else {\n selection.toggleAll(upload.items, false, true);\n }\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/UploadComponent.html":{"url":"components/UploadComponent.html","title":"component - UploadComponent","body":"\n \n\n\n\n\n\n Components\n UploadComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/files/upload/upload.component.ts\n\n\n \n Description\n \n \n This component will render an input field to upload files to the datamanager. TODO: demo \n\n \n\n\n \n Implements\n \n \n WithLoader\n WithNotifications\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-upload\n \n\n\n\n\n \n templateUrl\n ./upload.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n event\n \n \n fileInput\n \n \n Public\n filesToUpload\n \n \n notifications\n \n \n pop\n \n \n uploadPromise\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n change\n \n \n clear\n \n \n setGroup\n \n \n trigger\n \n \n upload\n \n \n uploadFiles\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n assetGroupID\n \n \n custom\n \n \n loader\n \n \n options\n \n \n placeholder\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n groupChanged\n \n \n success\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, fileService: FileService, loaderService: LoaderService, notificationService: NotificationsService, symbol: SymbolService)\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:40\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n fileService\n \n \n FileService\n \n \n \n No\n \n \n \n \n loaderService\n \n \n LoaderService\n \n \n \n No\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n The api to use for the upload. Defaults to sdk.api \n\n \n Type : PublicAPI\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:30\n \n \n \n \n \n \n \n \n \n assetGroupID\n \n \n The asset group to upload into. If not defined, old assets will be used! \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:24\n \n \n \n \n \n \n \n \n \n custom\n \n \n If true, a pop to rename files + customize flags will appear before uploading. \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:26\n \n \n \n \n \n \n \n \n \n loader\n \n \n The loader that should be used while uploading\n\n \n Type : LoaderComponent\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:22\n \n \n \n \n \n \n \n \n \n options\n \n \n Upload options \n\n \n Type : FileOptions\n\n \n \n Default value : Object.assign({}, this.fileService.defaultOptions)\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:28\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n The input placeholder\n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:20\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n groupChanged\n \n \n emits when the group has been set from the upload pop \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:34\n \n \n \n \n \n \n \n \n \n success\n \n \n Emits when an upload is complete. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:32\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n change\n \n \n \n \n \n \n \nchange(e, api)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:65\n \n \n\n\n \n \n Uploads the files from the input event. Handles loader and notifications. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n e\n \n \n No\n \n \n \n \n\n \n \n api\n \n \n No\n \n \n \n this.sdk.api\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n clear\n \n \n \n \n \n \n \nclear()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:73\n \n \n\n\n \n \n clears the file input \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n setGroup\n \n \n \n \n \n \n \nsetGroup(group)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:59\n \n \n\n\n \n \n Sets the asset group to upload to \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n group\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n trigger\n \n \n \n \n \n \n \ntrigger(e)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:49\n \n \n\n\n \n \n opens the system upload window by triggering the input \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n upload\n \n \n \n \n \n \n \nupload(files, api)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:99\n \n \n\n\n \n \n Triggers upload of current selected files \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n files\n \n \n No\n \n \n \n \n\n \n \n api\n \n \n No\n \n \n \n this.sdk.api\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n uploadFiles\n \n \n \n \n \n \n \nuploadFiles(files, e, api)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:80\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n files\n \n \n No\n \n \n \n \n\n \n \n e\n \n \n No\n \n \n \n \n\n \n \n api\n \n \n No\n \n \n \n this.sdk.api\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n event\n \n \n \n \n \n \n \n event: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n fileInput\n \n \n \n \n \n \n \n fileInput: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('fileInput')\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:36\n \n \n\n \n \n Reference to the input[type=file] element \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n filesToUpload\n \n \n \n \n \n \n \n filesToUpload: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:40\n \n \n\n \n \n Error Notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n pop\n \n \n \n \n \n \n \n pop: PopComponent\n\n \n \n \n \n Type : PopComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(PopComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:38\n \n \n\n \n \n Pop child for new asset options. \n\n \n \n\n \n \n \n \n \n \n \n \n \n uploadPromise\n \n \n \n \n \n \n \n uploadPromise: Promise\n\n \n \n \n \n Type : Promise\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:17\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, ElementRef, EventEmitter, Input, Output, ViewChild } from '@angular/core';\nimport {\n LoaderComponent, LoaderService, Notification, NotificationsService,\n PopComponent, SymbolService, WithLoader, WithNotifications\n} from '@ec.components/ui';\nimport PublicAPI from 'ec.sdk/lib/PublicAPI';\nimport { SdkService } from '../../sdk/sdk.service';\nimport { FileOptions, FileService, Upload } from '../file.service';\n\n/** This component will render an input field to upload files to the datamanager. TODO: demo */\n@Component({\n selector: 'ec-upload',\n templateUrl: './upload.component.html',\n})\nexport class UploadComponent implements WithLoader, WithNotifications {\n event: any;\n uploadPromise: Promise;\n public filesToUpload: any;\n /** The input placeholder*/\n @Input() placeholder: string;\n /** The loader that should be used while uploading*/\n @Input() loader: LoaderComponent;\n /** The asset group to upload into. If not defined, old assets will be used! */\n @Input() assetGroupID: string;\n /** If true, a pop to rename files + customize flags will appear before uploading. */\n @Input() custom: boolean;\n /** Upload options */\n @Input() options: FileOptions = Object.assign({}, this.fileService.defaultOptions);\n /** The api to use for the upload. Defaults to sdk.api */\n @Input() api: PublicAPI;\n /** Emits when an upload is complete. */\n @Output() success: EventEmitter = new EventEmitter();\n /** emits when the group has been set from the upload pop */\n @Output() groupChanged: EventEmitter = new EventEmitter();\n /** Reference to the input[type=file] element */\n @ViewChild('fileInput') fileInput: ElementRef;\n /** Pop child for new asset options. */\n @ViewChild(PopComponent) pop: PopComponent;\n /** Error Notifications */\n notifications: Notification[] = [];\n\n constructor(private sdk: SdkService,\n private fileService: FileService,\n private loaderService: LoaderService,\n private notificationService: NotificationsService,\n private symbol: SymbolService) {\n }\n /** opens the system upload window by triggering the input */\n trigger(e) {\n if (!this.fileInput) {\n console.error('cannot trigger upload: file input element not found!');\n return;\n }\n /* this.clear(); */\n this.fileInput.nativeElement.click();\n }\n\n /** Sets the asset group to upload to */\n setGroup(group) {\n this.assetGroupID = group;\n this.groupChanged.emit(group);\n }\n\n /** Uploads the files from the input event. Handles loader and notifications. */\n change(e, api = this.sdk.api) {\n if (!e || !e.target || !e.target.files || !e.target.files.length) {\n return;\n }\n return this.uploadFiles(e.target.files, e, api);\n }\n\n /** clears the file input */\n clear() {\n if (!this.fileInput) {\n return;\n }\n this.fileInput.nativeElement.value = ''; // clear input to eventually trigger change on same file\n }\n\n uploadFiles(files, e, api = this.sdk.api) {\n files = typeof files === 'string'\n ? files.split('\\n').map(url => ({ name: url, url }))\n : files;\n if (files[0].url && this.fileService.isOldAssetGroupID(this.assetGroupID)) {\n delete this.assetGroupID;\n }\n this.filesToUpload = files;\n e.preventDefault();\n e.stopPropagation();\n if (this.custom || !this.assetGroupID) {\n this.event = e;\n this.pop.show();\n return Promise.resolve();\n }\n return this.upload(files, api);\n }\n\n /** Triggers upload of current selected files */\n upload(files, api = this.sdk.api) {\n this.uploadPromise = (this.fileService.isNewAssetGroupID(this.assetGroupID) ?\n this.fileService.uploadAssets(files, this.assetGroupID, this.options, api) :\n this.fileService.uploadFiles(files))\n .then((_upload) => {\n this.success.emit(_upload);\n this.notificationService.emit({\n title: this.symbol.resolve('success.upload'),\n type: 'success',\n hide: this.notifications\n });\n this.pop.hide();\n return _upload;\n }).catch((err) => {\n console.error(err);\n this.notificationService.emit({\n title: this.symbol.resolve('error.upload'),\n error: err,\n sticky: true,\n hide: this.notifications,\n append: this.notifications\n });\n });\n this.loaderService.wait(this.uploadPromise, this.loader);\n this.uploadPromise.then(() => {\n delete this.uploadPromise;\n });\n return this.uploadPromise;\n }\n}\n\n \n\n \n \n\n \n \n \n \n \n \n \n {{'upload.assetGroup' | symbol}}\n \n \n \n \n \n \n \n {{'upload.preserveFilenames' | symbol}}\n \n \n \n \n \n \n {{'upload.includeAssetIDInPath' | symbol}}\n \n \n \n \n \n \n {{'upload.ignoreDuplicates' | symbol}}\n \n \n \n \n \n \n {{'upload.deduplicate' | symbol}}\n \n \n \n {{ f.name }}\n \n \n \n \n \n Upload\n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{\\'upload.assetGroup\\' | symbol}} {{\\'upload.preserveFilenames\\' | symbol}} {{\\'upload.includeAssetIDInPath\\' | symbol}} {{\\'upload.ignoreDuplicates\\' | symbol}} {{\\'upload.deduplicate\\' | symbol}} {{ f.name }} Upload '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'UploadComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/UploadSelectComponent.html":{"url":"components/UploadSelectComponent.html","title":"component - UploadSelectComponent","body":"\n \n\n\n\n\n\n Components\n UploadSelectComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/files/upload-select/upload-select.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-upload-select\n \n\n\n\n\n \n templateUrl\n ./upload-select.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n fileService\n \n \n Public\n focusEvent\n \n \n showUrlInput\n \n \n Public\n symbol\n \n \n uploader\n \n \n urlsToUpload\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n setGroup\n \n \n toggleUrlInput\n \n \n triggerUpload\n \n \n uploadFromUrls\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n assetGroupID\n \n \n config\n \n \n custom\n \n \n disableDrop\n \n \n loader\n \n \n options\n \n \n readOnly\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n browse\n \n \n groupChanged\n \n \n uploaded\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(symbol: SymbolService, fileService: FileService)\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:35\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n fileService\n \n \n FileService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n assetGroupID\n \n \n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:19\n \n \n \n \n \n \n \n \n \n config\n \n \n \n Type : CrudConfig\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:27\n \n \n \n \n \n \n \n \n \n custom\n \n \n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:17\n \n \n \n \n \n \n \n \n \n disableDrop\n \n \n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:18\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n Type : LoaderComponent\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:20\n \n \n \n \n \n \n \n \n \n options\n \n \n \n Type : FileOptions\n\n \n \n Default value : Object.assign({}, this.fileService.defaultOptions)\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:21\n \n \n \n \n \n \n \n \n \n readOnly\n \n \n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:16\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n browse\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:26\n \n \n \n \n \n \n \n \n \n groupChanged\n \n \n emits when the group has been set from the upload pop \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:23\n \n \n \n \n \n \n \n \n \n uploaded\n \n \n Emits when an upload is complete. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:25\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:39\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n setGroup\n \n \n \n \n \n \n \nsetGroup(group)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:42\n \n \n\n\n \n \n Sets the asset group to upload to \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n group\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n toggleUrlInput\n \n \n \n \n \n \n \ntoggleUrlInput()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:47\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n triggerUpload\n \n \n \n \n \n \n \ntriggerUpload(e)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:60\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n uploadFromUrls\n \n \n \n \n \n \n \nuploadFromUrls(urls, e)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:54\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n urls\n \n \n No\n \n \n\n \n \n e\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n fileService\n \n \n \n \n \n \n \n fileService: FileService\n\n \n \n \n \n Type : FileService\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n focusEvent\n \n \n \n \n \n \n \n focusEvent: EventEmitter\n\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Default value : new EventEmitter()\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:35\n \n \n\n \n \n The event that focuses the url input \n\n \n \n\n \n \n \n \n \n \n \n \n \n showUrlInput\n \n \n \n \n \n \n \n showUrlInput: \n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:33\n \n \n\n \n \n Wether or not the url input should be visible \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n \n uploader\n \n \n \n \n \n \n \n uploader: UploadComponent\n\n \n \n \n \n Type : UploadComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(UploadComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:29\n \n \n\n \n \n The nested upload component \n\n \n \n\n \n \n \n \n \n \n \n \n \n urlsToUpload\n \n \n \n \n \n \n \n urlsToUpload: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:31\n \n \n\n \n \n The Url to upload from \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, OnInit, Input, EventEmitter, Output, ViewChild } from '@angular/core';\nimport { LoaderComponent } from '@ec.components/ui';\nimport { CrudConfig } from '../../crud/crud-config.interface';\nimport DMAssetResource from 'ec.sdk/lib/resources/publicAPI/DMAssetResource';\nimport PublicAssetResource from 'ec.sdk/lib/resources/publicAPI/PublicAssetResource';\nimport { SymbolService } from '@ec.components/ui';\nimport { UploadComponent } from '../upload/upload.component';\nimport { Upload, FileOptions, FileService } from '../file.service';\n\n@Component({\n selector: 'ec-upload-select',\n templateUrl: './upload-select.component.html'\n})\n\nexport class UploadSelectComponent implements OnInit {\n @Input() readOnly: boolean;\n @Input() custom: boolean;\n @Input() disableDrop: boolean;\n @Input() assetGroupID: string;\n @Input() loader: LoaderComponent;\n @Input() options: FileOptions = Object.assign({}, this.fileService.defaultOptions);\n /** emits when the group has been set from the upload pop */\n @Output() groupChanged: EventEmitter = new EventEmitter();\n /** Emits when an upload is complete. */\n @Output() uploaded: EventEmitter = new EventEmitter();\n @Output() browse: EventEmitter = new EventEmitter();\n @Input() config: CrudConfig;\n /** The nested upload component */\n @ViewChild(UploadComponent) uploader: UploadComponent;\n /** The Url to upload from */\n urlsToUpload = '';\n /** Wether or not the url input should be visible */\n showUrlInput = false;\n /** The event that focuses the url input */\n public focusEvent: EventEmitter = new EventEmitter();\n\n constructor(public symbol: SymbolService, public fileService: FileService) { }\n\n ngOnInit() { }\n\n /** Sets the asset group to upload to */\n setGroup(group) {\n this.assetGroupID = group;\n this.groupChanged.emit(group);\n }\n\n toggleUrlInput() {\n this.showUrlInput = !this.showUrlInput;\n setTimeout(() => {\n this.focusEvent.emit(true);\n });\n }\n\n uploadFromUrls(urls, e) {\n this.uploader.uploadFiles(urls, e).then(() => {\n this.urlsToUpload = '';\n this.showUrlInput = false;\n });\n }\n triggerUpload(e) {\n this.uploader.trigger(e);\n }\n}\n\n \n\n \n \n Drop to upload\n \n {{'upload.link' | symbol}}\n {{'upload.or' | symbol}}\n {{'upload.url' | symbol}}\n \n {{'upload.or' | symbol}}\n {{'upload.browse' | symbol}}\n \n \n \n {{'upload.url.start' | symbol}}\n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Drop to upload {{\\'upload.link\\' | symbol}} {{\\'upload.or\\' | symbol}} {{\\'upload.url\\' | symbol}} {{\\'upload.or\\' | symbol}} {{\\'upload.browse\\' | symbol}} {{\\'upload.url.start\\' | symbol}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'UploadSelectComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/UtilityModule.html":{"url":"modules/UtilityModule.html","title":"module - UtilityModule","body":"\n \n\n\n\n\n Modules\n UtilityModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_UtilityModule\n\n\n\ncluster_UtilityModule_declarations\n\n\n\ncluster_UtilityModule_imports\n\n\n\ncluster_UtilityModule_exports\n\n\n\n\nFocusDirective\n\nFocusDirective\n\n\n\nUtilityModule\n\nUtilityModule\n\nUtilityModule -->\n\nFocusDirective->UtilityModule\n\n\n\n\n\nLoginFormComponent\n\nLoginFormComponent\n\nUtilityModule -->\n\nLoginFormComponent->UtilityModule\n\n\n\n\n\nMenuComponent\n\nMenuComponent\n\nUtilityModule -->\n\nMenuComponent->UtilityModule\n\n\n\n\n\nSignupFormComponent\n\nSignupFormComponent\n\nUtilityModule -->\n\nSignupFormComponent->UtilityModule\n\n\n\n\n\nTabComponent\n\nTabComponent\n\nUtilityModule -->\n\nTabComponent->UtilityModule\n\n\n\n\n\nTabsComponent\n\nTabsComponent\n\nUtilityModule -->\n\nTabsComponent->UtilityModule\n\n\n\n\n\nFocusDirective \n\nFocusDirective \n\nFocusDirective -->\n\nUtilityModule->FocusDirective \n\n\n\n\n\nLoginFormComponent \n\nLoginFormComponent \n\nLoginFormComponent -->\n\nUtilityModule->LoginFormComponent \n\n\n\n\n\nMenuComponent \n\nMenuComponent \n\nMenuComponent -->\n\nUtilityModule->MenuComponent \n\n\n\n\n\nSignupFormComponent \n\nSignupFormComponent \n\nSignupFormComponent -->\n\nUtilityModule->SignupFormComponent \n\n\n\n\n\nTabComponent \n\nTabComponent \n\nTabComponent -->\n\nUtilityModule->TabComponent \n\n\n\n\n\nTabsComponent \n\nTabsComponent \n\nTabsComponent -->\n\nUtilityModule->TabsComponent \n\n\n\n\n\nIoModule\n\nIoModule\n\nUtilityModule -->\n\nIoModule->UtilityModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/utility/utility.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n FocusDirective\n \n \n LoginFormComponent\n \n \n MenuComponent\n \n \n SignupFormComponent\n \n \n TabComponent\n \n \n TabsComponent\n \n \n \n \n Imports\n \n \n IoModule\n \n \n \n \n Exports\n \n \n FocusDirective\n \n \n LoginFormComponent\n \n \n MenuComponent\n \n \n SignupFormComponent\n \n \n TabComponent\n \n \n TabsComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { RouterModule } from '@angular/router';\nimport { IoModule } from '../io/io.module';\nimport { FocusDirective } from './focus/focus.directive';\nimport { LoginFormComponent } from './login-form/login-form.component';\nimport { MenuComponent } from './menu/menu.component';\nimport { SignupFormComponent } from './signup-form/signup-form.component';\nimport { TabComponent } from './tab/tab.component';\nimport { TabsComponent } from './tabs/tabs.component';\n\nexport const utilityModuleConfig = {\n entryComponents: [],\n declarations: [\n TabsComponent,\n TabComponent,\n MenuComponent,\n LoginFormComponent,\n SignupFormComponent,\n FocusDirective,\n ],\n imports: [\n FormsModule,\n ReactiveFormsModule,\n IoModule,\n CommonModule,\n RouterModule,\n ],\n exports: [\n /* FormsModule,\n ReactiveFormsModule,\n IoModule,\n */\n TabsComponent,\n TabComponent,\n MenuComponent,\n LoginFormComponent,\n SignupFormComponent,\n FocusDirective,\n RouterModule,\n ],\n providers: [],\n};\n\n@NgModule(utilityModuleConfig)\nexport class UtilityModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/VisibleFieldsPipe.html":{"url":"pipes/VisibleFieldsPipe.html","title":"pipe - VisibleFieldsPipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n VisibleFieldsPipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/form/visible-fields.pipe.ts\n \n\n \n Description\n \n \n The VisibleFieldsPipe filters an array of Fields to only give back the ones that have form NOT set to false. \n\n \n\n\n \n Metadata\n \n \n \n Name\n visibleFields\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(fields: Array, form: Form)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/visible-fields.pipe.ts:12\n \n \n\n\n \n \n Filters out all fields that should not be displayed in a regular form \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n fields\n \n Array\n \n \n \n No\n \n \n\n \n \n form\n \n Form\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n formService\n \n \n \n \n \n \n \n formService: FormService\n\n \n \n \n \n Type : FormService\n\n \n \n \n \n Defined in packages/ui/src/lib/form/visible-fields.pipe.ts:10\n \n \n\n\n \n \n\n\n \n\n\n \n import { Pipe, PipeTransform } from '@angular/core';\nimport { Field, Form } from '@ec.components/core';\nimport { FormService } from './form.service';\n\n/** The VisibleFieldsPipe filters an array of Fields to only give back the ones that have form NOT set to false. */\n@Pipe({\n name: 'visibleFields'\n})\nexport class VisibleFieldsPipe implements PipeTransform {\n constructor(public formService: FormService) { }\n /** Filters out all fields that should not be displayed in a regular form */\n transform(fields: Array, form: Form): any {\n return fields.filter((field) =>\n this.formService.shouldBePartOfForm(field, form)\n && !field.hideInForm\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/WithLoader.html":{"url":"interfaces/WithLoader.html","title":"interface - WithLoader","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n WithLoader\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/loader/with-loader.interface.ts\n \n\n \n Description\n \n \n This interface can be used on a component that uses a loader. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n loader\n \n \n \n \n loader: LoaderComponent\n\n \n \n\n\n \n \n Type : LoaderComponent\n\n \n \n\n\n\n\n\n \n \n The loader that is contacted on any kind of loading operation. \n\n \n \n \n \n \n \n\n\n \n import { LoaderComponent } from './loader.component';\n/** This interface can be used on a component that uses a loader. */\nexport interface WithLoader {\n /** The loader that is contacted on any kind of loading operation. */\n loader: LoaderComponent;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/WithNotifications.html":{"url":"interfaces/WithNotifications.html","title":"interface - WithNotifications","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n WithNotifications\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/notifications/with-notifications.interface.ts\n \n\n \n Description\n \n \n This interface can be used on a component that uses notifications. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n notifications\n \n \n Optional\n silent\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n notifications\n \n \n \n \n notifications: Notification[]\n\n \n \n\n\n \n \n Type : Notification[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Stores notification history for later access. E.g. stores errors that should be hidden later. \n\n \n \n \n \n \n \n \n \n \n silent\n \n \n \n \n silent: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no notifications will be emitted \n\n \n \n \n \n \n \n\n\n \n import { Notification } from './notification';\n\n\n/** This interface can be used on a component that uses notifications. */\nexport interface WithNotifications {\n /** Stores notification history for later access. E.g. stores errors that should be hidden later. */\n notifications?: Notification[];\n /** If true, no notifications will be emitted */\n silent?: boolean;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"changelog.html":{"url":"changelog.html","title":"getting-started - changelog","body":"\n \n\nChange Log\nEach package has its own changelog:\n\n@ec.components/data\n@ec.components/ui\n@ec.components/core\n@ec.components/calendar\n@ec.components/style\n@ec.components/ace\n@ec.components/location\n@ec.components/medium-editor\n@ec.components/tinymce\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @agm/core : 1.0.0-beta.3\n \n @angular/animations : ~7.2.0\n \n @angular/common : ~7.2.0\n \n @angular/compiler : ~7.2.0\n \n @angular/core : ~7.2.0\n \n @angular/forms : ~7.2.0\n \n @angular/platform-browser : ~7.2.0\n \n @angular/platform-browser-dynamic : ~7.2.0\n \n @angular/router : ~7.2.0\n \n @ec.components/ace : ^0.6.5\n \n @ec.components/calendar : ^0.2.6\n \n @ec.components/core : ^0.19.8\n \n @ec.components/data : ^0.42.12\n \n @ec.components/location : ^0.18.5\n \n @ec.components/medium-editor : ^0.4.5\n \n @ec.components/style : ^0.21.2\n \n @ec.components/tinymce : ^0.5.6\n \n @ec.components/ui : ^0.36.11\n \n ace-builds : ^1.4.2\n \n core-js : ^2.5.4\n \n ec.sdk : ^0.17.18\n \n googlemaps : ^1.12.0\n \n lerna : ^3.10.5\n \n medium-editor : ^5.23.2\n \n moment-es6 : ^1.0.0\n \n ngx-cookie : ^2.0.1\n \n ngx-drag-drop : ^1.1.0\n \n rxjs : ~6.3.3\n \n tinymce : ^4.9.2\n \n tslib : ^1.9.0\n \n zone.js : ~0.8.26\n \n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/functions.html":{"url":"miscellaneous/functions.html","title":"miscellaneous-functions - functions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Functions\n\n\n\n Index\n \n \n \n \n \n \n cookieFactory   (packages/.../auth.module.ts)\n \n \n sortBoolean   (packages/.../sorter.ts)\n \n \n sortNumber   (packages/.../sorter.ts)\n \n \n sortString   (packages/.../sorter.ts)\n \n \n \n \n \n \n\n\n packages/data/src/lib/auth/auth.module.ts\n \n \n \n \n \n \n \n \n cookieFactory\n \n \n \n \n \n \n \ncookieFactory()\n \n \n\n\n\n\n \n \n loads CookieModule \n\n\n \n \n \n \n\n packages/core/src/lib/sorter/sorter.ts\n \n \n \n \n \n \n \n \n sortBoolean\n \n \n \n \n \n \n \nsortBoolean(a, b)\n \n \n\n\n\n\n \n \n Sorts booleans \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n a\n \n \n No\n \n \n\n \n \n b\n \n \n No\n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sortNumber\n \n \n \n \n \n \n \nsortNumber(a, b)\n \n \n\n\n\n\n \n \n Sorts numbers \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n a\n \n \n No\n \n \n\n \n \n b\n \n \n No\n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sortString\n \n \n \n \n \n \n \nsortString(a, b)\n \n \n\n\n\n\n \n \n Sorts strings (naturally) \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n a\n \n \n No\n \n \n\n \n \n b\n \n \n No\n \n \n\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\nec.components\nThis project contains all sorts of angular components for creating data driven applications.\nIt is mainly used for entrecode admin applications in combination with the entrecode using ec.sdk.\nPackages\nMain Packages\n\n@ec.components/core: contains core typescript classes (no angular/datamanager)\n@ec.components/ui: contains core ui components (not datamanager specific)\n@ec.components/data: contains ui components for datamanager.\n@ec.components/style: contains styles for all components, built on x.ui.\n\nThe dependencies stack up from core to data (data > ui > core). You could also omit data, using just the ui components.\nOptional Packages\n\n@ec.components/calendar: contains calendar components, uses moment.\n@ec.components/location: wraps angular-google-maps.\n@ec.components/tinymce: wraps tinymce wysiwyg editor.\n@ec.components/medium-editor: wraps medium wysiwyg editor.\n@ec.components/ace: wraps ace code editor.\n\nDocumentation\nThe main documentation is located at entrecode.github.io/ec.components. You can find a getting started guide there.\nDemo\nA Demo is available at components.entrecode.de.\nDeveloping with Lerna + Yarn Workspaces\nThe repository is a monorepo, managed by lerna and yarn workspaces.\nAll folders inside dist + packages/style will be used as symlinks in node_modules/@ec.components/*.\nYou can update the symlinks by running yarn (e.g. after adding a new package).\nDev Setup\nAfter a fresh clone of the repo, run this:\nyarn install\nnpm run dev-setup\nnpm run startThe dev-setup script builds all packages and symlinks them to the node_modules.\nReleasing\nRun release task and select versions:\nnpm run releaseTo publish a new package for the first time, make sure you run npm publish --access=public before running lerna. See add-new-package for more info on creating a new package.\nAlso make sure to use Conventional Commits for proper changelogging.\nDefault README\nThis project was generated with Angular CLI version 7.2.1.\nDevelopment server\nRun ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.\nCode scaffolding\nRun ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.\nBuild\nRun ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod flag for a production build.\nRunning unit tests\nRun ng test to execute the unit tests via Karma.\nRunning end-to-end tests\nRun ng e2e to execute the end-to-end tests via Protractor.\nFurther help\nTo get more help on the Angular CLI use ng help or go check out the Angular CLI README.\nImpressum & Datenschutz\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n AceModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AuthModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n CalendarModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n DataModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n FilesModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n FormModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n IconModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n IoModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n ListModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n LoaderModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n LocationModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n MediumEditorModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n NotificationsModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n PopModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n ResourceModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n SdkModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n SelectModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n SymbolModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n TinymceModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n UiModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n UtilityModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AceModule\n\n\n\ncluster_AceModule_declarations\n\n\n\ncluster_AceModule_exports\n\n\n\ncluster_AuthModule\n\n\n\ncluster_AuthModule_declarations\n\n\n\ncluster_AuthModule_imports\n\n\n\ncluster_AuthModule_exports\n\n\n\ncluster_AuthModule_providers\n\n\n\ncluster_CalendarModule\n\n\n\ncluster_CalendarModule_declarations\n\n\n\ncluster_CalendarModule_exports\n\n\n\ncluster_DataModule\n\n\n\ncluster_DataModule_declarations\n\n\n\ncluster_DataModule_imports\n\n\n\ncluster_DataModule_exports\n\n\n\ncluster_DataModule_providers\n\n\n\ncluster_FilesModule\n\n\n\ncluster_FilesModule_declarations\n\n\n\ncluster_FilesModule_exports\n\n\n\ncluster_FilesModule_providers\n\n\n\ncluster_FormModule\n\n\n\ncluster_FormModule_declarations\n\n\n\ncluster_FormModule_imports\n\n\n\ncluster_FormModule_exports\n\n\n\ncluster_FormModule_providers\n\n\n\ncluster_IconModule\n\n\n\ncluster_IconModule_declarations\n\n\n\ncluster_IconModule_exports\n\n\n\ncluster_IconModule_providers\n\n\n\ncluster_IoModule\n\n\n\ncluster_IoModule_declarations\n\n\n\ncluster_IoModule_exports\n\n\n\ncluster_ListModule\n\n\n\ncluster_ListModule_declarations\n\n\n\ncluster_ListModule_imports\n\n\n\ncluster_ListModule_exports\n\n\n\ncluster_ListModule_providers\n\n\n\ncluster_LoaderModule\n\n\n\ncluster_LoaderModule_declarations\n\n\n\ncluster_LoaderModule_exports\n\n\n\ncluster_LoaderModule_providers\n\n\n\ncluster_LocationModule\n\n\n\ncluster_LocationModule_declarations\n\n\n\ncluster_LocationModule_exports\n\n\n\ncluster_LocationModule_providers\n\n\n\ncluster_MediumEditorModule\n\n\n\ncluster_MediumEditorModule_declarations\n\n\n\ncluster_MediumEditorModule_MediumEditorComponent_providers\n\n\n\ncluster_MediumEditorModule_exports\n\n\n\ncluster_NotificationsModule\n\n\n\ncluster_NotificationsModule_declarations\n\n\n\ncluster_NotificationsModule_exports\n\n\n\ncluster_NotificationsModule_providers\n\n\n\ncluster_PopModule\n\n\n\ncluster_PopModule_declarations\n\n\n\ncluster_PopModule_exports\n\n\n\ncluster_PopModule_providers\n\n\n\ncluster_ResourceModule\n\n\n\ncluster_ResourceModule_declarations\n\n\n\ncluster_ResourceModule_exports\n\n\n\ncluster_ResourceModule_providers\n\n\n\ncluster_SdkModule\n\n\n\ncluster_SdkModule_providers\n\n\n\ncluster_SelectModule\n\n\n\ncluster_SelectModule_declarations\n\n\n\ncluster_SelectModule_SelectComponent_providers\n\n\n\ncluster_SelectModule_exports\n\n\n\ncluster_SymbolModule\n\n\n\ncluster_SymbolModule_declarations\n\n\n\ncluster_SymbolModule_exports\n\n\n\ncluster_SymbolModule_providers\n\n\n\ncluster_TinymceModule\n\n\n\ncluster_TinymceModule_declarations\n\n\n\ncluster_TinymceModule_exports\n\n\n\ncluster_UiModule\n\n\n\ncluster_UiModule_exports\n\n\n\ncluster_UtilityModule\n\n\n\ncluster_UtilityModule_declarations\n\n\n\ncluster_UtilityModule_exports\n\n\n\n\nAceComponent\n\nAceComponent\n\n\n\nAceModule\n\nAceModule\n\nAceModule -->\n\nAceComponent->AceModule\n\n\n\n\n\nAceComponent \n\nAceComponent \n\nAceComponent -->\n\nAceModule->AceComponent \n\n\n\n\n\nLoginComponent\n\nLoginComponent\n\n\n\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nLoginComponent->AuthModule\n\n\n\n\n\nPasswordResetComponent\n\nPasswordResetComponent\n\nAuthModule -->\n\nPasswordResetComponent->AuthModule\n\n\n\n\n\nSignupComponent\n\nSignupComponent\n\nAuthModule -->\n\nSignupComponent->AuthModule\n\n\n\n\n\nLoginComponent \n\nLoginComponent \n\nLoginComponent -->\n\nAuthModule->LoginComponent \n\n\n\n\n\nPasswordResetComponent \n\nPasswordResetComponent \n\nPasswordResetComponent -->\n\nAuthModule->PasswordResetComponent \n\n\n\n\n\nSignupComponent \n\nSignupComponent \n\nSignupComponent -->\n\nAuthModule->SignupComponent \n\n\n\n\n\nDataModule\n\nDataModule\n\nDataModule -->\n\nAuthModule->DataModule\n\n\n\n\n\nUiModule\n\nUiModule\n\nAuthModule -->\n\nUiModule->AuthModule\n\n\n\nDataModule -->\n\nUiModule->DataModule\n\n\n\n\n\nFilesModule\n\nFilesModule\n\nFilesModule -->\n\nUiModule->FilesModule\n\n\n\n\n\nResourceModule\n\nResourceModule\n\nResourceModule -->\n\nUiModule->ResourceModule\n\n\n\n\n\nPopModule \n\nPopModule \n\nPopModule -->\n\nUiModule->PopModule \n\n\n\n\n\nFormModule \n\nFormModule \n\nFormModule -->\n\nUiModule->FormModule \n\n\n\n\n\nLocationModule\n\nLocationModule\n\nLocationModule -->\n\nUiModule->LocationModule\n\n\n\n\n\nListModule \n\nListModule \n\nListModule -->\n\nUiModule->ListModule \n\n\n\n\n\nIconModule \n\nIconModule \n\nIconModule -->\n\nUiModule->IconModule \n\n\n\n\n\nLoaderModule \n\nLoaderModule \n\nLoaderModule -->\n\nUiModule->LoaderModule \n\n\n\n\n\nNotificationsModule \n\nNotificationsModule \n\nNotificationsModule -->\n\nUiModule->NotificationsModule \n\n\n\n\n\nSelectModule \n\nSelectModule \n\nSelectModule -->\n\nUiModule->SelectModule \n\n\n\n\n\nSymbolModule \n\nSymbolModule \n\nSymbolModule -->\n\nUiModule->SymbolModule \n\n\n\n\n\nUtilityModule \n\nUtilityModule \n\nUtilityModule -->\n\nUiModule->UtilityModule \n\n\n\n\n\ncookieFactory()\n\ncookieFactory()\n\nAuthModule -->\n\ncookieFactory()->AuthModule\n\n\n\n\n\nAuthService\n\nAuthService\n\nAuthModule -->\n\nAuthService->AuthModule\n\n\n\n\n\nCalendarComponent\n\nCalendarComponent\n\n\n\nCalendarModule\n\nCalendarModule\n\nCalendarModule -->\n\nCalendarComponent->CalendarModule\n\n\n\n\n\nDaterangeComponent\n\nDaterangeComponent\n\nCalendarModule -->\n\nDaterangeComponent->CalendarModule\n\n\n\n\n\nDatetimePipe\n\nDatetimePipe\n\nCalendarModule -->\n\nDatetimePipe->CalendarModule\n\n\n\n\n\nHeatmapComponent\n\nHeatmapComponent\n\nCalendarModule -->\n\nHeatmapComponent->CalendarModule\n\n\n\n\n\nMonthComponent\n\nMonthComponent\n\nCalendarModule -->\n\nMonthComponent->CalendarModule\n\n\n\n\n\nCalendarComponent \n\nCalendarComponent \n\nCalendarComponent -->\n\nCalendarModule->CalendarComponent \n\n\n\n\n\nDaterangeComponent \n\nDaterangeComponent \n\nDaterangeComponent -->\n\nCalendarModule->DaterangeComponent \n\n\n\n\n\nDatetimePipe \n\nDatetimePipe \n\nDatetimePipe -->\n\nCalendarModule->DatetimePipe \n\n\n\n\n\nHeatmapComponent \n\nHeatmapComponent \n\nHeatmapComponent -->\n\nCalendarModule->HeatmapComponent \n\n\n\n\n\nMonthComponent \n\nMonthComponent \n\nMonthComponent -->\n\nCalendarModule->MonthComponent \n\n\n\n\n\nFormModule\n\nFormModule\n\nFormModule -->\n\nCalendarModule->FormModule\n\n\n\n\n\nAdminEntryInputComponent\n\nAdminEntryInputComponent\n\nDataModule -->\n\nAdminEntryInputComponent->DataModule\n\n\n\n\n\nCrudComponent\n\nCrudComponent\n\nDataModule -->\n\nCrudComponent->DataModule\n\n\n\n\n\nDefaultEntryInputComponent\n\nDefaultEntryInputComponent\n\nDataModule -->\n\nDefaultEntryInputComponent->DataModule\n\n\n\n\n\nDefaultEntryOutputComponent\n\nDefaultEntryOutputComponent\n\nDataModule -->\n\nDefaultEntryOutputComponent->DataModule\n\n\n\n\n\nEntriesDirective\n\nEntriesDirective\n\nDataModule -->\n\nEntriesDirective->DataModule\n\n\n\n\n\nEntryDirective\n\nEntryDirective\n\nDataModule -->\n\nEntryDirective->DataModule\n\n\n\n\n\nEntryFormComponent\n\nEntryFormComponent\n\nDataModule -->\n\nEntryFormComponent->DataModule\n\n\n\n\n\nEntryListComponent\n\nEntryListComponent\n\nDataModule -->\n\nEntryListComponent->DataModule\n\n\n\n\n\nEntryListPopComponent\n\nEntryListPopComponent\n\nDataModule -->\n\nEntryListPopComponent->DataModule\n\n\n\n\n\nEntryListSelectComponent\n\nEntryListSelectComponent\n\nDataModule -->\n\nEntryListSelectComponent->DataModule\n\n\n\n\n\nEntryPopComponent\n\nEntryPopComponent\n\nDataModule -->\n\nEntryPopComponent->DataModule\n\n\n\n\n\nEntrySelectComponent\n\nEntrySelectComponent\n\nDataModule -->\n\nEntrySelectComponent->DataModule\n\n\n\n\n\nAuthModule \n\nAuthModule \n\nAuthModule -->\n\nDataModule->AuthModule \n\n\n\n\n\nCrudComponent \n\nCrudComponent \n\nCrudComponent -->\n\nDataModule->CrudComponent \n\n\n\n\n\nEntriesDirective \n\nEntriesDirective \n\nEntriesDirective -->\n\nDataModule->EntriesDirective \n\n\n\n\n\nEntryDirective \n\nEntryDirective \n\nEntryDirective -->\n\nDataModule->EntryDirective \n\n\n\n\n\nEntryFormComponent \n\nEntryFormComponent \n\nEntryFormComponent -->\n\nDataModule->EntryFormComponent \n\n\n\n\n\nEntryListComponent \n\nEntryListComponent \n\nEntryListComponent -->\n\nDataModule->EntryListComponent \n\n\n\n\n\nEntryListPopComponent \n\nEntryListPopComponent \n\nEntryListPopComponent -->\n\nDataModule->EntryListPopComponent \n\n\n\n\n\nEntryListSelectComponent \n\nEntryListSelectComponent \n\nEntryListSelectComponent -->\n\nDataModule->EntryListSelectComponent \n\n\n\n\n\nEntryPopComponent \n\nEntryPopComponent \n\nEntryPopComponent -->\n\nDataModule->EntryPopComponent \n\n\n\n\n\nEntrySelectComponent \n\nEntrySelectComponent \n\nEntrySelectComponent -->\n\nDataModule->EntrySelectComponent \n\n\n\n\n\nFilesModule \n\nFilesModule \n\nFilesModule -->\n\nDataModule->FilesModule \n\n\n\n\n\nResourceModule \n\nResourceModule \n\nResourceModule -->\n\nDataModule->ResourceModule \n\n\n\n\n\nSdkModule \n\nSdkModule \n\nSdkModule -->\n\nDataModule->SdkModule \n\n\n\n\n\nUiModule \n\nUiModule \n\nUiModule -->\n\nDataModule->UiModule \n\n\n\nDataModule -->\n\nFilesModule->DataModule\n\n\n\nSdkModule -->\n\nFilesModule->SdkModule \n\n\n\n\n\nAssetDirective \n\nAssetDirective \n\nAssetDirective -->\n\nFilesModule->AssetDirective \n\n\n\n\n\nAssetListComponent \n\nAssetListComponent \n\nAssetListComponent -->\n\nFilesModule->AssetListComponent \n\n\n\n\n\nAssetListPopComponent \n\nAssetListPopComponent \n\nAssetListPopComponent -->\n\nFilesModule->AssetListPopComponent \n\n\n\n\n\nAssetSelectComponent \n\nAssetSelectComponent \n\nAssetSelectComponent -->\n\nFilesModule->AssetSelectComponent \n\n\n\n\n\nAssetgroupSelectComponent \n\nAssetgroupSelectComponent \n\nAssetgroupSelectComponent -->\n\nFilesModule->AssetgroupSelectComponent \n\n\n\n\n\nDropzoneDirective \n\nDropzoneDirective \n\nDropzoneDirective -->\n\nFilesModule->DropzoneDirective \n\n\n\n\n\nImageDirective \n\nImageDirective \n\nImageDirective -->\n\nFilesModule->ImageDirective \n\n\n\n\n\nImageSelectPopComponent \n\nImageSelectPopComponent \n\nImageSelectPopComponent -->\n\nFilesModule->ImageSelectPopComponent \n\n\n\n\n\nTagSelectComponent \n\nTagSelectComponent \n\nTagSelectComponent -->\n\nFilesModule->TagSelectComponent \n\n\n\n\n\nUploadComponent \n\nUploadComponent \n\nUploadComponent -->\n\nFilesModule->UploadComponent \n\n\n\n\n\nUploadSelectComponent \n\nUploadSelectComponent \n\nUploadSelectComponent -->\n\nFilesModule->UploadSelectComponent \n\n\n\nDataModule -->\n\nResourceModule->DataModule\n\n\n\nFilesModule -->\n\nResourceModule->FilesModule\n\n\n\nSdkModule -->\n\nResourceModule->SdkModule \n\n\n\nUiModule -->\n\nResourceModule->UiModule \n\n\n\n\n\nApiActionbarComponent \n\nApiActionbarComponent \n\nApiActionbarComponent -->\n\nResourceModule->ApiActionbarComponent \n\n\n\n\n\nResourceActionbarComponent \n\nResourceActionbarComponent \n\nResourceActionbarComponent -->\n\nResourceModule->ResourceActionbarComponent \n\n\n\n\n\nResourceCrudComponent \n\nResourceCrudComponent \n\nResourceCrudComponent -->\n\nResourceModule->ResourceCrudComponent \n\n\n\n\n\nResourceDeletePopComponent \n\nResourceDeletePopComponent \n\nResourceDeletePopComponent -->\n\nResourceModule->ResourceDeletePopComponent \n\n\n\n\n\nResourceFormComponent \n\nResourceFormComponent \n\nResourceFormComponent -->\n\nResourceModule->ResourceFormComponent \n\n\n\n\n\nResourceListComponent \n\nResourceListComponent \n\nResourceListComponent -->\n\nResourceModule->ResourceListComponent \n\n\n\n\n\nResourceListPopComponent \n\nResourceListPopComponent \n\nResourceListPopComponent -->\n\nResourceModule->ResourceListPopComponent \n\n\n\n\n\nResourcePopComponent \n\nResourcePopComponent \n\nResourcePopComponent -->\n\nResourceModule->ResourcePopComponent \n\n\n\n\n\nResourceSelectComponent \n\nResourceSelectComponent \n\nResourceSelectComponent -->\n\nResourceModule->ResourceSelectComponent \n\n\n\n\n\nSdkModule\n\nSdkModule\n\nDataModule -->\n\nSdkModule->DataModule\n\n\n\nFilesModule -->\n\nSdkModule->FilesModule\n\n\n\nResourceModule -->\n\nSdkModule->ResourceModule\n\n\n\n\n\nCrudService\n\nCrudService\n\nDataModule -->\n\nCrudService->DataModule\n\n\n\n\n\nHistoryService\n\nHistoryService\n\nDataModule -->\n\nHistoryService->DataModule\n\n\n\n\n\nModelConfigService\n\nModelConfigService\n\nDataModule -->\n\nModelConfigService->DataModule\n\n\n\n\n\nTypeConfigService\n\nTypeConfigService\n\nDataModule -->\n\nTypeConfigService->DataModule\n\n\n\n\n\nAssetDirective\n\nAssetDirective\n\nFilesModule -->\n\nAssetDirective->FilesModule\n\n\n\n\n\nAssetListComponent\n\nAssetListComponent\n\nFilesModule -->\n\nAssetListComponent->FilesModule\n\n\n\n\n\nAssetListPopComponent\n\nAssetListPopComponent\n\nFilesModule -->\n\nAssetListPopComponent->FilesModule\n\n\n\n\n\nAssetSelectComponent\n\nAssetSelectComponent\n\nFilesModule -->\n\nAssetSelectComponent->FilesModule\n\n\n\n\n\nAssetgroupSelectComponent\n\nAssetgroupSelectComponent\n\nFilesModule -->\n\nAssetgroupSelectComponent->FilesModule\n\n\n\n\n\nDropzoneDirective\n\nDropzoneDirective\n\nFilesModule -->\n\nDropzoneDirective->FilesModule\n\n\n\n\n\nImageDirective\n\nImageDirective\n\nFilesModule -->\n\nImageDirective->FilesModule\n\n\n\n\n\nImageSelectPopComponent\n\nImageSelectPopComponent\n\nFilesModule -->\n\nImageSelectPopComponent->FilesModule\n\n\n\n\n\nTagSelectComponent\n\nTagSelectComponent\n\nFilesModule -->\n\nTagSelectComponent->FilesModule\n\n\n\n\n\nUploadComponent\n\nUploadComponent\n\nFilesModule -->\n\nUploadComponent->FilesModule\n\n\n\n\n\nUploadSelectComponent\n\nUploadSelectComponent\n\nFilesModule -->\n\nUploadSelectComponent->FilesModule\n\n\n\n\n\nFileService\n\nFileService\n\nFilesModule -->\n\nFileService->FilesModule\n\n\n\n\n\nDatetimeComponent\n\nDatetimeComponent\n\nFormModule -->\n\nDatetimeComponent->FormModule\n\n\n\n\n\nDefaultInputComponent\n\nDefaultInputComponent\n\nFormModule -->\n\nDefaultInputComponent->FormModule\n\n\n\n\n\nDefaultOutputComponent\n\nDefaultOutputComponent\n\nFormModule -->\n\nDefaultOutputComponent->FormModule\n\n\n\n\n\nFormComponent\n\nFormComponent\n\nFormModule -->\n\nFormComponent->FormModule\n\n\n\n\n\nMaxItemsPipe\n\nMaxItemsPipe\n\nFormModule -->\n\nMaxItemsPipe->FormModule\n\n\n\n\n\nToggleComponent\n\nToggleComponent\n\nFormModule -->\n\nToggleComponent->FormModule\n\n\n\n\n\nVisibleFieldsPipe\n\nVisibleFieldsPipe\n\nFormModule -->\n\nVisibleFieldsPipe->FormModule\n\n\n\nUiModule -->\n\nFormModule->UiModule\n\n\n\n\n\nDatetimeComponent \n\nDatetimeComponent \n\nDatetimeComponent -->\n\nFormModule->DatetimeComponent \n\n\n\n\n\nFormComponent \n\nFormComponent \n\nFormComponent -->\n\nFormModule->FormComponent \n\n\n\n\n\nIoModule \n\nIoModule \n\nIoModule -->\n\nFormModule->IoModule \n\n\n\n\n\nMaxItemsPipe \n\nMaxItemsPipe \n\nMaxItemsPipe -->\n\nFormModule->MaxItemsPipe \n\n\n\nPopModule -->\n\nFormModule->PopModule \n\n\n\n\n\nToggleComponent \n\nToggleComponent \n\nToggleComponent -->\n\nFormModule->ToggleComponent \n\n\n\n\n\nVisibleFieldsPipe \n\nVisibleFieldsPipe \n\nVisibleFieldsPipe -->\n\nFormModule->VisibleFieldsPipe \n\n\n\n\n\nListModule\n\nListModule\n\nListModule -->\n\nFormModule->ListModule\n\n\n\n\n\nIconModule\n\nIconModule\n\nUiModule -->\n\nIconModule->UiModule\n\n\n\nFormModule -->\n\nIconModule->FormModule\n\n\n\n\n\nPopModule\n\nPopModule\n\nPopModule -->\n\nIconModule->PopModule\n\n\n\n\n\nIconComponent \n\nIconComponent \n\nIconComponent -->\n\nIconModule->IconComponent \n\n\n\nListModule -->\n\nIconModule->ListModule\n\n\n\n\n\nNotificationsModule\n\nNotificationsModule\n\nNotificationsModule -->\n\nIconModule->NotificationsModule\n\n\n\n\n\nIoModule\n\nIoModule\n\nFormModule -->\n\nIoModule->FormModule\n\n\n\n\n\nDynamicRackComponent \n\nDynamicRackComponent \n\nDynamicRackComponent -->\n\nIoModule->DynamicRackComponent \n\n\n\n\n\nDynamicSlotComponent \n\nDynamicSlotComponent \n\nDynamicSlotComponent -->\n\nIoModule->DynamicSlotComponent \n\n\n\n\n\nInputComponent \n\nInputComponent \n\nInputComponent -->\n\nIoModule->InputComponent \n\n\n\n\n\nInputErrorsComponent \n\nInputErrorsComponent \n\nInputErrorsComponent -->\n\nIoModule->InputErrorsComponent \n\n\n\n\n\nOutputComponent \n\nOutputComponent \n\nOutputComponent -->\n\nIoModule->OutputComponent \n\n\n\n\n\nSlotHostDirective \n\nSlotHostDirective \n\nSlotHostDirective -->\n\nIoModule->SlotHostDirective \n\n\n\n\n\nUtilityModule\n\nUtilityModule\n\nUtilityModule -->\n\nIoModule->UtilityModule\n\n\n\n\n\nLoaderModule\n\nLoaderModule\n\nUiModule -->\n\nLoaderModule->UiModule\n\n\n\nFormModule -->\n\nLoaderModule->FormModule\n\n\n\n\n\nLoaderComponent \n\nLoaderComponent \n\nLoaderComponent -->\n\nLoaderModule->LoaderComponent \n\n\n\n\n\nSelectModule\n\nSelectModule\n\nSelectModule -->\n\nLoaderModule->SelectModule\n\n\n\nUiModule -->\n\nPopModule->UiModule\n\n\n\nFormModule -->\n\nPopModule->FormModule\n\n\n\nNotificationsModule -->\n\nPopModule->NotificationsModule\n\n\n\n\n\nModalComponent \n\nModalComponent \n\nModalComponent -->\n\nPopModule->ModalComponent \n\n\n\n\n\nPopComponent \n\nPopComponent \n\nPopComponent -->\n\nPopModule->PopComponent \n\n\n\n\n\nSymbolModule\n\nSymbolModule\n\nUiModule -->\n\nSymbolModule->UiModule\n\n\n\nFormModule -->\n\nSymbolModule->FormModule\n\n\n\nListModule -->\n\nSymbolModule->ListModule\n\n\n\n\n\nSymbolPipe \n\nSymbolPipe \n\nSymbolPipe -->\n\nSymbolModule->SymbolPipe \n\n\n\n\n\nFormService\n\nFormService\n\nFormModule -->\n\nFormService->FormModule\n\n\n\n\n\nIconComponent\n\nIconComponent\n\nIconModule -->\n\nIconComponent->IconModule\n\n\n\n\n\nIconService\n\nIconService\n\nIconModule -->\n\nIconService->IconModule\n\n\n\n\n\nDynamicRackComponent\n\nDynamicRackComponent\n\nIoModule -->\n\nDynamicRackComponent->IoModule\n\n\n\n\n\nDynamicSlotComponent\n\nDynamicSlotComponent\n\nIoModule -->\n\nDynamicSlotComponent->IoModule\n\n\n\n\n\nInputComponent\n\nInputComponent\n\nIoModule -->\n\nInputComponent->IoModule\n\n\n\n\n\nInputErrorsComponent\n\nInputErrorsComponent\n\nIoModule -->\n\nInputErrorsComponent->IoModule\n\n\n\n\n\nOutputComponent\n\nOutputComponent\n\nIoModule -->\n\nOutputComponent->IoModule\n\n\n\n\n\nSlotHostDirective\n\nSlotHostDirective\n\nIoModule -->\n\nSlotHostDirective->IoModule\n\n\n\n\n\nGroupPipe\n\nGroupPipe\n\nListModule -->\n\nGroupPipe->ListModule\n\n\n\n\n\nListComponent\n\nListComponent\n\nListModule -->\n\nListComponent->ListModule\n\n\n\n\n\nListHeaderComponent\n\nListHeaderComponent\n\nListModule -->\n\nListHeaderComponent->ListModule\n\n\n\n\n\nListItemsComponent\n\nListItemsComponent\n\nListModule -->\n\nListItemsComponent->ListModule\n\n\n\n\n\nPaginationComponent\n\nPaginationComponent\n\nListModule -->\n\nPaginationComponent->ListModule\n\n\n\n\n\nSearchbarComponent\n\nSearchbarComponent\n\nListModule -->\n\nSearchbarComponent->ListModule\n\n\n\nUiModule -->\n\nListModule->UiModule\n\n\n\nFormModule -->\n\nListModule->FormModule \n\n\n\n\n\nGroupPipe \n\nGroupPipe \n\nGroupPipe -->\n\nListModule->GroupPipe \n\n\n\n\n\nListComponent \n\nListComponent \n\nListComponent -->\n\nListModule->ListComponent \n\n\n\n\n\nListHeaderComponent \n\nListHeaderComponent \n\nListHeaderComponent -->\n\nListModule->ListHeaderComponent \n\n\n\n\n\nListItemsComponent \n\nListItemsComponent \n\nListItemsComponent -->\n\nListModule->ListItemsComponent \n\n\n\n\n\nPaginationComponent \n\nPaginationComponent \n\nPaginationComponent -->\n\nListModule->PaginationComponent \n\n\n\n\n\nSearchbarComponent \n\nSearchbarComponent \n\nSearchbarComponent -->\n\nListModule->SearchbarComponent \n\n\n\nSelectModule -->\n\nListModule->SelectModule\n\n\n\nUiModule -->\n\nUtilityModule->UiModule\n\n\n\nListModule -->\n\nUtilityModule->ListModule\n\n\n\n\n\nFocusDirective \n\nFocusDirective \n\nFocusDirective -->\n\nUtilityModule->FocusDirective \n\n\n\n\n\nLoginFormComponent \n\nLoginFormComponent \n\nLoginFormComponent -->\n\nUtilityModule->LoginFormComponent \n\n\n\n\n\nMenuComponent \n\nMenuComponent \n\nMenuComponent -->\n\nUtilityModule->MenuComponent \n\n\n\n\n\nSignupFormComponent \n\nSignupFormComponent \n\nSignupFormComponent -->\n\nUtilityModule->SignupFormComponent \n\n\n\n\n\nTabComponent \n\nTabComponent \n\nTabComponent -->\n\nUtilityModule->TabComponent \n\n\n\n\n\nTabsComponent \n\nTabsComponent \n\nTabsComponent -->\n\nUtilityModule->TabsComponent \n\n\n\n\n\nListConfigService\n\nListConfigService\n\nListModule -->\n\nListConfigService->ListModule\n\n\n\n\n\nLoaderComponent\n\nLoaderComponent\n\nLoaderModule -->\n\nLoaderComponent->LoaderModule\n\n\n\n\n\nLoaderService\n\nLoaderService\n\nLoaderModule -->\n\nLoaderService->LoaderModule\n\n\n\n\n\nLocationMapComponent\n\nLocationMapComponent\n\nLocationModule -->\n\nLocationMapComponent->LocationModule\n\n\n\n\n\nLocationPickerComponent\n\nLocationPickerComponent\n\nLocationModule -->\n\nLocationPickerComponent->LocationModule\n\n\n\n\n\nLocationSearchComponent\n\nLocationSearchComponent\n\nLocationModule -->\n\nLocationSearchComponent->LocationModule\n\n\n\n\n\nLocationMapComponent \n\nLocationMapComponent \n\nLocationMapComponent -->\n\nLocationModule->LocationMapComponent \n\n\n\n\n\nLocationPickerComponent \n\nLocationPickerComponent \n\nLocationPickerComponent -->\n\nLocationModule->LocationPickerComponent \n\n\n\n\n\nLocationSearchComponent \n\nLocationSearchComponent \n\nLocationSearchComponent -->\n\nLocationModule->LocationSearchComponent \n\n\n\n\n\nGeocodeService\n\nGeocodeService\n\nLocationModule -->\n\nGeocodeService->LocationModule\n\n\n\n\n\nMediumEditorComponent\n\nMediumEditorComponent\n\n\n\nMediumEditorModule\n\nMediumEditorModule\n\nMediumEditorModule -->\n\nMediumEditorComponent->MediumEditorModule\n\n\n\n\n\nMediumEditorComponent \n\nMediumEditorComponent \n\nMediumEditorComponent -->\n\nMediumEditorModule->MediumEditorComponent \n\n\n\n MediumEditorComponent), multi: true\n} -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}\n\n MediumEditorComponent), multi: true\n}->MediumEditorComponent -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}->MediumEditorComponent\n\n\n\n\n\nErrorComponent\n\nErrorComponent\n\nNotificationsModule -->\n\nErrorComponent->NotificationsModule\n\n\n\n\n\nNotificationsComponent\n\nNotificationsComponent\n\nNotificationsModule -->\n\nNotificationsComponent->NotificationsModule\n\n\n\nUiModule -->\n\nNotificationsModule->UiModule\n\n\n\n\n\nErrorComponent \n\nErrorComponent \n\nErrorComponent -->\n\nNotificationsModule->ErrorComponent \n\n\n\n\n\nNotificationsComponent \n\nNotificationsComponent \n\nNotificationsComponent -->\n\nNotificationsModule->NotificationsComponent \n\n\n\n\n\nNotificationsService\n\nNotificationsService\n\nNotificationsModule -->\n\nNotificationsService->NotificationsModule\n\n\n\n\n\nModalComponent\n\nModalComponent\n\nPopModule -->\n\nModalComponent->PopModule\n\n\n\n\n\nPopComponent\n\nPopComponent\n\nPopModule -->\n\nPopComponent->PopModule\n\n\n\n\n\nPopService\n\nPopService\n\nPopModule -->\n\nPopService->PopModule\n\n\n\n\n\nApiActionbarComponent\n\nApiActionbarComponent\n\nResourceModule -->\n\nApiActionbarComponent->ResourceModule\n\n\n\n\n\nResourceActionbarComponent\n\nResourceActionbarComponent\n\nResourceModule -->\n\nResourceActionbarComponent->ResourceModule\n\n\n\n\n\nResourceCrudComponent\n\nResourceCrudComponent\n\nResourceModule -->\n\nResourceCrudComponent->ResourceModule\n\n\n\n\n\nResourceDeletePopComponent\n\nResourceDeletePopComponent\n\nResourceModule -->\n\nResourceDeletePopComponent->ResourceModule\n\n\n\n\n\nResourceFormComponent\n\nResourceFormComponent\n\nResourceModule -->\n\nResourceFormComponent->ResourceModule\n\n\n\n\n\nResourceListComponent\n\nResourceListComponent\n\nResourceModule -->\n\nResourceListComponent->ResourceModule\n\n\n\n\n\nResourceListPopComponent\n\nResourceListPopComponent\n\nResourceModule -->\n\nResourceListPopComponent->ResourceModule\n\n\n\n\n\nResourcePopComponent\n\nResourcePopComponent\n\nResourceModule -->\n\nResourcePopComponent->ResourceModule\n\n\n\n\n\nResourceSelectComponent\n\nResourceSelectComponent\n\nResourceModule -->\n\nResourceSelectComponent->ResourceModule\n\n\n\n\n\nResourceConfig\n\nResourceConfig\n\nResourceModule -->\n\nResourceConfig->ResourceModule\n\n\n\n\n\nResourceService\n\nResourceService\n\nResourceModule -->\n\nResourceService->ResourceModule\n\n\n\n\n\nSdkService\n\nSdkService\n\nSdkModule -->\n\nSdkService->SdkModule\n\n\n\n\n\nActionbarComponent\n\nActionbarComponent\n\nSelectModule -->\n\nActionbarComponent->SelectModule\n\n\n\n\n\nSelectComponent\n\nSelectComponent\n\nSelectModule -->\n\nSelectComponent->SelectModule\n\n\n\nUiModule -->\n\nSelectModule->UiModule\n\n\n\n\n\nActionbarComponent \n\nActionbarComponent \n\nActionbarComponent -->\n\nSelectModule->ActionbarComponent \n\n\n\nListModule -->\n\nSelectModule->ListModule \n\n\n\n\n\nSelectComponent \n\nSelectComponent \n\nSelectComponent -->\n\nSelectModule->SelectComponent \n\n\n\n SelectComponent), multi: true\n} -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true\n}\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true\n}\n\n SelectComponent), multi: true\n}->SelectComponent -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true\n}->SelectComponent\n\n\n\n\n\nSymbolPipe\n\nSymbolPipe\n\nSymbolModule -->\n\nSymbolPipe->SymbolModule\n\n\n\n\n\nSymbolService\n\nSymbolService\n\nSymbolModule -->\n\nSymbolService->SymbolModule\n\n\n\n\n\nTinymceComponent\n\nTinymceComponent\n\n\n\nTinymceModule\n\nTinymceModule\n\nTinymceModule -->\n\nTinymceComponent->TinymceModule\n\n\n\n\n\nTinymceComponent \n\nTinymceComponent \n\nTinymceComponent -->\n\nTinymceModule->TinymceComponent \n\n\n\n\n\nFocusDirective\n\nFocusDirective\n\nUtilityModule -->\n\nFocusDirective->UtilityModule\n\n\n\n\n\nLoginFormComponent\n\nLoginFormComponent\n\nUtilityModule -->\n\nLoginFormComponent->UtilityModule\n\n\n\n\n\nMenuComponent\n\nMenuComponent\n\nUtilityModule -->\n\nMenuComponent->UtilityModule\n\n\n\n\n\nSignupFormComponent\n\nSignupFormComponent\n\nUtilityModule -->\n\nSignupFormComponent->UtilityModule\n\n\n\n\n\nTabComponent\n\nTabComponent\n\nUtilityModule -->\n\nTabComponent->UtilityModule\n\n\n\n\n\nTabsComponent\n\nTabsComponent\n\nUtilityModule -->\n\nTabsComponent->UtilityModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n \n\n \n \n \n \n \n \n 21 Modules\n \n \n \n \n \n \n \n \n 68 Components\n \n \n \n \n \n \n \n 7 Directives\n \n \n \n \n \n \n \n 18 Injectables\n \n \n \n \n \n \n \n 5 Pipes\n \n \n \n \n \n \n \n 14 Classes\n \n \n \n \n \n \n \n 1 Guard\n \n \n \n \n \n \n \n 20 Interfaces\n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/typealiases.html":{"url":"miscellaneous/typealiases.html","title":"miscellaneous-typealiases - typealiases","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Type aliases\n\n\n\n Index\n \n \n \n \n \n \n ActionFunction   (packages/.../actionbar.component.ts)\n \n \n \n \n \n \n\n\n packages/ui/src/lib/actionbar/actionbar.component.ts\n \n \n \n \n \n \n ActionFunction\n \n \n \n \n ActionFunction: function\n\n \n \n \n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/angular-7-upgrade-guide.html":{"url":"additional-documentation/angular-7-upgrade-guide.html","title":"additional-page - Angular 7 Upgrade Guide","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAngular7 update: BREAKING changes\nThe following breaking changes need to be considered when updating the components with angular 7. This update guide is just for @ec.components and angular 7. A whole angular 7 update guide can be found here.\nAngular 7 is used since the following versions:\n\n@ec.components/ace@0.6.0\n@ec.components/calendar@0.2.0\n@ec.components/core@0.19.0\n@ec.components/data@0.42.0\n@ec.components/location@0.18.0\n@ec.components/medium-editor@0.4.0\n@ec.components/style@0.21.0\n@ec.components/tinymce@0.5.0\n@ec.components/ui@0.36.0\n\nIt is recommended you use the most recent versions. Also add @ec.components/calendar to your package.json if you use datetime pipe or calendars / date pickers.\n1. All imports now go from the packages roots\nold:\nimport { EntryForm } from '@ec.components/data/src/entry-form/entry-form.component'new:\nimport { EntryForm } from '@ec.components/data'=> make sure you never import anything from src, since this folder no longer exists in the package\nPRO TIP\nUse VSCode \"Search: Replace in Files\" with the following Regex:\n\nSearch: _'@ec.components/(\\w+).*'_\nReplace: _'@ec.components/$1'_\n\n2. SCSS import changes\nold:\n@import '~@ec.components/style/components';new:\n@import '~@ec.components/style/scss/components';3. MediumModule has been renamed to MediumEditorModule\n4. Build Errors\nIf you are getting this:\nERROR in ./node_modules/eventsource/lib/eventsource.js\nModule not found: Error: Can't resolve 'http' in '/your-project/node_modules/eventsource/lib'\nERROR in ./node_modules/eventsource/lib/eventsource.js\nModule not found: Error: Can't resolve 'https' in 'your-project/node_modules/eventsource/lib'\nERROR in ./node_modules/jsonpath-plus/lib/jsonpath.js\nModule not found: Error: Can't resolve 'vm' in 'your-project/node_modules/jsonpath-plus/lib'To fix it, you need a custom webpack config. Eject is not available any more so we need to use angular-builders:\nnpm i @angular-builders/custom-webpack @angular-builders/dev-server @angular-devkit/build-angular --save-devThe following versions were used in this guide:\n\"@angular-builders/custom-webpack\": \"^7.2.0\",\n\"@angular-builders/dev-server\": \"^7.2.1\",\n\"@angular-devkit/build-angular\": \"^0.12.3\",In angular.json make following changes -\n\"architect\": {\n \"build\": {\n \"builder\": \"@angular-builders/custom-webpack:browser\",\n \"options\": {\n \"customWebpackConfig\": {\"path\": \"./custom-webpack.config.js\"},Notice change in builder and new option customWebpackConfig. Also change\n\"serve\": {\n \"builder\": \"@angular-builders/dev-server:generic\",Now create a custom-webpack.config.js file in the root directory, containing:\nconst path = require(\"path\");\nmodule.exports = {\n node: {\n crypto: 'empty',\n fs: 'empty',\n http: 'empty',\n https: 'empty',\n }\n};Check this for more info.\nOther Problems you might run into\n\nCan't bind to 'ngModel' since it isn't a known property of 'input'\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial.html":{"url":"additional-documentation/project-setup-tutorial.html","title":"additional-page - Project Setup Tutorial","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSetting up a new project with ec.components\nThis tutorial will show you how to set up a new project with the ec.components.\n1. Prequisites\nInstall angular-cli globally:\nnpm install -g @angular/cliThe following versions have been used for this tutorial:\n\n@angular/cli: 1.3.2\n@angular/animations: 4.3.6\n@angular/common: 4.3.6\n@angular/compiler: 4.3.6\n@angular/core: 4.3.6\n@angular/forms: 4.3.6\n@angular/http: 4.3.6\n@angular/platform-browser: 4.3.6\n@angular/platform-browser-dynamic: 4.3.6\n@angular/router: 4.3.6\n@angular/cli: 1.3.2\n@angular/compiler-cli: 4.3.6\n@angular/language-service: 4.3.6\ntypescript: 2.4.2\n\nYou can lookup your versions with ng --version\n2. Generate new Project\nng new ec-project --prefix ec-admin --routing true --style scssMake sure you replace ec-project with your project name and the prefix ec-admin with a project related shorthand symbol.\nMore info on the options for new.\n3. Install @ec.components/data\ncd ec-project\nyarn add @ec.components/data --save\nyarn add @ec.components/style --saveThis will install the data package which depends on ui and core packages.\nThe style package contains styles for ui and data.\n4. Import Styles\nInto your styles.scss, import the following styles:\n@import \"~xlcss/sass/xlcss.scss\";\n@import \"~x.ui/src/_config\";\n@import \"~x.ui/src/x.ui-sandbox.scss\";\n@import \"~@ec.components/style/components.scss\";5. Setup environment\nIn src/environments, you can find the different environment files.\nBy Default, there is a dev and a prod environment. For this tutorial, those two should be enough. We will use the dev environment for dev and staging and the prod environment for live. You could also add more environments, for more information, look here. \nsrc/environments/environment.ts:\nexport const environment = {\n production: false,\n environment: 'stage', // https://entrecode.github.io/ec.sdk/#environment\n datamanagerID: 'XXXXXXXX', // datamanager shortID\n clientID: 'my-dev-client' // your clientID\n};src/environments/environment.prod.ts:\nexport const environment = {\n production: true,\n environment: 'live', // https://entrecode.github.io/ec.sdk/#environment\n datamanagerID: 'XXXXXXXX', // datamanager shortID\n clientID: 'my-live-client' // your clientID\n};The .prod environment will be used when running ng build for production.\nThe client should use token method body. The callback URL does not matter.\n6. Add DataModule\nGo to src/app/app.module and add DataModule to your imports:\nimport { DataModule } from '@ec.components/data';\nimport { environment } from '../environments/environment';\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n AppRoutingModule,\n DataModule.forEnvironment(environment),\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }Here we are importing the DataModule along with the environment to then import it into our AppModule with the forEnvironment method.\n7. Add --ssl flag\nin your package.json, edit your start script to look like this:\n\"start\": \"ng serve --ssl\",Without the --ssl flag, the authorization won't work, because it enforces https.\n8. Add a component\ne.g. add to src/app/app.component.html:\nThis assumes that the model muffin exists inside the datamanager provided through your environment.\n9. Run the fun\nThats it! Now you can run the app using:\nnpm run startnow navigate to https://localhost:4200\n10. Add Notifications\nTo your app.component, you can add a global notification component, outside of your routing:\nThis will display all messages sent by the components or your own modules.\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial/routes.html":{"url":"additional-documentation/project-setup-tutorial/routes.html","title":"additional-page - Routes","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAdding Routes\nThis short tutorial demonstrates how to quickly generate routes with components.\nIn the following tutorials, refer to this when you are called to create a new route.\n1. Create Component\nGenerate a new component\nng generate component muffinsAdd template to src/app/muffins/muffins.component.html\n2. Add a Route\nsrc/app/app-routing.module.ts:\nimport { MuffinsComponent } from './muffins/muffins.component';\n\nconst routes: Routes = [\n {\n path: '',\n children: []\n },\n {\n path: 'muffins',\n component: MuffinsComponent\n }\n];3. Run the Route\nNow you can access the muffin crud at https://localhost:4200/muffins\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial/authorization.html":{"url":"additional-documentation/project-setup-tutorial/authorization.html","title":"additional-page - Authorization","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAuthorization Flow\nThis Tutorial will show how to properly set up authorization with ec.components.\nMake sure you have a project running that follows the Setup Tutorial.\nLogin\n1. Create a new Route\nRefer to the routes tutorial. We create a route called login with a LoginComponent.\n2. Add route redirect to login.component.ts:\n constructor(public router: Router) {\n }\n\n redirect() {\n this.router.navigate(['profile'])\n }3. Add Login Component to template\nUse this in your login.component.html template:\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial/localization.html":{"url":"additional-documentation/project-setup-tutorial/localization.html","title":"additional-page - Localization","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLocalization\nYou can setup localization via the SymbolService:\nimport en from './en';\n\n@Component({\n templateUrl: './app.component.html',\n})\nexport class AppComponent {\n constructor(private symbols: SymbolService) {\n this.symbols.set(en);\n }\n}It is expected that you pass an array of Symbol's to SymbolService#set\nDate Localization\nIf you are using datepickers, you have to include the following line to your root component:\nmoment.locale(this.symbols.resolve('moment.locale'));Using symbols in templates\nTo translate symbols in a template, use the symbol pipe:\n{{'symbol.language' | symbol}} Overwriting\nThe names of the symbols act as unique identifier, meaning you can overwrite any preexisting symbols. The default preexisting symbols of ec.components can be looked up here, or directly at the source: EN, DE\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{"url":"additional-documentation/project-setup-tutorial/custom-fields-config.html","title":"additional-page - Custom Fields Config","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCustom Field Configuration\nRelated Doc:\n\nAll Possible field config properties\nDefault Type Config\nListConfig (also see ItemConfig parent)\nItem Doc\n\nExample\nYou can configure a models behaviour over the ModelConfigService.\nIt is recommended to configure a model in a parent component of all possible ec-crud lists or nested forms.\nSee the related doc links for default values / possible config values.\nexport class MuffinsComponent {\n constructor(private modelConfig: ModelConfigService) {\n moment.locale('de'); //set moment locale\n\n this.modelConfig.set('muffin', {\n fields: {\n pictures: {\n label: 'Bilder' //this label is shown above the form field and in the table header\n },\n name: {\n label: 'Muffin Name',\n group: (name) => {\n return name[0].toUpperCase() //the return value is used to show group headers in a sorted list\n },\n required: true //when required, a new entry form cannot be saved without a value set for the field\n },\n _created: { //you can also access the system properties\n label: 'Erstellt',\n form: false, //this will hide the field inside the form\n group: (value) => moment(value).format('YYYY')\n },\n amazement_factor: {\n label: 'Amazement Faktor',\n display: (value) => { //this will transform the value for output e.g. in a list cell\n return (value * 10) + '%'\n },\n group: (value) => {\n return value > 5 ? 'Größer als 50%' : 'Kleiner als 50%';\n },\n validate: (value) => { //this function will run when validating the value inside a form\n if (typeof value !== 'number') {\n return; //value is valid\n }\n if (value 10) {\n return 'Darf maximal 10 sein';\n }\n }\n },\n }\n });\n}\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{"url":"additional-documentation/project-setup-tutorial/custom-entry-list.html","title":"additional-page - Custom Entry List","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nec-entry-list\nRelated Doc:\n\nAll Possible field config properties\nDefault Type Config\nListConfig (also see ItemConfig parent)\nItem Doc\n\nEntry Lists load multiple entries from a model and display them in a paginated list. It supports load error notifications, loader, filtering, sorting and automatic reloading + many customizations.\nDefault Usage\nThe above snippet will either consume the config for muffin in ModelConfigService, or if no config is found, generate one from the model schema.\nPassing a Config\nThe following snippet will assign the given config to the model/schema config:\ncolumnClicked output\nYou can react to column clicks via the columnClicked output:\nselect(item) {\n console.log('entry',item.getBody(),item.id());\n}Seperated header/items/pagination markup\nIf you need a seperation of the list-header -items and -pagination, you can use the sub components of list.component:\n\n\n\n\nCreate Custom Cells via transform methods\nIf you want to custom cell values that do not require a custom markup, you can use transforms\ndisplay\nThe display transform method is used to display the value (say what?).\nIt is called from inside ec-output, which is used in list-cells and form readOnly fields.\nYou can change the display behaviour like this:\nthis.modelConfig.set('muffin', {\n fields: {\n amazement_factor: {\n display: (value, item) => {\n if(value===10) {\n return 'AMAZING!';\n } else if(value > 7) {\n return 'amazing';\n }\n return 'not so amazing';\n }\n }\n }\n});group\nYou can use grouping to get a clearer outline over sorted data:\nthis.modelConfig.set('muffin', {\n fields: {\n amazement_factor: {\n group: (value, item) => {\n if(value===10) {\n return 'AMAZING!';\n } else if(value > 7) {\n return 'amazing';\n }\n return 'not so amazing';\n }\n }\n }\n});The syntax is the same as for display but the result is used as a group label when the property is sorted.\nresolve\nThe value that is passed to the transform methods like display, group etc. can be changed beforehand with the resolve method. NOTE: the params are different than for the transform methods:\nthis.modelConfig.set('muffin', {\n fields: {\n amazement_factor: {\n resolve: (body, item) => {\n if(body.amazement_factor === -1) {\n return 0;\n }\n return body.amazement_factor;\n }\n }\n }\n});this will also affect your forms!\npseudo properties via resolve\nYou can also define pseudo properties, meaning properties that do not exist on the original object:\nthis.modelConfig.set('muffin', {\n fields: {\n ranking: {\n resolve: (body, item) => body.amazement_factor*body.flavour/body.price\n }\n }\n});This comes in handy when you want to display a often combined value out of multiple values.\nNOTE: pseudo properties should not be passed to the backend...\nCustom Cells via custom output component\nIf you want to custom cell values that do require a custom markup, you can use a custom output component:\nthis.modelConfig.set('muffin', {\n fields: {\n amazement_factor: {\n output: StrongComponent\n }\n }\n});In your strong.component.ts, you can inherit OutputComponent, giving you access to the field and item of your cell:\n@Component({\n selector: 'app-strong',\n template: `{{item.resolve(field.property)}}`\n})\nexport class StrongComponent extends OutputComponent {}NOTE: customizing the output component will also change the look of forms using that config, if the property is set readOnly.\nFiltering Lists\nBy default, each column that hosts a filterable property contains a search icon in its header. If the property is filterable is defined either by the field config (filterable) or falls back to the backend types that support filters. The search icon will open a pop with a field type specific filter input inside.\nCustom Filtering\nIf you do not want that (currently pretty clunky) pop filters, you can set filterable to false and manually call list.load with the desired filter:\n\n show amazing muffins\n\nClicking the link will now show all muffins with exactly amazement_factor 10.\nCustom filter operators\nBy default, the entry-list will filter the property by its default filterOperator (see type config). If you want to change the default operator you can set it in the config:\nthis.modelConfig.set('muffin', {\n fields: {\n amazement_factor: {\n filterOperator: 'from'\n }\n }\n});\n show amazing muffins\n\nIf you now click the link, all muffins with amazement_factor>=5 will be loaded.\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{"url":"additional-documentation/project-setup-tutorial/custom-entry-forms.html","title":"additional-page - Custom Entry Forms","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEntry Forms\nRelated Doc:\n\nAll Possible field config properties\nDefault Type Config\nListConfig (also see ItemConfig parent)\nItem Doc\n\nEntry forms can edit and create entries. They support notifications, loader, validation error handling and dynamic config generation out of the box.\nNOTE: it is expected you have placed a ec-notifications tag somewhere in your root component.\nDefault Behaviour\nCreate\nsubmitting the form will create a new entry and then switch to edit mode.\nEdit\nDynamic Edit/Create from template\nYou can also access the form from the template and call edit or create:\n\n\n \n {{muffin.name}}\n \n \nCreate new MuffinConfiguration\nIf nothing else is configured, the form will parse the schema of muffin and generate a generic field config.\nIf you configured the model via ModelConfigService (see Custom Fields), the form will use that config.\nAlternatively, you can also pass a config directly:\nThe given config will be Object.assigned to the possible preexisting modelConfig.\nCustom Markup with ec-input/ec-output\nMost times, you'll want more freedom over your forms markup etc. This is where ec-input and ec-output come into play:\n \n \n Title\n \n \n \n Amazement Factor\n \n Submit\n As soon as the ec-entry-form contains elements (or you pass empty=true, as meantioned below), the contents will be rendered instead of the default form.\nFeatures you have to add manually (if needed)\n\nsubmit button\nfield.readOnly handling (show ec-output instead of ec-input)\nlocal ec-loader\n\nNOTE: dont wrap labels around complex input components, because they fire ghost clicks!\nCustom input/output markup\nOf course you can remove another layer of abstraction to further customize the form:\n \n \n Title\n \n \n \n Amazement Factor\n {{form.display('amazement_factor')}}\n\n Submit\n Features you have to add manually:\n\nhandling of input errors (ec-input-errors)\nmaking sure your markup handles the field type correctly\nmaking sure your markup handles the field value correctly\n\nIt is generally recommended to use ec-input over hard coded forms.\nThe empty flag\nYou can also place the ec-input elements somewhere else and just tell the ec-entry-form that it shouldn't render the default form with the empty flag:\n\nNOTE: Always make sure the property accessed by ec-input is also present in your config (or you dont use a config at all). Otherwise, the input wont know what to render.\nCreating custom inputs\n1. Create Custom Input Component\nng g c custom-inputThis component will serve as a container for all possible custom input fields.\n2. Extend InputComponent (custom-input.component.ts)\nTo make the current field information available to the template, you need to extend InputComponent from @ec.components/ui:\nimport { Component } from '@angular/core';\nimport { InputComponent } from '@ec.components/ui';\n\n@Component({\n selector: 'clubapp-custom-input',\n templateUrl: './custom-input.component.html',\n styleUrls: ['./custom-input.component.scss']\n})\nexport class CustomInputComponent extends InputComponent {\n}CMD+Click on InputComponent to see which properties you can now use!\n3. Add Markup (custom-input.component.html)\nNow we can decide which custom input should be used, based on e.g. the fields view value:\n\n \n \n \n \n \n -->\n \nOf course you could also switch based on property name or type, depending on your application.\nThe id property of field is referenced in the label of the form. By adding it to the input makes sure your label click enters the input.\n4. Add CustomInputComponent to entryComponents:\nBecause the custom component will be loaded dynamically, your module needs to declare it as entryComponent:\n@NgModule({\n entryComponents: [\n CustomInputComponent\n ]\n /** more stuff **/\n})\nexport class AppModule {\n}5. Add CustomInputComponent to field config:\nNow you can add the Component as input to your field config:\nthis.modelConfig.set('muffin', {\n fields: {\n url: {\n label: 'URL',\n view: 'speakingurl',\n input: CustomInputComponent\n },\n openingHours: {\n label: 'Öffnungszeiten',\n view: 'openingHours',\n input: CustomInputComponent\n }\n})By changing the view option, we can now decide which case will be met!\nCustom Form Controls\nNow what if you want to use a custom form control that does not rely on primitve inputs like number or text?\nIn the above custom-input.component template, we use with a formControl input.\nTo have access to the form control's value, you need to provide a ControlValueAccessor:\nimport { Component, forwardRef } from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { InputComponent } from '@ec.components/ui';\n\n@Component({\n selector: 'ec-opening-hours',\n templateUrl: './opening-hours.component.html',\n styleUrls: ['./opening-hours.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => OpeningHoursComponent),\n multi: true\n }\n ]\n})Now you can implement your own logic and call propagateChange when you change the value from your component, and react to change via the writeValue method!\nYou now could also use your component with ngModel or formControl in another context!\nMore information on this pattern: https://blog.thoughtram.io/angular/2016/07/27/custom-form-controls-in-angular-2.html\nCustom Fields without wrapper\nYou can also use custom components as input directly without needing to wrap them in \"CustomFieldsComponent\".\nJust make sure you implement ControlValueAccessor like above. When changes occur from the template, call propagateChange. You can react to outside model changes in writeValue.\nimport { Component, OnInit, Input } from '@angular/core';\nimport { InputComponent } from '../../../packages/ui';\nimport { ControlValueAccessor } from '@angular/forms';\n\n@Component({\n selector: 'ec-counter',\n templateUrl: './counter.component.html'\n})\n\nexport class CounterComponent extends InputComponent implements ControlValueAccessor {\n\n value = 0;\n\n increment() {\n this.propagateChange(++this.value);\n }\n\n decrement() {\n this.propagateChange(--this.value);\n }\n\n writeValue(value: any) {\n this.value = value;\n console.log('received value', value);\n }\n\n propagateChange = (_: any) => {\n };\n\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n\n registerOnTouched() {\n }\n\n}\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme.html":{"url":"additional-documentation/readme.html","title":"additional-page - README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nec.components\nThis project contains all sorts of angular components for creating data driven applications.\nIt is mainly used for entrecode admin applications in combination with the entrecode using ec.sdk.\nPackages\nMain Packages\n\n@ec.components/core: contains core typescript classes (no angular/datamanager)\n@ec.components/ui: contains core ui components (not datamanager specific)\n@ec.components/data: contains ui components for datamanager.\n@ec.components/style: contains styles for all components, built on x.ui.\n\nThe dependencies stack up from core to data (data > ui > core). You could also omit data, using just the ui components.\nOptional Packages\n\n@ec.components/calendar: contains calendar components, uses moment.\n@ec.components/location: wraps angular-google-maps.\n@ec.components/tinymce: wraps tinymce wysiwyg editor.\n@ec.components/medium-editor: wraps medium wysiwyg editor.\n@ec.components/ace: wraps ace code editor.\n\nDocumentation\nThe main documentation is located at entrecode.github.io/ec.components. You can find a getting started guide there.\nDemo\nA Demo is available at components.entrecode.de.\nDeveloping with Lerna + Yarn Workspaces\nThe repository is a monorepo, managed by lerna and yarn workspaces.\nAll folders inside dist + packages/style will be used as symlinks in node_modules/@ec.components/*.\nYou can update the symlinks by running yarn (e.g. after adding a new package).\nDev Setup\nAfter a fresh clone of the repo, run this:\nyarn install\nnpm run dev-setup\nnpm run startThe dev-setup script builds all packages and symlinks them to the node_modules.\nReleasing\nRun release task and select versions:\nnpm run releaseTo publish a new package for the first time, make sure you run npm publish --access=public before running lerna. See add-new-package for more info on creating a new package.\nAlso make sure to use Conventional Commits for proper changelogging.\nDefault README\nThis project was generated with Angular CLI version 7.2.1.\nDevelopment server\nRun ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.\nCode scaffolding\nRun ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.\nBuild\nRun ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod flag for a production build.\nRunning unit tests\nRun ng test to execute the unit tests via Karma.\nRunning end-to-end tests\nRun ng e2e to execute the end-to-end tests via Protractor.\nFurther help\nTo get more help on the Angular CLI use ng help or go check out the Angular CLI README.\nImpressum & Datenschutz\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/data-readme.html":{"url":"additional-documentation/readme/data-readme.html","title":"additional-page - data README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/data\nThis package contains all ec.datamanager related components.\nBeing wether framework agnostic nor backend agnostic, it is lowest fruit on the abstraction tree.\nIt extends the classes of the core module to create datamanager specific classes that are then used in the components.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/data --save2. Add Module\nimport { DataModule } from '@ec.components/data';\n\n@NgModule({\n imports: [\n DataModule\n ]\n})\nexport class AppModule {\n}\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/ui-readme.html":{"url":"additional-documentation/readme/ui-readme.html","title":"additional-page - ui README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/ui\nThis package contains all angular components that have no ec.datamanager references.\nIt utilizes the classes of the @ec.components/core package.\nBeing the middle layer in the abstraction tree, it is still backend agnostic but not framework agnostic.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/ui --save2. Add Module\nimport { UiModule } from '@ec.components/ui';\n\n@NgModule({\n imports: [\n UiModule\n ]\n})\nexport class AppModule {\n}\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/core-readme.html":{"url":"additional-documentation/readme/core-readme.html","title":"additional-page - core README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/core\nThis package contains all the core typescript classes.\nIt is the highest abstraction layer and is therefor framework and backend agnostic.\nThis means it contains no angular or ec.datamanager references.\nOverview\n\nCHANGELOG\nAvailable Classes\n\nInstallation\nnpm i @ec.components/coreimport { Item } from '@ec.components/core';\nconst primitive = new Item('a');\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/style-readme.html":{"url":"additional-documentation/readme/style-readme.html","title":"additional-page - style README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/style\nThis package contains all scss styles for the ec.components packages.\nOverview\n\nCHANGELOG\nx.ui\n\nInstallation\nMethod A: With prebuilt CSS styles\nIf you are not using scss or you just want to add styles without hassle, just add this css to your index.html:\nMethod B: Custom Styles with SCSS\nIf you want to use your own styles, you can use scss to import and build the styles with x.ui:\n1. Install package\nnpm install @ec.components/style --saveThis will also install x.ui.\n3. Add styles\nDetails on how to setup your config can be found in the x.ui README.\n@import 'config';\n@import '~x.ui/src/x.ui.scss';\n@import '~@ec.components/style/scss/components';\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/calendar-readme.html":{"url":"additional-documentation/readme/calendar-readme.html","title":"additional-page - calendar README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/calendar\nThis package provides calendar and date components as part of ec.components.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/calendar --save2. Add Module\nimport { CalendarModule } from '@ec.components/calendar';\n\n@NgModule({\n imports: [\n CalendarModule\n ]\n})\nexport class AppModule {\n}3. Use it\n \n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/location-readme.html":{"url":"additional-documentation/readme/location-readme.html","title":"additional-page - location README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/location\nThis package wraps the angular-google-maps to be suitable for forms.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/location --save2. Add Module\nimport { LocationModule } from '@ec.components/location';\n\n@NgModule({\n imports: [\n LocationModule\n ]\n})\nexport class AppModule {\n}3. Use it as default input for location fields\n constructor(private typeConfig: TypeConfigService) {\n this.typeConfig.set('location', {\n input: LocationPickerComponent\n });\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/ace-readme.html":{"url":"additional-documentation/readme/ace-readme.html","title":"additional-page - ace README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/ace\nThis package wraps the ace editor as an Angular Component.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/ace --save2. Add Module\nimport { AceModule } from '@ec.components/ace';\n\n@NgModule({\n imports: [\n AceModule\n ]\n})\nexport class AppModule {\n}3. Add CDN\nEither add the cdn src to your index.html:\n \n`Or import from ace-builds (in app.module):\nimport 'ace-builds/src-noconflict/ace.js';When importing, you also need to import all extensions/modes/themes that you want to use manually.\n4. Use it\n \n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/medium-editor-readme.html":{"url":"additional-documentation/readme/medium-editor-readme.html","title":"additional-page - medium-editor README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/medium-editor\nThis package wraps the medium-editor as an Angular Directive.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/medium-editor --save2. Add Module\nimport { MediumModule } from '@ec.components/medium-editor';\n\n@NgModule({\n imports: [\n MediumModule\n ]\n})\nexport class AppModule {\n}3. Use it\n \n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/tinymce-readme.html":{"url":"additional-documentation/readme/tinymce-readme.html","title":"additional-page - tinymce README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/tinymce\nThis package wraps the tinymce editor as an Angular Component.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/tinymce --save2. Add Module\nimport { TinymceModule } from '@ec.components/tinymce';\n\n@NgModule({\n imports: [\n TinymceModule\n ]\n})\nexport class AppModule {\n}3. Add styles files to angular.json\n\"styles\": [\n \"node_modules/tinymce/skins/lightgray/skin.min.css\",\n \"node_modules/tinymce/skins/lightgray/content.min.css\"\n],4. Use it\n \n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog.html":{"url":"additional-documentation/changelog.html","title":"additional-page - CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nEach package has its own changelog:\n\n@ec.components/data\n@ec.components/ui\n@ec.components/core\n@ec.components/calendar\n@ec.components/style\n@ec.components/ace\n@ec.components/location\n@ec.components/medium-editor\n@ec.components/tinymce\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/data-changelog.html":{"url":"additional-documentation/changelog/data-changelog.html","title":"additional-page - data CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.42.16 (2019-01-28)\nNote: Version bump only for package @ec.components/data\n0.42.15 (2019-01-28)\nNote: Version bump only for package @ec.components/data\n0.42.14 (2019-01-28)\nNote: Version bump only for package @ec.components/data\n0.42.13 (2019-01-28)\nNote: Version bump only for package @ec.components/data\n0.42.12 (2019-01-28)\nBug Fixes\n\nadd missing exports (d7fa72b)\n\n0.42.11 (2019-01-25)\nBug Fixes\n\nlanguage imports (6e961b8)\n\n0.42.10 (2019-01-25)\nNote: Version bump only for package @ec.components/data\n0.42.9 (2019-01-25)\nNote: Version bump only for package @ec.components/data\n0.42.8 (2019-01-25)\nNote: Version bump only for package @ec.components/data\n0.42.7 (2019-01-25)\nNote: Version bump only for package @ec.components/data\n0.42.6 (2019-01-21)\nNote: Version bump only for package @ec.components/data\n0.42.5 (2019-01-21)\nNote: Version bump only for package @ec.components/data\n0.42.4 (2019-01-21)\nBug Fixes\n\nauth.service clientID check + removed broadcast load on env switch (def9084)\ncalling entry-pop create twice would edit the first entry (d5dc292)\nclear searchbar when changing asset group (1cfc328)\nclientID if statement (43c7da5)\nconfig generation for empty forms was bugged since last commit (789e7ca)\ncould not define custom components for entry field types (0b433be)\ncould not pass config to entry-list seperately (4a14246)\ncould not set custom asset list config (06b615c)\ndndDraggable stringify error (a992381)\nEDITOR-187 (de51159)\nendless ecEntries could concat same page multiple times (fed2c52)\nentry-list.component (431e3fd)\nfiles index (bcbefd1)\nfilterOperators of entry and asset + default filterPopClass of nested types is now modal (9e671b9)\nfocus asset list pop searchbar when changing group (24868b9)\nform without config would bug (5892365)\ngroup resource-config (020e689)\nlinter bug (b4d03eb)\nModelConfigService now using CrudConfig instead of ItemConfig (eb506da)\nnew assets on entry create + removed hacks from input.component (04fffbd)\nparseType would not recognize relations with \"-\" (a08a9d6)\nquery could be overwritten while typing + fixed asset select (1c382d1)\nrelative path in data.module (fcfdf32)\nremoveItem still activated entry-select + entry-select demo (364482b)\nresource-list.component (2826ac4)\nselect assetGroup if legacyAsset and url upload (7580583)\nselection was broken for ec-entry-select list (121566c)\nstop select pop event bubbling + selectMode in select component (47a7930)\ntodos (9bf067d)\nwhen using objects as prefill, the next prefilled value would return the reference of the one before (c89591a)\nwrong method reference (f3590a7)\n\nFeatures\n\nsdk changesEnvironment + resource service env update broadcast (ad58c68)\nsearchbar, ecFocus + added searchbar to asset-list-pop (8236caf)\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/ui-changelog.html":{"url":"additional-documentation/changelog/ui-changelog.html","title":"additional-page - ui CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.36.15 (2019-01-28)\nNote: Version bump only for package @ec.components/ui\n0.36.14 (2019-01-28)\nNote: Version bump only for package @ec.components/ui\n0.36.13 (2019-01-28)\nNote: Version bump only for package @ec.components/ui\n0.36.12 (2019-01-28)\nNote: Version bump only for package @ec.components/ui\n0.36.11 (2019-01-28)\nBug Fixes\n\nadd missing exports (d7fa72b)\n\n0.36.10 (2019-01-25)\nBug Fixes\n\nlanguage imports (6e961b8)\n\n0.36.9 (2019-01-25)\nBug Fixes\n\nnow exporting languages by name (7733151)\n\n0.36.8 (2019-01-25)\nBug Fixes\n\nexport de + en from ui package barrel (c950461)\n\n0.36.7 (2019-01-25)\nNote: Version bump only for package @ec.components/ui\n0.36.6 (2019-01-21)\nNote: Version bump only for package @ec.components/ui\n0.36.5 (2019-01-21)\nNote: Version bump only for package @ec.components/ui\n0.36.4 (2019-01-21)\nBug Fixes\n\nclear searchbar when changing asset group (1cfc328)\ncontrol binding (fd41ccc)\ndndDraggable stringify error (a992381)\ndynamic-slot make inject public to be able to call super (b7460e6)\nec-input bug (1d9e231)\nfilterOperators of entry and asset + default filterPopClass of nested types is now modal (9e671b9)\nfirst tab selection was throwing an error (50e2d98)\nfocus asset list pop searchbar when changing group (24868b9)\nform.create would not reinstantiate with config being undefined (f7b65f4)\ninit control in input.component (3fb8f47)\nlint errors (1cb8b1c)\nlinter errors (70d5e24)\nnew assets on entry create + removed hacks from input.component (04fffbd)\nonly show size select if total>0 (7a88da8)\nquery could be overwritten while typing + fixed asset select (1c382d1)\nstop select pop event bubbling + selectMode in select component (47a7930)\ntodos (9bf067d)\nwrong import (b760780)\n\nFeatures\n\nsearchbar, ecFocus + added searchbar to asset-list-pop (8236caf)\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/core-changelog.html":{"url":"additional-documentation/changelog/core-changelog.html","title":"additional-page - core CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.19.12 (2019-01-28)\nNote: Version bump only for package @ec.components/core\n0.19.11 (2019-01-28)\nNote: Version bump only for package @ec.components/core\n0.19.10 (2019-01-28)\nNote: Version bump only for package @ec.components/core\n0.19.9 (2019-01-28)\nNote: Version bump only for package @ec.components/core\n0.19.8 (2019-01-25)\nNote: Version bump only for package @ec.components/core\n0.19.7 (2019-01-21)\nNote: Version bump only for package @ec.components/core\n0.19.6 (2019-01-21)\nBug Fixes\n\nlinter errors (70d5e24)\nselection has + docs (e8b0e49)\nselection.toggle would emit change twice sometimes (b3e8115)\ntodos (9bf067d)\nwhen using objects as prefill, the next prefilled value would return the reference of the one before (c89591a)\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/style-changelog.html":{"url":"additional-documentation/changelog/style-changelog.html","title":"additional-page - style CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.21.6 (2019-01-28)\nNote: Version bump only for package @ec.components/style\n0.21.5 (2019-01-28)\nNote: Version bump only for package @ec.components/style\n0.21.4 (2019-01-28)\nNote: Version bump only for package @ec.components/style\n0.21.3 (2019-01-28)\nNote: Version bump only for package @ec.components/style\n0.21.2 (2019-01-25)\nNote: Version bump only for package @ec.components/style\n0.21.1 (2019-01-21)\nNote: Version bump only for package @ec.components/style\n0.21.0 (2019-01-21)\nBug Fixes\n\nadded optional to btn._clear extension (373bebf)\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/calendar-changelog.html":{"url":"additional-documentation/changelog/calendar-changelog.html","title":"additional-page - calendar CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.2.10 (2019-01-28)\nNote: Version bump only for package @ec.components/calendar\n0.2.9 (2019-01-28)\nNote: Version bump only for package @ec.components/calendar\n0.2.8 (2019-01-28)\nNote: Version bump only for package @ec.components/calendar\n0.2.7 (2019-01-28)\nNote: Version bump only for package @ec.components/calendar\n0.2.6 (2019-01-25)\nNote: Version bump only for package @ec.components/calendar\n0.2.5 (2019-01-21)\nNote: Version bump only for package @ec.components/calendar\n0.2.4 (2019-01-21)\nNote: Version bump only for package @ec.components/calendar\n0.2.3 (2019-01-21)\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/location-changelog.html":{"url":"additional-documentation/changelog/location-changelog.html","title":"additional-page - location CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.18.9 (2019-01-28)\nNote: Version bump only for package @ec.components/location\n0.18.8 (2019-01-28)\nNote: Version bump only for package @ec.components/location\n0.18.7 (2019-01-28)\nNote: Version bump only for package @ec.components/location\n0.18.6 (2019-01-28)\nNote: Version bump only for package @ec.components/location\n0.18.5 (2019-01-25)\nNote: Version bump only for package @ec.components/location\n0.18.4 (2019-01-21)\nNote: Version bump only for package @ec.components/location\n0.18.3 (2019-01-21)\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/ace-changelog.html":{"url":"additional-documentation/changelog/ace-changelog.html","title":"additional-page - ace CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.6.9 (2019-01-28)\nNote: Version bump only for package @ec.components/ace\n0.6.8 (2019-01-28)\nNote: Version bump only for package @ec.components/ace\n0.6.7 (2019-01-28)\nNote: Version bump only for package @ec.components/ace\n0.6.6 (2019-01-28)\nNote: Version bump only for package @ec.components/ace\n0.6.5 (2019-01-25)\nNote: Version bump only for package @ec.components/ace\n0.6.4 (2019-01-21)\nNote: Version bump only for package @ec.components/ace\n0.6.3 (2019-01-21)\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/medium-editor-changelog.html":{"url":"additional-documentation/changelog/medium-editor-changelog.html","title":"additional-page - medium-editor CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.4.9 (2019-01-28)\nNote: Version bump only for package @ec.components/medium-editor\n0.4.8 (2019-01-28)\nNote: Version bump only for package @ec.components/medium-editor\n0.4.7 (2019-01-28)\nNote: Version bump only for package @ec.components/medium-editor\n0.4.6 (2019-01-28)\nNote: Version bump only for package @ec.components/medium-editor\n0.4.5 (2019-01-25)\nNote: Version bump only for package @ec.components/medium-editor\n0.4.4 (2019-01-21)\nNote: Version bump only for package @ec.components/medium-editor\n0.4.3 (2019-01-21)\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/tinymce-changelog.html":{"url":"additional-documentation/changelog/tinymce-changelog.html","title":"additional-page - tinymce CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.5.10 (2019-01-28)\nNote: Version bump only for package @ec.components/tinymce\n0.5.9 (2019-01-28)\nNote: Version bump only for package @ec.components/tinymce\n0.5.8 (2019-01-28)\nNote: Version bump only for package @ec.components/tinymce\n0.5.7 (2019-01-28)\nBug Fixes\n\ntinymce fix version 4.7.4 due to angular-cli/issues/11041 (b365847)\n\n0.5.6 (2019-01-25)\nNote: Version bump only for package @ec.components/tinymce\n0.5.5 (2019-01-25)\nNote: Version bump only for package @ec.components/tinymce\n0.5.4 (2019-01-21)\nNote: Version bump only for package @ec.components/tinymce\n0.5.3 (2019-01-21)\nBug Fixes\n\ncould not writeValue before init component (00a2e2e)\ntinyMCE promise error (8fab72f)\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/adding-new-packages.html":{"url":"additional-documentation/adding-new-packages.html","title":"additional-page - Adding New Packages","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAdding a new Package in 10 easy steps\nThe following steps need to be done to generate a new library that is standards compliant.\nJust replace the example name \"data\" with the new package name.\n1. Run CLI command to generate a new library\nng generate library data -p ecThis will create a new folder under packages/ (see newProjectRoot in angular.json).\n2. Prefix packages/data/package.json#name with @ec.components\nalso make sure the version is correct\n3. Prefix root tsconfig.json paths \"data\" and \"data/*\" with @ec.components\nalso change value to \"packages/data/dist/*\"\n4. Move src files to packages/data/lib\n5. add dependencies (e.g. ec.sdk) to both root and lib package.json\n6. add whitelistedNonPeerDependencies and dest to ng-package.json\n \"dest\": \"./dist\",\n \"whitelistedNonPeerDependencies\": [\n \".\"\n ]7. fix relative imports\nimport { Notification } from '../../../../ui/src/notifications/notification';\nimport { WithNotifications } from '../../../../ui/src/notifications/with-notifications.interface';\n// replace with\nimport { WithNotifications, Notification } from '@ec.components/ui';8. fix rxjs imports\nimport { Subject } from 'rxjs/Subject';\n// to\nimport { Subject } from 'rxjs';9. fix other lint errors like semicolon stuff\nbuild it\nng build datarun yarn to link dist/data to node_modules\n10. add dependency to root package.json\n11. add CHANGELOG.md of package to summary.json (like others)\n11. add link to package changelog page to CHANGELOG.md (like others)\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/stackblitz.html":{"url":"additional-documentation/stackblitz.html","title":"additional-page - Stackblitz","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nStackblitz Demos\n\nCreate Angular Stackblitz\nimport styles to index.html:\n\n\n\nAdd @ec.components package(s):\n\n\"@ec.components/calendar\": \"^0.2.6\",\n/** any other components module */\nimport module(s):\n\nimport { CalendarModule } from '@ec.components/calendar';\n@NgModule({\n imports: [ /* .. */ CalendarModule ],\n /* ... */\n})\nexport class AppModule { }\nuse component(s) in app.component.html:\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/publishing.html":{"url":"additional-documentation/publishing.html","title":"additional-page - Publishing","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAuthorization Flow\nThis Tutorial will show how to properly set up authorization with ec.components.\nMake sure you have a project running that follows the Setup Tutorial.\nLogin\n1. Create a new Route\nRefer to the routes tutorial. We create a route called login with a LoginComponent.\n2. Add route redirect to login.component.ts:\n constructor(public router: Router) {\n }\n\n redirect() {\n this.router.navigate(['profile'])\n }3. Add Login Component to template\nUse this in your login.component.html template:\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}} + "index": {"version":"2.3.5","fields":["title","body"],"fieldVectors":[["title/components/AceComponent.html",[0,0.195,1,1.288]],["body/components/AceComponent.html",[0,0.314,1,1.874,2,0.157,3,0.162,4,0.638,5,1.428,6,0.811,7,0.784,8,1.091,9,0.103,10,3.013,11,0.347,12,2.627,13,5.975,14,4.424,15,2.208,16,1.583,17,4.358,18,4.66,19,1.794,20,1.984,21,2.449,22,2.7,23,0.672,24,1.886,25,0.007,26,3.111,27,2.544,28,3.111,29,2.544,30,0.818,31,2.146,32,1.897,33,3.054,34,5.698,35,1.131,36,4.66,37,0.313,38,0.547,39,2.408,40,1.676,41,4.03,42,4.628,43,1.4,44,1.536,45,3.119,46,1.874,47,2.756,48,2.157,49,0.673,50,4.18,51,3.038,52,2.89,53,3.054,54,4.03,55,4.66,56,4.66,57,2.818,58,6.628,59,8.852,60,0.93,61,2.634,62,6.412,63,2.147,64,5.248,65,0.295,66,3.205,67,3.297,68,6.412,69,0.764,70,1.693,71,1.097,72,3.013,73,3.013,74,3.013,75,1.531,76,0.861,77,2.231,78,3.197,79,1.81,80,1.093,81,1.089,82,1.884,83,3.013,84,2.929,85,3.013,86,2.929,87,3.013,88,3.197,89,1.611,90,3.363,91,0.943,92,0.913,93,0.625,94,2.929,95,3.013,96,4.66,97,3.013,98,4.03,99,3.564,100,4.66,101,4.66,102,3.013,103,4.66,104,2.929,105,3.013,106,3.197,107,2.396,108,1.757,109,2.89,110,1.16,111,3.564,112,3.013,113,1.583,114,3.013,115,1.742,116,3.013,117,2.029,118,0.798,119,2.544,120,3.013,121,2.786,122,3.013,123,2.772,124,2.718,125,3.013,126,1.531,127,2.718,128,3.297,129,2.304,130,2.304,131,1.238,132,2.818,133,2.304,134,2.304,135,1.758,136,1.358,137,0.263,138,1.211,139,0.936,140,2.684,141,3.013,142,3.013,143,2.684,144,1.894,145,2.467,146,1.136,147,0.607,148,0.098,149,0.107,150,4.66,151,4.66,152,3.013,153,3.013,154,5.248,155,3.013,156,3.564,157,2.684,158,5.074,159,3.013,160,5.698,161,3.013,162,3.054,163,3.013,164,1.371,165,4.15,166,3.013,167,1.595,168,3.013,169,3.013,170,3.013,171,3.814,172,3.013,173,1.894,174,3.013,175,2.304,176,3.013,177,0.557,178,1.233,179,0.954,180,1.266,181,1.697,182,0.811,183,0.811,184,0.744,185,1.534,186,0.744,187,0.784,188,0.695,189,0.77,190,0.757,191,2.058,192,0.77,193,1.27,194,1.727,195,0.784,196,1.286,197,2.126,198,0.784,199,0.784,200,0.811,201,0.77,202,1.255,203,0.784,204,0.811,205,0.77,206,0.811,207,0.757,208,0.757,209,1.437,210,1.534,211,0.757,212,0.77,213,0.77,214,0.744,215,0.811,216,0.784,217,1.867,218,0.784,219,0.77,220,0.784,221,0.784,222,0.784,223,0.77,224,0.811,225,0.77,226,0.784,227,0.811,228,0.77,229,0.811,230,0.77,231,0.744,232,0.907,233,0.811,234,0.77,235,0.811,236,0.757,237,0.77,238,0.811,239,0.77,240,0.811,241,0.707,242,0.811,243,0.77,244,1.337,245,0.811,246,0.757,247,0.811,248,0.77,249,0.811,250,0.744,251,0.811,252,0.77,253,0.744,254,0.77,255,0.719,256,0.811,257,0.77,258,0.811,259,0.811,260,0.77,261,0.811,262,0.77,263,0.811,264,0.744,265,0.811,266,0.757,267,0.77,268,0.811,269,0.77,270,0.784,271,0.811,272,0.757,273,0.77,274,1.76,275,0.77,276,0.784,277,0.672,278,0.784,279,0.784,280,0.77,281,0.784,282,0.784,283,0.784,284,0.811,285,0.757,286,0.77,287,0.811,288,0.77,289,0.784,290,0.77,291,0.811,292,0.77,293,0.811,294,0.784,295,0.719,296,0.77,297,0.811,298,0.77,299,0.811,300,0.77,301,0.811,302,0.77,303,0.732,304,0.744,305,0.811,306,0.757,307,0.811,308,0.757,309,0.811,310,0.757,311,0.811,312,0.757,313,0.811,314,0.757,315,0.797,316,0.811,317,0.757,318,0.797,319,0.811,320,0.003,321,0.003]],["title/modules/AceModule.html",[322,1.085,323,3.636]],["body/modules/AceModule.html",[1,2.56,2,0.347,3,0.358,9,0.227,24,2.727,25,0.007,26,4.751,27,4.751,28,4.751,29,5.06,30,1.627,63,2.231,65,0.31,137,0.581,146,3.281,147,1.341,148,0.301,149,0.237,177,1.231,320,0.005,321,0.005,322,1.742,323,6.882,324,2.737,325,5.934,326,5.934,327,5.934,328,5.934,329,3.396,330,2.412,331,2.231,332,6.663,333,4.557,334,2.319,335,6.663,336,6.663,337,6.663]],["title/interfaces/Action.html",[338,1.43,339,2.938]],["body/interfaces/Action.html",[0,0.281,2,0.291,3,0.301,9,0.19,16,1.382,19,2.79,21,3.114,25,0.007,30,0.982,31,1.206,32,1.07,35,1.358,37,0.581,38,0.85,40,1.537,44,1.41,46,1.43,48,2.364,52,2.522,65,0.286,69,0.8,70,1.876,76,1.034,81,1.098,93,0.907,109,3.622,137,0.488,147,1.126,148,0.276,149,0.199,184,1.789,196,0.982,232,1.653,285,1.82,320,0.005,321,0.005,330,2.026,338,2.281,339,5.53,340,4.581,341,3.57,342,4.387,343,4.639,344,3.704,345,6.499,346,1.761,347,3.956,348,4.984,349,3.836,350,1.617,351,5.931,352,5.931,353,4.984,354,1.676,355,2.351,356,3.155,357,4.984,358,1.107,359,3.956,360,4.581,361,4.984,362,4.984,363,1.561,364,4.984,365,4.984,366,4.984,367,4.984,368,4.984,369,4.581,370,4.984,371,4.984,372,4.984,373,4.984,374,6.453,375,7.156,376,4.984,377,4.984,378,4.984,379,4.381,380,4.984,381,3.264,382,4.984,383,4.984,384,4.984,385,4.984,386,4.984,387,4.984,388,6.453,389,4.28,390,4.984,391,3.384,392,4.984,393,3.667,394,4.984,395,4.984,396,4.581,397,4.984]],["title/interfaces/ActionbarConfig.html",[338,1.43,352,4.123]],["body/interfaces/ActionbarConfig.html",[0,0.291,2,0.307,3,0.318,9,0.201,16,1.46,19,3.175,21,3.226,25,0.007,30,1.038,31,1.274,32,1.131,35,1.435,40,1.577,44,1.46,46,1.511,48,2.426,52,2.664,65,0.293,69,0.515,70,1.716,76,1.093,81,1.121,109,3.716,137,0.515,147,1.19,148,0.281,149,0.21,184,1.853,196,1.038,232,1.15,285,1.885,320,0.005,321,0.005,330,2.14,338,2.341,339,5.336,340,4.839,341,2.483,342,4.011,343,3.227,344,3.387,345,5.739,346,1.296,347,4.097,348,5.265,349,4.366,350,1.708,351,6.143,352,6.749,353,5.265,354,1.771,355,2.483,356,3.333,357,5.265,358,1.17,359,4.097,360,4.839,361,5.265,362,5.265,363,1.649,364,5.265,365,5.265,366,5.265,367,5.265,368,5.265,369,4.839,370,5.265,371,5.265,372,5.265,373,5.265,374,6.684,375,7.343,376,5.265,377,5.265,378,5.265,379,4.538,380,5.265,381,3.448,382,5.265,383,5.265,384,5.265,385,5.265,386,5.265,387,5.265,388,6.684,389,4.521,390,5.265,391,3.575,392,5.265,393,3.874,394,5.265,395,5.265,396,4.839,397,5.265]],["title/components/AdminEntryInputComponent.html",[0,0.195,186,1.244]],["body/components/AdminEntryInputComponent.html",[0,0.329,1,1.063,2,0.216,3,0.223,4,1.461,6,1.12,7,1.082,9,0.142,11,0.479,19,2.28,20,2.18,23,0.927,25,0.007,31,2.171,32,1.921,35,1.438,37,0.432,38,0.695,40,1.624,44,1.743,45,3.655,46,2.289,47,3.229,48,2.428,60,0.751,65,0.267,69,0.77,71,1.016,91,0.612,92,0.94,93,0.405,113,1.462,115,1.045,117,1.874,118,0.737,126,1.946,127,3.454,128,3.863,129,3.181,130,3.181,131,1.709,132,3.581,133,3.181,134,3.181,135,2.426,137,0.363,139,1.292,148,0.135,149,0.148,177,0.769,178,1.567,179,1.213,181,1.988,182,1.12,183,1.12,184,1.027,185,1.857,186,1.855,187,1.082,188,1.958,189,1.063,190,1.045,191,2.286,192,1.063,193,1.537,194,2.023,195,1.082,196,1.448,197,2.337,198,1.082,199,1.082,200,1.12,201,1.063,202,1.595,203,1.082,204,1.12,205,1.063,206,1.12,207,1.045,208,1.045,209,1.735,210,1.857,211,1.045,212,1.063,213,1.063,214,1.027,215,1.12,216,1.082,217,2.138,218,1.082,219,1.063,220,1.082,221,1.082,222,1.082,223,1.063,224,1.12,225,1.063,226,1.082,227,1.12,228,1.063,229,1.12,230,1.063,231,1.027,232,1.152,233,1.12,234,1.063,235,1.12,236,1.045,237,1.063,238,1.12,239,1.063,240,1.12,241,0.976,242,1.12,243,1.063,244,1.618,245,1.12,246,1.045,247,1.12,248,1.063,249,1.12,250,1.027,251,1.12,252,1.063,253,1.027,254,1.063,255,0.993,256,1.12,257,1.063,258,1.12,259,1.12,260,1.063,261,1.12,262,1.063,263,1.12,264,1.027,265,1.12,266,1.045,267,1.063,268,1.12,269,1.063,270,1.082,271,1.12,272,1.045,273,1.063,274,1.935,275,1.063,276,1.082,277,0.927,278,1.082,279,1.082,280,1.063,281,1.082,282,1.082,283,1.082,284,1.12,285,1.045,286,1.063,287,1.12,288,1.063,289,1.082,290,1.063,291,1.12,292,1.063,293,1.12,294,1.082,295,0.993,296,1.063,297,1.12,298,1.063,299,1.12,300,1.063,301,1.12,302,1.063,303,1.01,304,1.027,305,1.12,306,1.045,307,1.12,308,1.045,309,1.12,310,1.045,311,1.12,312,1.045,313,1.12,314,1.045,315,1.101,316,1.12,317,1.045,318,1.101,319,1.12,320,0.004,321,0.004,358,0.823,381,2.426,398,5.746,399,5.746,400,3.181,401,3.136,402,3.339,403,5.274,404,6.755,405,3.722,406,4.062,407,4.847,408,4.722,409,5.922,410,4.274,411,4.529,412,3.335,413,2.271,414,3.39,415,5.274,416,4.16,417,1.875,418,3.405,419,1.922,420,3.002,421,4.16,422,3.002,423,3.405,424,4.847,425,3.581]],["title/directives/AssetDirective.html",[179,1.031,304,1.244]],["body/directives/AssetDirective.html",[2,0.254,3,0.263,4,1.784,8,1.772,9,0.225,11,0.563,16,1.637,22,3.563,23,1.091,25,0.007,30,1.163,31,1.428,37,0.508,38,0.778,40,1.727,44,1.727,49,0.958,51,3.819,60,1.126,65,0.287,69,0.82,70,1.757,71,1.126,75,1.607,76,1.225,79,1.637,81,1.122,82,1.168,91,0.975,92,0.718,93,0.646,108,2.5,118,1.002,121,3.489,126,2.178,137,0.426,147,0.985,148,0.159,149,0.174,179,1.65,180,2.055,188,2.083,193,2.194,295,1.168,304,1.637,320,0.004,321,0.004,342,4.544,344,2.01,346,1.453,358,0.968,363,1.365,412,3.73,413,2.671,414,3.566,417,2.205,419,2.26,422,3.531,425,4.873,426,1.737,427,4.893,428,3.961,429,6.629,430,6.629,431,8.879,432,5.816,433,5.426,434,5.293,435,2.458,436,6.629,437,1.665,438,5.426,439,4.927,440,4.893,441,4.893,442,4.784,443,4.893,444,4.893,445,2.5,446,4.893,447,3.619,448,1.493,449,2.647,450,4.893,451,5.903,452,4.893,453,2.607,454,5.903,455,2.103,456,4.893,457,4.344,458,4.893,459,4.893,460,4.358,461,3.206,462,4.893,463,4.893,464,4.893,465,4.893,466,4.893,467,4.893,468,3.531,469,3.531,470,3.206,471,3.742,472,6.629,473,7.177,474,3.742,475,2.854,476,4.893,477,3.356,478,3.075,479,4.358,480,5.426,481,4.893,482,4.005,483,4.893,484,4.893]],["title/components/AssetListComponent.html",[0,0.195,192,1.288]],["body/components/AssetListComponent.html",[0,0.296,1,0.966,2,0.196,3,0.203,4,0.8,6,1.017,7,0.982,9,0.129,16,1.364,19,2.127,20,0.949,21,2.807,23,0.842,25,0.007,30,0.97,31,2.165,32,1.915,35,1.341,37,0.392,38,0.897,40,1.374,43,1.069,44,1.554,48,1.111,49,1.038,51,2.618,52,3.238,60,0.701,65,0.197,69,0.791,70,1.292,71,1.117,75,1.241,77,1.315,79,1.364,80,1.532,81,1.032,82,1.824,89,1.388,91,0.961,92,0.962,93,0.745,108,1.425,110,1.455,113,1.364,115,0.949,118,0.687,121,2.22,128,4.77,137,0.329,148,0.123,149,0.134,177,0.698,178,1.462,179,1.131,181,1.901,182,1.017,183,1.017,184,0.933,185,1.758,186,0.933,187,0.982,188,1.657,189,0.966,190,0.949,191,2.221,192,1.836,193,1.838,194,1.935,195,0.982,196,1.646,197,2.277,198,0.982,199,0.982,200,1.017,201,0.966,202,1.488,203,0.982,204,1.017,205,0.966,206,1.017,207,0.949,208,0.949,209,1.551,210,1.758,211,0.949,212,0.966,213,0.966,214,0.933,215,1.017,216,0.982,217,2.058,218,0.982,219,0.966,220,0.982,221,0.982,222,0.982,223,0.966,224,1.017,225,0.966,226,0.982,227,1.017,228,0.966,229,1.017,230,0.966,231,0.933,232,1.271,233,1.017,234,0.966,235,1.017,236,0.949,237,0.966,238,1.017,239,0.966,240,1.017,241,1.296,242,1.017,243,0.966,244,1.532,245,1.017,246,0.949,247,1.017,248,0.966,249,1.017,250,0.933,251,1.017,252,0.966,253,0.933,254,0.966,255,0.901,256,1.017,257,0.966,258,1.017,259,1.017,260,0.966,261,1.017,262,0.966,263,1.017,264,0.933,265,1.017,266,0.949,267,0.966,268,1.017,269,0.966,270,0.982,271,1.017,272,0.949,273,0.966,274,1.98,275,0.966,276,0.982,277,0.842,278,0.982,279,2.46,280,0.966,281,0.982,282,0.982,283,0.982,284,1.017,285,0.949,286,0.966,287,1.017,288,0.966,289,0.982,290,0.966,291,1.017,292,0.966,293,1.017,294,0.982,295,0.901,296,0.966,297,1.017,298,0.966,299,1.017,300,0.966,301,1.017,302,0.966,303,0.917,304,0.933,305,1.017,306,0.949,307,1.017,308,0.949,309,1.017,310,0.949,311,1.017,312,0.949,313,1.017,314,0.949,315,1,316,1.017,317,0.949,318,1,319,1.017,320,0.004,321,0.004,346,1.211,347,3.016,349,3.458,354,1.132,359,3.565,363,1.054,428,2.887,455,1.624,461,2.476,485,5.524,486,4.92,487,3.778,488,4.92,489,4.174,490,3.565,491,3.62,492,6.53,493,3.358,494,5.524,495,3.088,496,6.536,497,2.873,498,5.524,499,2.172,500,4.224,501,4.92,502,3.364,503,1.368,504,3.364,505,1.79,506,3.778,507,3.778,508,3.778,509,2,510,3.778,511,3.092,512,2.13,513,2.889,514,1.838,515,3.778,516,2,517,3.364,518,3.778,519,1.703,520,1.745,521,3.778,522,3.778,523,3.778,524,4.48,525,3.364,526,3.778,527,2.476,528,3.778,529,3.778,530,3.778,531,3.778,532,1.745,533,3.092,534,3.778,535,3.778,536,3.778,537,2.203,538,2.13,539,3.778,540,3.778,541,2.889,542,3.62,543,3.778,544,3.778,545,4.224,546,3.778,547,2.476,548,2.203,549,5.524,550,3.987]],["title/components/AssetgroupSelectComponent.html",[0,0.195,189,1.288]],["body/components/AssetgroupSelectComponent.html",[0,0.309,1,1.076,2,0.219,3,0.226,4,0.892,6,1.134,7,1.095,9,0.143,16,1.475,20,1.058,21,2.984,23,0.939,25,0.007,31,2.173,32,1.923,35,1.45,37,0.437,38,0.701,40,1.694,43,0.689,44,1.351,49,0.863,52,3.405,65,0.213,69,0.743,70,1.495,71,1.06,76,0.778,81,0.544,82,1.005,91,0.619,92,0.943,93,0.41,113,1.475,115,1.058,118,0.864,137,0.367,148,0.137,149,0.15,177,0.778,178,1.581,179,1.223,181,1.999,182,1.134,183,1.134,184,1.04,185,1.869,186,1.04,187,1.095,188,0.971,189,1.931,190,2.324,191,2.295,192,1.076,193,1.778,194,2.034,195,1.095,196,1.454,197,2.345,198,1.095,199,1.095,200,1.134,201,1.076,202,1.609,203,1.095,204,1.134,205,1.076,206,1.134,207,1.058,208,1.058,209,1.602,210,1.869,211,1.058,212,1.076,213,1.076,214,1.04,215,1.134,216,1.095,217,2.148,218,1.095,219,1.076,220,1.095,221,1.095,222,1.095,223,1.076,224,1.134,225,1.076,226,1.095,227,1.134,228,1.076,229,1.134,230,1.076,231,1.04,232,1.612,233,1.134,234,1.076,235,1.134,236,1.058,237,1.076,238,1.134,239,1.076,240,1.134,241,0.988,242,1.134,243,1.076,244,1.629,245,1.134,246,1.058,247,1.134,248,1.076,249,1.134,250,1.04,251,1.134,252,1.076,253,1.04,254,1.076,255,1.005,256,1.134,257,1.076,258,1.134,259,1.134,260,1.076,261,1.134,262,1.076,263,1.134,264,1.04,265,1.134,266,1.058,267,1.076,268,1.134,269,1.076,270,1.095,271,1.134,272,1.058,273,1.076,274,1.941,275,1.076,276,1.095,277,0.939,278,1.095,279,1.095,280,1.076,281,1.095,282,1.095,283,1.095,284,1.134,285,1.058,286,1.076,287,1.134,288,1.076,289,1.095,290,1.076,291,1.134,292,1.076,293,1.134,294,1.095,295,1.005,296,1.076,297,1.134,298,1.076,299,1.134,300,1.076,301,1.134,302,1.076,303,1.022,304,1.04,305,1.134,306,1.058,307,1.134,308,1.058,309,1.134,310,1.058,311,1.134,312,1.058,313,1.134,314,1.058,315,1.114,316,1.134,317,1.058,318,1.114,319,1.134,320,0.004,321,0.004,346,1.656,358,1.182,435,2.305,448,1.285,449,2.482,551,8.981,552,7.998,553,3.75,554,5.32,555,5.71,556,4.549,557,6.942,558,3.987,559,4.363,560,5.682,561,4.211,562,5.32,563,4.211,564,4.211,565,4.211,566,4.211,567,3.75,568,3.75,569,3.75,570,3.039,571,1.946,572,1.437,573,2.547,574,2.76,575,4.211,576,4.211,577,4.89]],["title/guards/AuthGuard.html",[578,4.123,579,4.123]],["body/guards/AuthGuard.html",[2,0.32,3,0.331,9,0.209,11,0.708,16,1.519,25,0.007,30,1.08,37,0.639,38,0.722,39,2.528,49,1.112,60,1.065,61,2.527,65,0.322,69,0.671,71,0.921,76,1.137,78,5.279,81,1.085,91,0.905,92,0.666,93,0.6,131,2.527,137,0.536,139,1.911,148,0.2,149,0.219,253,1.519,320,0.005,321,0.005,344,2.527,358,1.218,412,3.697,413,3.359,414,3.796,417,2.773,435,2.348,437,1.933,490,4.202,509,4.659,520,2.842,578,6.874,579,6.299,580,8.398,581,6.152,582,3.647,583,5.958,584,4.339,585,3.28,586,5.284,587,4.837,588,3.647,589,6.539,590,9.242,591,3.88,592,4.281,593,6.152,594,6.152,595,4.585,596,3.589,597,4.804,598,3.163,599,5.479,600,4.22,601,1.443,602,2.184,603,2.42,604,6.152,605,5.036,606,6.152,607,6.152,608,6.152,609,7.696,610,6.152,611,6.152,612,5.479,613,6.152,614,6.152,615,6.152]],["title/modules/AuthModule.html",[322,1.085,616,3.636]],["body/modules/AuthModule.html",[0,0.292,2,0.31,3,0.32,9,0.203,11,0.686,24,2.435,25,0.007,63,1.996,65,0.345,81,0.77,137,0.519,138,2.395,139,1.852,146,3.121,148,0.291,149,0.212,177,1.101,250,2.393,269,2.477,270,1.55,286,2.477,320,0.005,321,0.005,322,1.874,324,2.448,329,3.169,330,2.158,331,1.996,334,2.625,428,2.395,499,2.967,532,2.753,579,6.175,616,7.143,617,5.308,618,5.308,619,5.308,620,5.308,621,5.308,622,5.347,623,7.504,624,5.544,625,5.308,626,5.202,627,3.485,628,3.575,629,2.686,630,5.769,631,5.974,632,5.175,633,6.718,634,4.557,635,5.308,636,5.96,637,4.557,638,5.308,639,5.308,640,5.96,641,5.96,642,5.96,643,5.96,644,5.96]],["title/injectables/AuthService.html",[437,1.266,624,3.046]],["body/injectables/AuthService.html",[2,0.317,3,0.18,9,0.114,11,0.386,24,2.459,25,0.007,30,1.068,32,0.967,37,0.348,42,3.65,43,1.109,44,1.589,49,1.305,50,2.677,60,0.969,65,0.241,69,0.666,70,1.894,71,1.061,75,1.102,77,1.76,79,1.674,80,1.916,81,1.277,84,3.178,91,1.273,92,0.937,93,0.893,108,1.265,118,0.987,121,2.723,126,1.661,137,0.292,147,1.225,148,0.109,149,0.119,188,2.241,253,1.796,270,2.124,274,1.357,277,1.127,289,1.891,320,0.005,321,0.003,330,1.831,354,2.03,358,0.664,406,4.989,410,5.517,412,2.557,414,3.14,417,1.512,437,1.529,439,3.314,453,1.989,455,3.51,477,5.443,489,4.174,499,3.12,503,2.454,505,3.212,516,4.324,532,1.549,583,3.178,595,2.761,602,1.19,603,1.319,624,3.058,626,2.108,645,3.354,646,3.867,647,3.314,648,5.934,649,4.139,650,3.826,651,4.655,652,5.421,653,4.139,654,5.517,655,4.139,656,3.65,657,5.548,658,2.949,659,4.503,660,4.503,661,4.503,662,5.057,663,4.503,664,5.057,665,5.057,666,4.503,667,6.777,668,6.777,669,5.057,670,5.057,671,2.987,672,3.354,673,4.503,674,5.057,675,3.354,676,6.068,677,6.013,678,4.503,679,3.354,680,5.057,681,3.354,682,1.907,683,6.036,684,5.057,685,7.443,686,3.006,687,3.354,688,5.057,689,3.354,690,4.26,691,2.745,692,3.354,693,6.808,694,5.057,695,3.354,696,3.354,697,5.057,698,3.354,699,5.057,700,3.354,701,2.851,702,2.987,703,3.354,704,2.198,705,2.198,706,1.632,707,2.108,708,6.777,709,6.777,710,5.057,711,5.057,712,5.057,713,6.036,714,5.057,715,3.354,716,5.057,717,3.354,718,6.087,719,5.183,720,3.354,721,3.354,722,4.503,723,3.354,724,2.745,725,2.987,726,3.354,727,2.108,728,3.354,729,3.354,730,3.354,731,3.354,732,3.354,733,3.354,734,3.354,735,5.057,736,2.987,737,5.057,738,3.354,739,3.058,740,3.354,741,3.058,742,3.314,743,3.354,744,5.057,745,5.057,746,3.354,747,3.354,748,3.354,749,4.139,750,5.057,751,3.354,752,5.057,753,3.65,754,5.057,755,5.057,756,3.469,757,5.057,758,5.057,759,5.057,760,5.057,761,3.354,762,5.057,763,3.354,764,3.354,765,3.354,766,3.354,767,3.354,768,3.354,769,3.354,770,3.354,771,3.354,772,2.565,773,2.987,774,2.028,775,3.354]],["title/modules/CalendarModule.html",[322,1.085,776,3.301]],["body/modules/CalendarModule.html",[0,0.283,2,0.295,3,0.304,9,0.193,11,0.652,24,2.772,25,0.007,39,2.399,49,0.818,63,1.897,65,0.332,69,0.704,71,0.678,81,0.944,91,0.833,92,0.613,93,0.552,137,0.494,146,3.047,147,1.14,148,0.287,149,0.202,177,1.047,199,2.502,203,2.502,226,2.502,262,2.459,320,0.005,321,0.005,322,1.839,324,2.327,329,3.067,330,2.051,331,1.897,334,2.541,499,2.872,628,3.46,629,2.553,630,6.18,650,5.686,776,6.469,777,5.044,778,5.044,779,5.044,780,7.357,781,5.664,782,4.416,783,5.27,784,5.044,785,7.302,786,4.259,787,5.664,788,4.636,789,5.664,790,5.664,791,5.664,792,5.664,793,5.664,794,5.664,795,5.977,796,5.664,797,5.977,798,5.664,799,5.977,800,5.044,801,5.044,802,5.664,803,3.304,804,2.912,805,5.044,806,5.664,807,5.664,808,5.664]],["title/classes/Collection.html",[149,0.179,809,3.166]],["body/classes/Collection.html",[2,0.174,3,0.18,8,3.24,9,0.114,11,0.385,25,0.007,30,1.654,37,0.898,38,0.592,39,2.681,43,1.393,44,1.485,48,2.902,49,0.729,65,0.119,69,0.793,71,1.08,76,1.342,79,1.671,80,2.173,81,1.222,82,1.733,89,1.267,91,1.272,92,0.936,93,0.864,118,1.059,126,1.098,147,1.462,148,0.108,149,0.258,164,1.484,196,1.066,232,0.65,320,0.003,321,0.003,331,1.119,346,2.118,358,0.662,363,2.411,426,1.186,445,2.989,448,2.894,455,2.168,491,3.981,495,3.657,512,3.815,520,3.126,538,3.815,572,2.606,595,3.694,597,4.646,598,1.719,599,2.977,658,3.543,682,3.566,701,1.885,809,5.944,810,3.343,811,6.075,812,5.044,813,5.044,814,5.044,815,6.766,816,6.026,817,3.817,818,5.044,819,5.044,820,3.543,821,5.044,822,5.044,823,4.129,824,6.075,825,3.543,826,3.124,827,3.343,828,3.306,829,8.249,830,3.343,831,5.044,832,5.044,833,6.009,834,3.343,835,3.694,836,5.044,837,5.044,838,3.343,839,5.044,840,3.857,841,3.17,842,5.044,843,3.343,844,5.044,845,5.044,846,3.343,847,5.044,848,5.044,849,3.343,850,3.343,851,2.671,852,5.044,853,3.343,854,5.044,855,3.343,856,5.044,857,5.044,858,3.343,859,5.044,860,3.343,861,3.343,862,3.343,863,3.343,864,3.343,865,3.343,866,3.343,867,3.343,868,3.343,869,3.292,870,3.343,871,3.343,872,3.343,873,2.101,874,5.194,875,3.46,876,6.075,877,5.044,878,5.044,879,3.343,880,1.77,881,3.343,882,3.343,883,6.766,884,7.262,885,6.075,886,7.926,887,3.343,888,3.343,889,3.343,890,3.343,891,2.977,892,3.343,893,3.343,894,3.343,895,3.343]],["title/classes/Config.html",[149,0.179,354,1.509]],["body/classes/Config.html",[2,0.318,3,0.329,9,0.208,11,0.704,25,0.007,37,0.635,38,1.146,43,1.001,44,1.629,46,1.96,49,1.333,60,0.776,61,3.607,69,0.765,70,1.853,71,0.918,80,2.165,81,1.169,91,0.9,92,0.662,93,0.816,108,2.891,118,0.761,148,0.198,149,0.298,320,0.005,321,0.005,354,2.989,381,3.567,455,2.629,571,2.825,588,3.633,603,3.294,686,3.629,786,4.472,896,6.116,897,4.958,898,6.116,899,6.116,900,6.116,901,6.828,902,7.667,903,4.272,904,7.667,905,6.828,906,7.667,907,6.276,908,4.186,909,4.008,910,3.144,911,6.116,912,6.116,913,6.116,914,7.667,915,8.375,916,6.116]],["title/components/CrudComponent.html",[0,0.195,201,1.288]],["body/components/CrudComponent.html",[0,0.265,1,0.746,2,0.152,3,0.157,4,1.447,6,0.786,7,0.759,8,1.057,9,0.099,11,0.336,16,1.123,20,0.733,21,2.4,23,0.651,25,0.007,30,1.27,31,2.143,32,1.893,35,1.104,37,0.303,38,0.655,40,1.445,43,0.744,44,1.711,46,1.849,48,2.299,49,1.185,52,2.841,60,0.577,63,1.522,65,0.306,69,0.75,70,1.352,71,1.071,76,0.84,80,1.067,81,1.156,82,1.085,89,1.142,91,1.005,92,0.943,93,0.8,108,3.152,110,2.63,113,1.557,115,0.733,117,1.995,118,0.784,136,1.316,137,0.254,139,1.958,147,0.588,148,0.095,149,0.104,164,1.643,177,0.54,178,1.478,179,0.931,180,1.226,181,1.668,182,0.786,183,0.786,184,0.721,185,1.504,186,0.721,187,0.759,188,0.673,189,0.746,190,0.733,191,2.034,192,0.746,193,1.245,194,1.697,195,0.759,196,1.618,197,2.104,198,0.759,199,0.759,200,0.786,201,1.849,202,1.224,203,0.759,204,0.786,205,0.746,206,0.786,207,0.733,208,0.733,209,1.669,210,1.504,211,0.733,212,0.746,213,0.746,214,0.721,215,0.786,216,0.759,217,1.84,218,1.777,219,0.746,220,0.759,221,1.777,222,0.759,223,0.746,224,0.786,225,0.746,226,0.759,227,0.786,228,0.746,229,0.786,230,0.746,231,0.721,232,1.711,233,0.786,234,0.746,235,0.786,236,0.733,237,0.746,238,0.786,239,0.746,240,0.786,241,1.603,242,0.786,243,0.746,244,1.31,245,0.786,246,0.733,247,0.786,248,0.746,249,0.786,250,0.721,251,0.786,252,0.746,253,0.721,254,0.746,255,0.697,256,0.786,257,0.746,258,0.786,259,0.786,260,0.746,261,0.786,262,0.746,263,0.786,264,0.721,265,0.786,266,0.733,267,0.746,268,0.786,269,0.746,270,0.759,271,0.786,272,0.733,273,0.746,274,1.742,275,0.746,276,0.759,277,0.651,278,0.759,279,0.759,280,0.746,281,0.759,282,0.759,283,0.759,284,0.786,285,0.733,286,0.746,287,0.786,288,0.746,289,0.759,290,0.746,291,0.786,292,0.746,293,0.786,294,0.759,295,0.697,296,0.746,297,0.786,298,0.746,299,0.786,300,0.746,301,0.786,302,0.746,303,0.709,304,0.721,305,0.786,306,0.733,307,0.786,308,0.733,309,0.786,310,0.733,311,0.786,312,0.733,313,0.786,314,0.733,315,0.772,316,0.786,317,0.733,318,0.772,319,0.786,320,0.003,321,0.003,331,1.522,344,1.199,346,0.996,347,3.441,350,0.844,354,1.673,358,0.578,359,3.049,363,1.268,412,1.91,413,1.594,414,2.589,417,1.316,428,2.244,434,4.294,435,2.084,448,1.387,449,2.482,453,1.788,475,1.703,490,4.124,497,3.184,532,2.1,537,1.703,541,3.477,545,5.533,548,1.703,550,2.107,585,1.057,591,3.791,592,3.067,596,1.703,602,1.036,603,3.157,624,3.812,626,3.51,682,2.377,701,1.646,706,1.42,727,1.835,897,2.407,917,2.919,918,3.477,919,2.407,920,3.722,921,3.477,922,4.547,923,3.049,924,3.51,925,3.049,926,4.049,927,6.303,928,5.564,929,4.049,930,4.547,931,4.547,932,4.547,933,3.51,934,4.568,935,3.66,936,3.677,937,3.148,938,2.022,939,2.427,940,4.547,941,3.985,942,1.582,943,5.614,944,2.652,945,2.919,946,2.919,947,2.919,948,2.673,949,3.95,950,2.919,951,2.919,952,4.049,953,2.919,954,2.652,955,4.547,956,2.919,957,2.98,958,4.547,959,2.919,960,3.151,961,2.652,962,2.919,963,4.547,964,2.919,965,4.547,966,2.919,967,2.1,968,2.987,969,4.547,970,2.919,971,3.282,972,2.919,973,2.919,974,2.919,975,1.546,976,2.6,977,2.6,978,2.39,979,1.913,980,2.003,981,2.919,982,2.919,983,2.919,984,2.107,985,2.919,986,4.973,987,2.6,988,2.232,989,2.6,990,2.919,991,2.6,992,2.919,993,2.919,994,2.919,995,2.919,996,2.919,997,2.919,998,2.919,999,2.919,1000,2.919,1001,2.6,1002,2.6,1003,2.919,1004,2.919,1005,2.749,1006,2.155,1007,4.03,1008,2.919,1009,1.765,1010,3.119,1011,2.919,1012,1.835,1013,2.003,1014,2.003,1015,2.919,1016,4.049]],["title/interfaces/CrudConfig.html",[338,1.43,941,2.938]],["body/interfaces/CrudConfig.html",[0,0.312,2,0.202,3,0.208,9,0.225,11,0.446,19,2.168,25,0.007,30,1.687,32,1.077,37,0.403,38,0.661,43,0.922,49,1.23,58,4.305,60,1.08,61,2.313,65,0.236,69,0.842,70,1.843,71,0.674,75,2.798,79,1.796,93,0.97,118,1.002,139,1.205,148,0.126,164,1.656,190,1.414,193,1.621,196,1.495,209,1.751,232,1.788,241,1.706,264,1.796,277,1.935,303,1.956,320,0.004,321,0.004,338,1.598,346,2.168,349,3.51,350,1.121,355,3.385,428,3.238,434,5.065,442,4.064,445,3.039,461,3.69,495,2.42,497,3.546,509,3.851,514,2.739,519,2.538,527,3.69,558,4.028,582,2.668,588,2.668,591,3.723,676,6.162,682,2.913,683,5.014,739,4.399,741,4.008,742,4.344,786,3.284,817,2.814,851,2.981,910,2.895,918,4.305,925,3.074,941,4.243,942,2.531,967,4.246,1006,2.668,1017,3.877,1018,2.541,1019,5.63,1020,7.274,1021,7.274,1022,7.274,1023,7.274,1024,5.816,1025,7.274,1026,7.274,1027,6.478,1028,7.274,1029,7.274,1030,5.843,1031,7.274,1032,7.274,1033,7.274,1034,7.274,1035,6.478,1036,7.274,1037,7.274,1038,4.305,1039,4.873,1040,4.608,1041,5.63,1042,4.99,1043,2.668,1044,5.63,1045,4.608,1046,3.405,1047,4.305,1048,3.174,1049,5.63,1050,4.305,1051,3.405,1052,4.608,1053,2.895,1054,6.478,1055,4.99,1056,4.767,1057,7.274,1058,3.862,1059,3.284,1060,5.014,1061,3.074,1062,3.405,1063,6.478,1064,3.284,1065,4.608,1066,5.63,1067,3.284,1068,5.63,1069,3.877]],["title/injectables/CrudService.html",[437,1.266,1070,3.046]],["body/injectables/CrudService.html",[0,0.222,2,0.207,3,0.214,9,0.135,11,0.457,25,0.007,30,1.292,37,0.413,38,0.954,43,1.585,44,1.308,46,1.466,49,0.971,60,0.989,65,0.278,66,2.866,67,2.948,69,0.791,70,1.812,71,1.045,75,2.951,76,1.502,80,2.215,81,1.249,84,2.499,89,2.319,91,1.262,92,0.929,93,0.836,108,3.234,117,1.258,118,0.495,119,2.171,121,2.957,131,2.355,137,0.347,147,1.154,148,0.129,149,0.142,164,1.17,209,1.832,274,1.641,277,1.947,320,0.004,321,0.005,339,3.344,342,1.935,346,0.871,358,0.787,405,3.604,412,3.092,413,2.171,414,3.023,417,1.792,434,3.604,437,1.96,447,4.438,455,1.709,493,3.784,495,3.901,499,2.894,537,3.344,538,4.399,571,1.837,587,3.604,598,2.045,602,1.411,627,2.649,686,3.676,727,4.226,741,2.405,742,2.606,817,3.361,851,2.105,880,3.56,903,3.581,925,3.13,948,2.719,1043,2.717,1051,4.718,1055,2.728,1056,2.606,1070,3.467,1071,3.976,1072,3.757,1073,4.138,1074,3.467,1075,2.789,1076,3.933,1077,5.488,1078,5.106,1079,5.106,1080,5.106,1081,3.976,1082,4.693,1083,3.976,1084,3.233,1085,4.693,1086,3.976,1087,3.604,1088,5.734,1089,3.976,1090,5.734,1091,5.885,1092,3.976,1093,4.693,1094,3.976,1095,4.138,1096,4.407,1097,5.734,1098,3.976,1099,3.467,1100,5.106,1101,5.734,1102,6.724,1103,3.976,1104,3.976,1105,2.606,1106,2.87,1107,5.734,1108,3.976,1109,3.976,1110,3.976,1111,3.255,1112,3.976,1113,2.87,1114,3.255,1115,3.976,1116,3.922,1117,3.976,1118,3.976,1119,3.976,1120,3.255,1121,3.976,1122,3.541,1123,3.976,1124,3.976,1125,3.976,1126,6.724,1127,5.504,1128,3.255,1129,3.255,1130,3.255,1131,3.976,1132,5.734,1133,4.693,1134,2.405,1135,3.976,1136,5.142,1137,6.724,1138,3.255,1139,3.255,1140,3.255,1141,3.255,1142,5.504,1143,2.319,1144,3.255,1145,3.976,1146,3.541,1147,3.976]],["title/modules/DataModule.html",[322,1.085,1148,3.455]],["body/modules/DataModule.html",[2,0.219,3,0.226,9,0.143,24,2.437,25,0.007,49,0.608,63,1.409,65,0.348,71,0.504,81,0.772,91,0.619,92,0.456,93,0.41,108,2.251,137,0.367,138,1.691,139,1.307,146,2.617,147,0.847,148,0.259,149,0.15,177,0.778,186,2.15,196,1.325,201,2.344,207,2.187,208,2.187,209,1.724,216,2.385,218,2.385,219,2.381,220,2.422,221,2.385,222,2.422,308,2.304,310,2.304,320,0.004,321,0.004,322,1.286,324,1.728,329,2.508,330,1.523,331,1.409,333,3.366,334,2.078,358,0.833,399,3.218,548,2.454,596,2.454,616,6.62,622,5.35,628,2.829,629,1.896,630,5.306,632,4.095,634,3.218,648,5.682,650,3.752,656,4.309,706,2.904,783,4.309,908,2.297,936,4.832,976,3.747,978,4.887,979,3.912,980,2.886,1070,5.009,1148,6.885,1149,3.747,1150,3.747,1151,3.747,1152,3.747,1153,3.747,1154,6.62,1155,6.292,1156,6.011,1157,6.334,1158,5.009,1159,4.208,1160,3.747,1161,5.97,1162,4.208,1163,5.317,1164,5.317,1165,3.037,1166,3.037,1167,4.208,1168,4.208,1169,3.747,1170,4.208,1171,3.61,1172,3.912,1173,3.218,1174,3.747,1175,3.037,1176,5.97,1177,4.566,1178,4.208,1179,4.208,1180,3.037,1181,3.747,1182,4.208,1183,3.444,1184,4.208,1185,4.208]],["title/components/DatetimeComponent.html",[0,0.195,205,1.288]],["body/components/DatetimeComponent.html",[0,0.321,1,0.974,2,0.198,3,0.205,4,0.807,6,1.026,7,0.991,8,1.38,9,0.13,11,0.438,16,1.978,17,5.434,20,0.958,23,0.85,24,2.123,25,0.007,26,3.583,27,3.035,28,3.583,29,3.035,30,1.266,31,2.166,32,1.916,35,1.35,37,0.396,38,0.652,40,1.68,41,4.535,43,1.181,44,1.277,45,2.705,49,0.803,53,4.728,54,5.035,57,3.362,60,0.705,65,0.257,69,0.698,70,1.299,71,1.051,76,1.028,80,1.304,81,0.848,82,1.566,86,3.495,89,1.813,91,0.818,92,0.936,93,0.542,94,3.495,104,3.495,108,2.097,110,1.467,113,1.373,115,0.958,117,1.76,118,0.954,119,3.035,127,4.944,136,1.718,137,0.332,138,1.532,148,0.124,149,0.136,173,2.396,177,0.704,178,1.471,179,1.138,180,1.601,181,1.909,182,1.026,183,1.026,184,0.941,185,1.767,186,0.941,187,0.991,188,0.879,189,0.974,190,0.958,191,2.227,192,0.974,193,1.463,194,1.943,195,0.991,196,1.406,197,2.283,198,0.991,199,1.995,200,1.026,201,0.974,202,1.497,203,0.991,204,1.026,205,2.047,206,1.026,207,0.958,208,0.958,209,1.555,210,1.767,211,0.958,212,0.974,213,0.974,214,0.941,215,1.026,216,0.991,217,2.066,218,0.991,219,0.974,220,0.991,221,0.991,222,0.991,223,0.974,224,1.026,225,0.974,226,0.991,227,1.026,228,0.974,229,1.026,230,0.974,231,0.941,232,1.404,233,1.026,234,0.974,235,1.026,236,0.958,237,0.974,238,1.026,239,0.974,240,1.026,241,0.894,242,1.026,243,0.974,244,1.54,245,1.026,246,0.958,247,1.026,248,0.974,249,1.026,250,0.941,251,1.026,252,0.974,253,0.941,254,0.974,255,0.91,256,1.026,257,0.974,258,1.026,259,1.026,260,0.974,261,1.026,262,0.974,263,1.026,264,0.941,265,1.026,266,0.958,267,0.974,268,1.026,269,0.974,270,0.991,271,1.026,272,0.958,273,0.974,274,1.89,275,0.974,276,0.991,277,0.85,278,0.991,279,0.991,280,0.974,281,0.991,282,0.991,283,0.991,284,1.026,285,0.958,286,0.974,287,1.026,288,0.974,289,0.991,290,0.974,291,1.026,292,0.974,293,1.026,294,0.991,295,0.91,296,0.974,297,1.026,298,0.974,299,1.026,300,0.974,301,1.026,302,0.974,303,0.925,304,0.941,305,1.026,306,0.958,307,1.026,308,0.958,309,1.026,310,0.958,311,1.026,312,0.958,313,1.026,314,0.958,315,1.009,316,1.026,317,0.958,318,1.009,319,1.026,320,0.004,321,0.004,346,1.218,401,2.944,558,3.835,682,2.097,782,4.844,803,5.25,804,2.859,1009,3.362,1186,3.811,1187,5.208,1188,4.952,1189,5.56,1190,7.215,1191,6.564,1192,2.838,1193,3.362,1194,4.952,1195,3.811,1196,3.811,1197,3.811,1198,5.56,1199,3.811,1200,3.811,1201,3.811,1202,3.811,1203,5.56,1204,3.811,1205,3.811,1206,4.013,1207,3.811,1208,4.551,1209,5.56,1210,3.495,1211,2.751,1212,2.149,1213,3.811]],["title/pipes/DatetimePipe.html",[780,3.852,1214,2.59]],["body/pipes/DatetimePipe.html",[2,0.326,3,0.337,9,0.213,11,0.722,16,1.549,23,1.398,25,0.007,30,1.101,38,0.914,43,1.557,48,2.607,49,0.906,60,0.988,65,0.302,69,0.679,70,1.944,71,0.751,77,2.711,80,1.827,81,1.145,91,0.923,92,0.917,93,0.611,118,0.78,131,3.2,137,0.547,147,1.263,148,0.204,149,0.223,320,0.005,321,0.005,437,1.576,455,2.696,493,4.005,603,3.063,682,2.937,780,5.957,803,4.942,828,5.105,938,2.271,939,2.999,1187,5.622,1210,4.896,1211,4.527,1214,4.356,1215,6.272,1216,5.622,1217,5.343,1218,4.543,1219,6.272,1220,6.968,1221,8.114,1222,6.272,1223,7.789,1224,5.622,1225,3.942,1226,6.272,1227,6.272,1228,5.586,1229,6.272,1230,6.272,1231,6.272,1232,6.272,1233,6.272,1234,6.272]],["title/interfaces/Day.html",[338,1.43,1208,4.123]],["body/interfaces/Day.html",[0,0.2,2,0.18,3,0.185,9,0.117,11,0.397,16,0.853,21,2.221,22,2.449,25,0.007,30,1.356,31,0.744,32,0.66,35,0.838,37,0.891,38,0.606,39,1.698,40,1.641,44,1.338,52,1.556,61,2.123,65,0.262,69,0.802,70,1.782,76,1.361,79,1.698,80,1.813,81,1.182,82,1.641,89,2.013,93,0.67,124,2.014,126,2.819,137,0.301,147,1.482,148,0.168,149,0.285,164,1.521,167,3.28,232,1.603,262,0.883,277,1.152,320,0.003,321,0.003,338,1.952,346,1.954,358,0.683,363,1.442,379,4.159,435,1.89,437,0.867,445,2.777,449,2.419,491,4.06,495,2.221,512,2.914,533,2.826,582,1.636,597,4.02,598,1.775,682,1.949,686,2.033,782,3.746,788,6.896,800,3.075,801,5.517,803,5.202,805,7.943,841,2.17,869,3.014,910,2.657,919,1.828,938,1.25,939,1.99,942,1.799,948,1.276,961,2.014,968,3.259,1038,2.64,1143,2.014,1165,5.783,1188,4.603,1192,2.033,1193,2.088,1194,7.757,1208,7.983,1210,5.179,1211,2.492,1225,2.17,1235,3.453,1236,7.364,1237,3.898,1238,7.364,1239,5.783,1240,8.424,1241,3.952,1242,3.73,1243,8.821,1244,6.127,1245,2.826,1246,2.369,1247,3.453,1248,3.075,1249,3.453,1250,5.629,1251,3.899,1252,5.168,1253,2.492,1254,3.453,1255,5.168,1256,3.453,1257,7.729,1258,1.387,1259,3.453,1260,3.453,1261,3.453,1262,2.826,1263,3.453,1264,2.014,1265,3.453,1266,3.453,1267,3.453,1268,3.453,1269,3.453,1270,3.453,1271,6.877,1272,3.453,1273,3.453,1274,3.453,1275,3.453,1276,3.453,1277,3.453,1278,3.453,1279,3.453,1280,3.453,1281,3.453,1282,7.729,1283,5.168,1284,6.194,1285,5.168,1286,6.194,1287,5.168,1288,3.453,1289,3.453,1290,3.453,1291,3.453,1292,3.453,1293,7.364,1294,3.453,1295,3.453,1296,3.453,1297,3.453,1298,3.453,1299,6.877,1300,3.453,1301,5.168,1302,5.168,1303,5.071,1304,3.453,1305,3.453,1306,3.453,1307,3.453,1308,3.453,1309,5.168,1310,3.453,1311,3.453,1312,5.168,1313,3.453,1314,3.453,1315,3.453,1316,3.453,1317,3.453,1318,3.453,1319,3.453,1320,5.168,1321,3.453,1322,3.453,1323,3.453,1324,3.453,1325,3.453,1326,3.453,1327,3.453,1328,3.453,1329,3.453,1330,3.453,1331,6.194,1332,3.453,1333,6.194,1334,3.453,1335,3.453,1336,3.453,1337,3.453,1338,5.168,1339,3.453,1340,3.453,1341,3.453,1342,3.453,1343,3.453,1344,3.453,1345,2.263,1346,3.453,1347,3.453,1348,3.453,1349,5.168,1350,3.453,1351,3.453,1352,3.453,1353,3.453,1354,3.453,1355,3.453,1356,3.453,1357,3.453,1358,3.453,1359,3.453,1360,3.453,1361,3.453,1362,3.453,1363,3.453,1364,3.453,1365,3.453,1366,2.64,1367,3.453,1368,3.453,1369,3.453,1370,3.453]],["title/components/DefaultEntryInputComponent.html",[0,0.195,207,1.266]],["body/components/DefaultEntryInputComponent.html",[0,0.332,1,1.098,2,0.223,3,0.231,4,1.702,6,1.157,7,1.117,9,0.146,11,0.494,19,2.333,20,2.199,23,0.958,25,0.007,31,2.173,32,1.923,35,1.471,37,0.446,38,0.711,40,1.702,44,1.755,45,3.708,46,2.237,47,3.276,48,2.453,60,0.768,65,0.25,69,0.763,71,0.998,91,0.632,92,0.948,93,0.419,113,1.496,115,1.079,117,1.917,118,1.037,127,3.534,128,3.919,129,3.285,130,3.285,131,1.764,132,3.663,133,3.285,134,3.285,135,2.506,137,0.374,139,1.335,148,0.139,149,0.153,177,0.794,178,1.603,179,1.24,181,2.017,182,1.157,183,1.157,184,1.061,185,1.89,186,1.061,187,1.117,188,0.991,189,1.098,190,1.079,191,2.308,192,1.098,193,1.564,194,2.052,195,1.117,196,1.464,197,2.356,198,1.117,199,1.117,200,1.157,201,1.098,202,1.631,203,1.117,204,1.157,205,1.098,206,1.157,207,1.915,208,1.079,209,1.731,210,1.89,211,1.079,212,1.098,213,1.098,214,1.061,215,1.157,216,1.117,217,2.164,218,1.117,219,1.098,220,1.117,221,1.117,222,1.117,223,1.098,224,1.157,225,1.098,226,1.117,227,1.157,228,1.098,229,1.157,230,1.098,231,1.061,232,1.179,233,1.157,234,1.098,235,1.157,236,1.079,237,1.098,238,1.157,239,1.098,240,1.157,241,1.008,242,1.157,243,1.098,244,1.646,245,1.157,246,1.079,247,1.157,248,1.098,249,1.157,250,1.061,251,1.157,252,1.098,253,1.061,254,1.098,255,1.025,256,1.157,257,1.098,258,1.157,259,1.157,260,1.098,261,1.157,262,1.098,263,1.157,264,1.061,265,1.157,266,1.079,267,1.098,268,1.157,269,1.098,270,1.117,271,1.157,272,1.079,273,1.098,274,1.951,275,1.098,276,1.117,277,0.958,278,1.117,279,1.117,280,1.098,281,1.117,282,1.117,283,1.117,284,1.157,285,1.079,286,1.098,287,1.157,288,1.098,289,1.117,290,1.098,291,1.157,292,1.098,293,1.157,294,1.117,295,1.025,296,1.098,297,1.157,298,1.098,299,1.157,300,1.098,301,1.157,302,1.098,303,1.043,304,1.061,305,1.157,306,1.079,307,1.157,308,1.079,309,1.157,310,1.079,311,1.157,312,1.079,313,1.157,314,1.079,315,1.137,316,1.157,317,1.079,318,1.137,319,1.157,320,0.004,321,0.004,358,0.85,398,5.367,400,3.285,401,3.208,408,3.808,411,4.633,412,3.376,413,2.345,414,3.425,417,1.936,419,1.985,420,3.1,423,3.516,424,4.959,425,3.663,1172,4.599,1241,4.633,1371,4.296,1372,4.296]],["title/components/DefaultEntryOutputComponent.html",[0,0.195,208,1.266]],["body/components/DefaultEntryOutputComponent.html",[0,0.349,1,1.149,2,0.234,3,0.241,4,1.523,6,1.21,7,1.169,9,0.153,11,0.517,20,1.129,23,1.002,25,0.007,31,2.177,32,1.927,35,1.518,37,0.467,38,0.734,40,0.86,46,2.327,48,2.678,65,0.223,69,0.678,71,0.748,92,0.94,113,1.544,115,1.129,118,1.101,137,0.392,148,0.146,149,0.16,177,0.831,178,1.655,179,1.28,181,2.057,182,1.21,183,1.21,184,1.11,185,1.937,186,1.11,187,1.169,188,1.037,189,1.149,190,1.129,191,2.337,192,1.149,193,1.603,194,2.094,195,1.169,196,1.485,197,2.383,198,1.169,199,1.169,200,1.21,201,1.149,202,1.684,203,1.169,204,1.21,205,1.149,206,1.21,207,1.129,208,1.953,209,1.769,210,1.937,211,1.129,212,1.149,213,1.149,214,1.11,215,1.21,216,1.169,217,2.201,218,1.169,219,1.149,220,1.169,221,1.169,222,1.169,223,1.149,224,1.21,225,1.149,226,1.169,227,1.21,228,1.149,229,1.21,230,1.149,231,1.11,232,1.217,233,1.21,234,1.149,235,1.21,236,1.129,237,1.149,238,1.21,239,1.149,240,1.21,241,1.054,242,1.21,243,1.149,244,1.687,245,1.21,246,1.129,247,1.21,248,1.149,249,1.21,250,1.11,251,1.21,252,1.149,253,1.11,254,1.149,255,1.073,256,1.21,257,1.149,258,1.21,259,1.21,260,1.149,261,1.21,262,1.149,263,1.21,264,1.11,265,1.21,266,1.129,267,1.149,268,1.21,269,1.149,270,1.169,271,1.21,272,1.129,273,1.149,274,1.973,275,1.149,276,1.169,277,1.002,278,1.169,279,1.169,280,1.149,281,1.169,282,1.169,283,1.169,284,1.21,285,1.129,286,1.149,287,1.21,288,1.149,289,1.169,290,1.149,291,1.21,292,1.149,293,1.21,294,1.169,295,1.073,296,1.149,297,1.21,298,1.149,299,1.21,300,1.149,301,1.21,302,1.149,303,1.091,304,1.11,305,1.21,306,1.129,307,1.21,308,1.129,309,1.21,310,1.129,311,1.21,312,1.129,313,1.21,314,1.129,315,1.189,316,1.21,317,1.129,318,1.189,319,1.21,320,0.004,321,0.004,350,1.299,398,5.5,401,3.311,408,3.931,423,3.679,424,5.119,425,3.782,435,2.777,707,3.931,1172,4.713,1192,2.459,1241,4.782,1373,4.003,1374,5.569,1375,4.003,1376,4.003,1377,5.569]],["title/components/DefaultInputComponent.html",[0,0.195,20,1.266]],["body/components/DefaultInputComponent.html",[0,0.334,1,1.119,2,0.228,3,0.235,4,1.502,6,1.178,7,1.138,9,0.149,11,0.503,20,1.931,23,0.975,25,0.007,31,2.174,32,1.924,35,1.49,37,0.455,38,0.72,40,1.548,44,1.797,45,4.081,46,2.361,47,3.606,48,2.664,60,0.974,65,0.252,69,0.731,71,0.92,92,0.933,113,1.516,115,1.099,117,2.432,118,0.956,127,4.482,131,2.521,132,4.647,135,3.58,137,0.381,138,1.758,148,0.142,149,0.156,177,0.809,178,1.624,179,1.257,181,2.033,182,1.178,183,1.178,184,1.081,185,1.909,186,1.081,187,1.138,188,1.009,189,1.119,190,1.099,191,2.32,192,1.119,193,1.58,194,2.069,195,1.138,196,1.472,197,2.368,198,1.138,199,1.138,200,1.178,201,1.119,202,1.653,203,1.138,204,1.178,205,1.119,206,1.178,207,1.099,208,1.099,209,1.62,210,1.909,211,1.099,212,1.119,213,1.119,214,1.081,215,1.178,216,1.138,217,2.179,218,1.138,219,1.119,220,1.138,221,1.138,222,1.138,223,1.119,224,1.178,225,1.119,226,1.138,227,1.178,228,1.119,229,1.178,230,1.119,231,1.081,232,1.194,233,1.178,234,1.119,235,1.178,236,1.099,237,1.119,238,1.178,239,1.119,240,1.178,241,1.027,242,1.178,243,1.119,244,1.663,245,1.178,246,1.099,247,1.178,248,1.119,249,1.178,250,1.081,251,1.178,252,1.119,253,1.081,254,1.119,255,1.044,256,1.178,257,1.119,258,1.178,259,1.178,260,1.119,261,1.178,262,1.119,263,1.178,264,1.081,265,1.178,266,1.099,267,1.119,268,1.178,269,1.119,270,1.138,271,1.178,272,1.099,273,1.119,274,1.96,275,1.119,276,1.138,277,0.975,278,1.138,279,1.138,280,1.119,281,1.138,282,1.138,283,1.138,284,1.178,285,1.099,286,1.119,287,1.178,288,1.119,289,1.138,290,1.119,291,1.178,292,1.119,293,1.178,294,1.138,295,1.044,296,1.119,297,1.178,298,1.119,299,1.178,300,1.119,301,1.178,302,1.119,303,1.062,304,1.081,305,1.178,306,1.099,307,1.178,308,1.099,309,1.178,310,1.099,311,1.178,312,1.099,313,1.178,314,1.099,315,1.158,316,1.178,317,1.099,318,1.158,319,1.178,320,0.004,321,0.004,350,1.265,400,3.347,401,3.25,411,4.694,415,3.897,1378,7.207,1379,6.624,1380,5.466,1381,4.376,1382,4.376,1383,4.376,1384,6.138,1385,6.138]],["title/components/DefaultOutputComponent.html",[0,0.195,211,1.266]],["body/components/DefaultOutputComponent.html",[0,0.316,1,1.14,2,0.232,3,0.24,4,1.517,6,1.201,7,1.16,9,0.152,11,0.513,20,1.12,23,0.994,25,0.007,31,2.177,32,1.927,35,1.51,37,0.463,38,0.73,40,1.37,43,1.018,46,2.369,48,2.726,65,0.221,69,0.542,71,0.744,92,0.938,113,1.536,115,1.12,118,1.05,135,3.628,137,0.389,148,0.145,149,0.159,177,0.824,178,1.646,179,1.273,181,2.05,182,1.201,183,1.201,184,1.101,185,1.928,186,1.101,187,1.16,188,1.029,189,1.14,190,1.12,191,2.332,192,1.14,193,1.596,194,2.086,195,1.16,196,1.481,197,2.379,198,1.16,199,1.16,200,1.201,201,1.14,202,1.675,203,1.16,204,1.201,205,1.14,206,1.201,207,1.12,208,1.12,209,1.628,210,1.928,211,1.947,212,1.14,213,1.14,214,1.101,215,1.201,216,1.16,217,2.194,218,1.16,219,1.14,220,1.16,221,1.16,222,1.16,223,1.14,224,1.201,225,1.14,226,1.16,227,1.201,228,1.14,229,1.201,230,1.14,231,1.101,232,1.21,233,1.201,234,1.14,235,1.201,236,1.12,237,1.14,238,1.201,239,1.14,240,1.201,241,1.046,242,1.201,243,1.14,244,1.68,245,1.201,246,1.12,247,1.201,248,1.14,249,1.201,250,1.101,251,1.201,252,1.14,253,1.101,254,1.14,255,1.064,256,1.201,257,1.14,258,1.201,259,1.201,260,1.14,261,1.201,262,1.14,263,1.201,264,1.101,265,1.201,266,1.12,267,1.14,268,1.201,269,1.14,270,1.16,271,1.201,272,1.12,273,1.14,274,1.969,275,1.14,276,1.16,277,0.994,278,1.16,279,1.16,280,1.14,281,1.16,282,1.16,283,1.16,284,1.201,285,1.12,286,1.14,287,1.201,288,1.14,289,1.16,290,1.14,291,1.201,292,1.14,293,1.201,294,1.16,295,1.064,296,1.14,297,1.201,298,1.14,299,1.201,300,1.14,301,1.201,302,1.14,303,1.083,304,1.101,305,1.201,306,1.12,307,1.201,308,1.12,309,1.201,310,1.12,311,1.201,312,1.12,313,1.201,314,1.12,315,1.18,316,1.201,317,1.12,318,1.18,319,1.201,320,0.004,321,0.004,350,1.289,355,2.613,401,3.293,435,2.364,707,3.909,1192,2.446,1373,3.972,1374,5.539,1375,3.972,1376,3.972,1377,8.532,1378,6.378,1386,5.862,1387,6.219,1388,4.46,1389,4.46,1390,7.748,1391,4.266]],["title/directives/DropzoneDirective.html",[179,1.031,306,1.266]],["body/directives/DropzoneDirective.html",[2,0.291,3,0.3,9,0.312,11,0.643,23,1.246,25,0.007,30,1.544,31,1.56,37,0.581,40,1.625,43,0.915,44,1.088,65,0.199,69,0.7,71,1.098,76,1.033,81,1.098,91,0.822,92,0.605,93,0.545,109,3.829,113,2.098,118,0.695,137,0.487,148,0.181,149,0.286,179,1.802,306,1.819,320,0.005,321,0.005,346,1.76,358,1.106,363,2.594,435,2.591,448,2.799,449,2.791,513,5.537,571,3.345,573,4.378,582,4.611,602,1.984,948,3.138,1166,6.842,1303,6.574,1392,5.59,1393,7.24,1394,8.799,1395,6.574,1396,5.796,1397,8.031,1398,5.509,1399,8.494,1400,9.015,1401,4.576,1402,5.59,1403,5.927,1404,5.537,1405,7.24,1406,5.59,1407,5.59,1408,5.59,1409,7.24,1410,3.723,1411,5.263,1412,5.59,1413,5.59,1414,5.258,1415,5.59,1416,5.59,1417,5.59,1418,5.59,1419,4.978,1420,5.59,1421,5.59,1422,8.031,1423,6.574,1424,7.836,1425,5.59,1426,5.59,1427,5.59,1428,5.59,1429,5.59,1430,5.59,1431,5.59]],["title/components/DynamicRackComponent.html",[0,0.195,212,1.288]],["body/components/DynamicRackComponent.html",[0,0.319,1,1.168,2,0.238,3,0.246,4,0.968,6,1.231,7,1.189,9,0.155,11,0.526,20,1.148,23,1.019,24,1.861,25,0.007,31,2.178,32,1.93,35,1.536,40,0.874,46,1.617,60,1.079,65,0.225,69,0.398,71,0.547,75,2.079,77,2.202,91,0.672,92,0.962,93,0.445,113,1.562,115,1.148,117,2.002,118,0.787,137,0.398,148,0.148,149,0.163,177,0.845,178,1.674,179,1.603,181,2.072,182,1.231,183,1.231,184,1.129,185,1.954,186,1.129,187,1.189,188,1.054,189,1.168,190,1.148,191,2.348,192,1.168,193,1.617,194,2.109,195,1.189,196,1.56,197,2.393,198,1.189,199,1.189,200,1.231,201,1.168,202,1.704,203,1.189,204,1.231,205,1.168,206,1.231,207,1.148,208,1.148,209,1.639,210,1.954,211,1.148,212,2.002,213,1.168,214,1.934,215,1.231,216,1.189,217,2.214,218,1.189,219,1.168,220,1.189,221,1.189,222,1.189,223,1.168,224,1.231,225,1.168,226,1.189,227,1.231,228,1.168,229,1.231,230,1.168,231,1.129,232,1.231,233,1.231,234,1.168,235,1.231,236,1.148,237,1.168,238,1.231,239,1.168,240,1.231,241,1.072,242,1.231,243,1.168,244,1.702,245,1.231,246,1.148,247,1.231,248,1.168,249,1.231,250,1.129,251,1.231,252,1.168,253,1.129,254,1.168,255,1.091,256,1.231,257,1.168,258,1.231,259,1.231,260,1.168,261,1.231,262,1.168,263,1.231,264,1.129,265,1.231,266,1.148,267,1.168,268,1.231,269,1.168,270,1.189,271,1.231,272,1.148,273,1.168,274,1.981,275,1.168,276,1.189,277,1.019,278,1.189,279,1.189,280,1.168,281,1.189,282,1.189,283,1.189,284,1.231,285,1.148,286,1.168,287,1.231,288,1.168,289,1.189,290,1.168,291,1.231,292,1.168,293,1.231,294,1.189,295,1.091,296,1.168,297,1.231,298,1.168,299,1.231,300,1.168,301,1.231,302,1.168,303,1.11,304,1.129,305,1.231,306,1.148,307,1.231,308,1.148,309,1.231,310,1.148,311,1.231,312,1.148,313,1.231,314,1.148,315,1.21,316,1.231,317,1.148,318,1.21,319,1.231,320,0.004,321,0.004,358,1.436,602,1.622,942,1.591,968,2.998,1192,2.488,1251,3.35,1432,5.635,1433,5.635,1434,4.571,1435,5.179,1436,6.327,1437,4.071,1438,6.504,1439,4.571,1440,5.179,1441,5.179,1442,5.635,1443,4.571,1444,4.571,1445,4.571]],["title/components/DynamicSlotComponent.html",[0,0.195,213,1.288]],["body/components/DynamicSlotComponent.html",[0,0.347,1,1.054,2,0.214,3,0.222,4,0.873,6,1.11,7,1.072,9,0.14,11,0.474,20,1.036,23,0.919,24,1.731,25,0.007,31,2.171,32,1.924,35,1.429,37,0.428,38,0.691,40,0.789,43,0.675,44,1.145,46,2.103,48,1.731,49,0.85,60,1.098,65,0.209,69,0.755,71,0.896,75,1.933,77,2.048,79,1.453,80,1.381,81,0.761,91,0.866,92,0.954,93,0.574,110,1.588,113,1.453,115,1.036,117,1.862,118,0.984,126,1.933,136,1.858,137,0.359,147,1.381,148,0.134,149,0.147,177,0.762,178,1.557,179,1.532,181,1.98,182,1.11,183,1.11,184,1.018,185,1.848,186,1.018,187,1.072,188,0.951,189,1.054,190,1.036,191,2.28,192,1.054,193,1.53,194,2.015,195,1.072,196,1.52,197,2.332,198,1.072,199,1.072,200,1.11,201,1.054,202,1.585,203,1.072,204,1.11,205,1.054,206,1.11,207,1.036,208,1.036,209,1.592,210,1.848,211,1.036,212,1.054,213,1.913,214,1.954,215,1.11,216,1.072,217,2.131,218,1.072,219,1.054,220,1.072,221,1.072,222,1.072,223,1.054,224,1.11,225,1.054,226,1.072,227,1.11,228,1.054,229,1.11,230,1.054,231,1.018,232,1.145,233,1.11,234,1.054,235,1.11,236,1.036,237,1.054,238,1.11,239,1.054,240,1.11,241,0.967,242,1.11,243,1.054,244,1.61,245,1.11,246,1.036,247,1.11,248,1.054,249,1.11,250,1.018,251,1.11,252,1.054,253,1.018,254,1.054,255,0.984,256,1.11,257,1.054,258,1.11,259,1.11,260,1.054,261,1.11,262,1.054,263,1.11,264,1.018,265,1.11,266,1.036,267,1.054,268,1.11,269,1.054,270,1.072,271,1.11,272,1.036,273,1.054,274,1.93,275,1.054,276,1.072,277,0.919,278,1.072,279,1.072,280,1.054,281,1.072,282,1.072,283,1.072,284,1.11,285,1.036,286,1.054,287,1.11,288,1.054,289,1.072,290,1.054,291,1.11,292,1.054,293,1.11,294,1.072,295,0.984,296,1.054,297,1.11,298,1.054,299,1.11,300,1.054,301,1.11,302,1.054,303,1.001,304,1.018,305,1.11,306,1.036,307,1.11,308,1.036,309,1.11,310,1.036,311,1.11,312,1.036,313,1.11,314,1.036,315,1.091,316,1.11,317,1.988,318,1.091,319,1.11,320,0.004,321,0.004,341,3.143,358,1.358,419,1.905,428,2.365,686,2.699,942,2.048,968,3.546,1061,3.213,1192,2.314,1251,3.116,1432,7.047,1435,4.817,1437,3.672,1438,6.918,1440,5.617,1441,4.817,1442,5.241,1446,6.051,1447,4.123,1448,5.247,1449,4.817,1450,6.735,1451,4.817,1452,5.885,1453,4.817,1454,4.123,1455,6.477,1456,4.123,1457,4.817,1458,4.817,1459,3.672,1460,4.123,1461,4.123,1462,4.123,1463,4.123,1464,4.123,1465,4.123]],["title/directives/EntriesDirective.html",[179,1.031,308,1.266]],["body/directives/EntriesDirective.html",[0,0.164,2,0.22,3,0.227,4,0.894,8,1.528,9,0.144,11,0.486,16,1.478,22,3.294,23,0.941,25,0.007,30,1.401,31,1.289,32,0.807,37,0.439,38,0.702,40,1.666,43,1.138,44,1.724,48,2.607,49,0.864,50,2.235,51,3.584,60,0.882,65,0.31,66,2.991,69,0.783,70,1.184,71,1.143,80,1.774,81,1.225,82,1.805,91,0.88,92,0.648,93,0.778,108,3.342,118,0.993,121,3.332,126,2.485,137,0.368,139,1.859,147,0.85,148,0.137,149,0.15,164,1.242,179,1.423,180,1.773,196,1.22,209,1.689,241,1.631,308,1.503,320,0.004,321,0.004,344,1.734,346,1.657,354,1.793,358,1.184,363,1.939,412,3.177,413,2.305,414,3.107,417,1.903,426,1.498,428,3.839,433,5.017,437,1.503,442,4.319,453,2.974,457,3.922,471,3.228,474,3.228,475,4.411,480,6.191,497,3.513,520,4.025,541,7.331,571,1.95,585,1.528,592,4.034,601,1.404,603,3.353,875,4.769,923,3.795,937,4.675,938,3.002,939,3.193,984,3.047,1002,3.76,1005,2.553,1091,4.956,1105,2.767,1466,4.221,1467,5.329,1468,6.191,1469,6.736,1470,6.736,1471,6.736,1472,5.984,1473,6.191,1474,5.984,1475,4.221,1476,4.105,1477,5.984,1478,4.221,1479,4.221,1480,4.221,1481,7.563,1482,4.221,1483,4.221,1484,4.898,1485,4.221,1486,4.221,1487,4.221,1488,4.221,1489,4.221,1490,4.221,1491,5.984,1492,4.221,1493,4.221,1494,4.221,1495,4.221,1496,4.221,1497,3.76,1498,4.221,1499,3.76,1500,4.221,1501,6.951,1502,5.984,1503,3.455,1504,4.221,1505,4.221,1506,4.221,1507,3.455,1508,3.76,1509,6.951,1510,3.047,1511,4.221,1512,6.191,1513,7.563,1514,6.951,1515,4.221,1516,4.221,1517,4.221,1518,4.221,1519,4.221,1520,4.221,1521,4.221,1522,4.221]],["title/directives/EntryDirective.html",[179,1.031,310,1.266]],["body/directives/EntryDirective.html",[2,0.258,3,0.266,4,1.792,8,1.794,9,0.169,11,0.57,16,1.651,22,3.585,23,1.104,25,0.007,30,1.173,31,1.44,32,0.948,37,0.515,38,0.784,40,1.732,44,1.695,49,0.966,51,3.838,60,1.13,65,0.301,69,0.816,70,1.603,71,1.136,76,0.916,81,1.126,82,1.182,91,0.729,92,0.536,93,0.483,108,3.359,118,0.832,121,3.502,126,2.196,137,0.432,139,2.077,148,0.161,149,0.176,179,1.658,180,2.081,209,1.842,241,1.775,310,1.679,320,0.004,321,0.004,342,4.239,344,2.035,346,1.465,358,0.98,363,1.382,412,3.402,413,2.705,414,3.327,417,2.233,425,4.898,426,1.758,428,3.965,433,5.461,434,5.316,435,2.471,437,1.679,442,4.825,445,2.521,447,3.649,448,1.511,449,2.661,453,2.629,454,5.953,457,4.381,460,4.412,461,3.247,471,3.789,474,3.789,475,3.899,480,5.472,497,3.721,585,1.794,592,4.239,602,1.758,923,4.13,937,4.913,938,3.155,939,3.355,984,3.576,1001,4.412,1005,2.996,1091,3.247,1105,3.247,1146,4.412,1467,5.953,1468,6.193,1510,3.576,1512,4.412,1523,4.954,1524,6.193,1525,6.685,1526,4.954,1527,4.954,1528,4.954,1529,4.954,1530,4.954,1531,4.954,1532,4.954,1533,4.954,1534,4.954,1535,4.954,1536,4.954,1537,4.954,1538,6.685,1539,4.954,1540,4.954,1541,4.954,1542,4.954]],["title/components/EntryListPopComponent.html",[0,0.195,219,1.288]],["body/components/EntryListPopComponent.html",[0,0.271,1,0.783,2,0.159,3,0.165,4,0.649,6,1.271,7,0.797,9,0.104,11,0.352,16,1.166,19,1.817,20,0.77,22,2.728,23,0.683,25,0.007,30,1.349,31,2.148,32,1.899,35,1.146,37,0.318,38,0.554,39,1.892,40,1.471,43,0.942,44,1.788,48,1.389,49,0.682,51,3.065,60,0.73,65,0.263,66,2.359,67,2.427,69,0.801,70,1.28,71,1.131,76,0.566,79,1.822,80,0.719,81,1.026,82,1.667,91,1.085,92,0.942,93,0.719,107,2.427,108,2.634,109,4.095,110,1.18,113,1.822,115,0.77,118,0.869,128,4.416,136,1.381,137,0.267,139,0.952,147,0.617,148,0.099,149,0.274,167,2.499,177,0.566,178,1.249,179,0.966,181,1.712,182,0.825,183,0.825,184,0.757,185,1.55,186,0.757,187,0.797,188,0.707,189,0.783,190,0.77,191,2.07,192,0.783,193,1.283,194,1.742,195,0.797,196,1.711,197,2.138,198,0.797,199,0.797,200,0.825,201,0.783,202,1.271,203,0.797,204,0.825,205,0.783,206,0.825,207,0.77,208,0.77,209,1.635,210,1.55,211,0.77,212,0.783,213,0.783,214,0.757,215,0.825,216,0.797,217,1.881,218,0.797,219,1.653,220,0.797,221,0.797,222,0.797,223,0.783,224,0.825,225,0.783,226,0.797,227,0.825,228,0.783,229,0.825,230,0.783,231,0.757,232,1.671,233,0.825,234,0.783,235,0.825,236,0.77,237,0.783,238,0.825,239,0.783,240,0.825,241,0.719,242,0.825,243,0.783,244,1.351,245,0.825,246,0.77,247,0.825,248,0.783,249,0.825,250,0.757,251,0.825,252,0.783,253,0.757,254,0.783,255,0.731,256,0.825,257,0.783,258,0.825,259,0.825,260,0.783,261,0.825,262,0.783,263,0.825,264,0.757,265,0.825,266,0.77,267,0.783,268,0.825,269,0.783,270,0.797,271,0.825,272,2.25,273,0.783,274,1.77,275,0.783,276,0.797,277,0.683,278,0.797,279,0.797,280,0.783,281,0.797,282,0.797,283,1.817,284,0.825,285,0.77,286,0.783,287,0.825,288,0.783,289,0.797,290,0.783,291,0.825,292,0.783,293,0.825,294,0.797,295,0.731,296,0.783,297,0.825,298,0.783,299,0.825,300,0.783,301,0.825,302,0.783,303,0.744,304,0.757,305,0.825,306,0.77,307,0.825,308,0.77,309,0.825,310,0.77,311,0.825,312,0.77,313,0.825,314,0.77,315,0.811,316,0.825,317,0.77,318,0.811,319,0.825,320,0.003,321,0.003,346,1.034,347,4.029,350,0.885,354,1.725,355,1.983,358,0.934,359,4.198,363,1.606,379,1.853,391,2.854,398,6.849,435,1.973,448,2.131,449,2.295,455,2.029,538,2.661,541,2.343,571,2.181,572,1.965,573,2.854,582,3.941,706,1.49,817,1.531,820,4.304,908,1.673,933,4.391,935,4.578,936,4.304,941,3.358,948,1.744,949,1.673,954,1.787,967,4.019,975,1.622,978,7.331,980,2.102,984,2.211,1006,3.644,1013,2.102,1014,2.102,1084,1.727,1091,2.008,1105,2.008,1237,1.49,1258,2.807,1396,4.155,1398,3.238,1410,2.96,1411,2.008,1414,1.787,1543,2.508,1544,3.609,1545,5.761,1546,5.194,1547,4.239,1548,4.155,1549,4.72,1550,3.407,1551,3.407,1552,4.155,1553,3.064,1554,4.204,1555,2.508,1556,2.729,1557,2.729,1558,2.102,1559,2.343,1560,1.853,1561,2.343,1562,2.343,1563,2.508,1564,2.343,1565,3.863,1566,3.949,1567,2.729,1568,2.211,1569,2.343,1570,2.008,1571,6.468,1572,3.064,1573,2.729,1574,3.609,1575,3.064,1576,2.343,1577,3.407,1578,2.211,1579,2.343,1580,1.926,1581,2.211,1582,2.211,1583,2.343,1584,2.211,1585,2.343,1586,2.508,1587,2.729,1588,3.064,1589,2.729,1590,4.204,1591,2.729,1592,2.343,1593,2.008,1594,2.343,1595,2.343,1596,2.102,1597,2.508,1598,2.343,1599,3.064,1600,3.064,1601,2.508,1602,2.508,1603,2.343,1604,2.729,1605,3.064,1606,3.064]],["title/components/ErrorComponent.html",[0,0.195,223,1.288]],["body/components/ErrorComponent.html",[0,0.311,1,1.091,2,0.222,3,0.229,4,0.904,6,1.149,7,1.11,9,0.145,11,0.491,16,1.489,20,1.072,21,3.005,22,3.314,23,0.951,25,0.007,31,2.174,32,1.924,35,1.464,37,0.443,40,1.533,49,0.871,51,3.601,52,3.425,65,0.215,69,0.526,71,0.959,81,0.982,82,1.669,89,1.515,91,0.628,92,0.975,93,0.416,108,2.274,113,1.489,115,1.072,118,0.75,124,3.517,137,0.372,147,0.859,148,0.138,149,0.152,177,0.789,178,1.596,179,1.235,181,2.011,182,1.149,183,1.149,184,1.054,185,1.883,186,1.054,187,1.11,188,0.984,189,1.091,190,1.072,191,2.303,192,1.091,193,1.559,194,2.046,195,1.11,196,1.533,197,2.352,198,1.11,199,1.11,200,1.149,201,1.787,202,1.624,203,1.11,204,1.149,205,1.091,206,1.149,207,1.072,208,1.072,209,1.67,210,1.883,211,1.072,212,1.091,213,1.091,214,1.054,215,1.149,216,1.11,217,2.159,218,1.11,219,1.091,220,1.11,221,1.11,222,1.11,223,1.942,224,1.149,225,1.091,226,1.11,227,1.149,228,1.091,229,1.149,230,1.091,231,1.054,232,1.173,233,1.149,234,1.091,235,1.149,236,1.072,237,1.091,238,1.149,239,1.091,240,1.149,241,1.001,242,1.149,243,1.091,244,1.64,245,1.149,246,1.072,247,1.149,248,1.091,249,1.149,250,1.054,251,1.149,252,1.091,253,1.054,254,1.091,255,1.018,256,1.149,257,1.091,258,1.149,259,1.149,260,1.091,261,1.149,262,1.091,263,1.149,264,1.054,265,1.149,266,1.072,267,1.091,268,1.149,269,1.091,270,1.11,271,1.149,272,1.072,273,1.091,274,1.947,275,1.091,276,1.11,277,0.951,278,1.11,279,1.11,280,1.091,281,1.11,282,1.11,283,1.11,284,1.149,285,1.072,286,1.091,287,1.149,288,1.091,289,1.11,290,1.091,291,1.149,292,1.091,293,1.149,294,1.11,295,1.018,296,1.091,297,1.149,298,1.091,299,1.149,300,1.091,301,1.149,302,1.091,303,1.036,304,1.054,305,1.149,306,1.072,307,1.149,308,1.072,309,1.149,310,1.072,311,1.149,312,1.072,313,1.149,314,1.072,315,1.129,316,1.149,317,1.072,318,1.129,319,1.149,320,0.004,321,0.004,331,2.019,358,0.844,412,1.793,495,3.871,532,2.786,585,3.261,586,4.676,602,1.515,918,4.611,919,3.193,920,4.936,921,4.611,938,2.183,939,2.926,1192,2.75,1225,2.682,1607,4.267,1608,6.03,1609,2.927,1610,6.03,1611,4.267,1612,4.267,1613,4.267,1614,4.267,1615,5.37,1616,4.267,1617,4.267,1618,4.267,1619,4.267,1620,4.267,1621,4.267,1622,4.267,1623,4.267,1624,6.03,1625,4.267]],["title/classes/Field.html",[46,1.288,149,0.179]],["body/classes/Field.html",[0,0.292,2,0.189,3,0.195,8,1.942,9,0.123,16,1.324,25,0.007,30,1.12,37,0.557,38,1.082,39,1.192,40,1.661,43,1.547,46,2.432,47,2.742,48,1.877,49,1.137,60,0.998,61,3.089,65,0.129,69,0.839,70,1.94,71,1.154,76,0.671,80,1.258,81,1.103,91,0.534,92,0.905,93,0.951,117,2.85,118,1.04,123,3.428,147,1.079,148,0.118,149,0.317,196,1.498,232,1.043,295,1.28,320,0.004,321,0.004,341,2.253,342,3.829,346,2.044,354,2.638,355,3.648,358,0.718,363,2.195,402,4.438,426,1.288,435,2.294,445,2.406,453,1.427,493,4.465,503,2.31,514,1.765,519,1.635,527,3.514,532,3.256,558,4.179,574,3.514,647,3.514,686,2.509,823,4.39,851,2.839,897,2.839,903,2.609,942,2.909,960,3.523,961,3.128,967,2.478,991,3.231,1053,1.866,1059,3.128,1062,3.243,1064,4.386,1134,3.243,1192,3.095,1217,3.679,1218,3.721,1241,2.775,1244,2.775,1251,4.426,1258,1.458,1264,3.128,1580,3.371,1626,3.628,1627,5.586,1628,4.834,1629,5.086,1630,4.261,1631,6.019,1632,6.276,1633,6.019,1634,4.297,1635,7.047,1636,7.047,1637,5.363,1638,3.628,1639,3.628,1640,3.628,1641,3.628,1642,3.871,1643,3.871,1644,3.628,1645,3.628,1646,4.39,1647,4.39,1648,3.628,1649,4.776,1650,5.363,1651,4.101,1652,3.628,1653,3.628,1654,3.628,1655,3.628,1656,5.363,1657,4.101,1658,3.514,1659,3.628,1660,3.628,1661,3.628,1662,7.871,1663,3.628,1664,3.514,1665,3.628,1666,3.628,1667,3.628,1668,3.628,1669,3.628,1670,3.628,1671,4.776,1672,3.679,1673,3.628,1674,5.363,1675,2.281,1676,3.231,1677,3.231,1678,3.628,1679,3.371,1680,2.116,1681,3.231,1682,3.628,1683,3.231,1684,3.628,1685,2.378,1686,3.628,1687,3.628,1688,3.628,1689,4.776,1690,5.363,1691,2.281,1692,3.628,1693,5.363,1694,3.628,1695,3.628,1696,2.489,1697,3.628,1698,3.628,1699,2.775,1700,3.231,1701,3.628,1702,3.628,1703,2.775,1704,3.231,1705,2.378,1706,3.231,1707,3.231,1708,4.39,1709,3.628,1710,3.628,1711,3.231,1712,3.628,1713,3.231,1714,3.628,1715,2.97,1716,3.628]],["title/interfaces/FieldConfig.html",[338,1.43,1717,3.301]],["body/interfaces/FieldConfig.html",[2,0.378,3,0.39,9,0.247,11,0.836,25,0.007,37,0.755,46,2.425,65,0.259,70,1.684,71,0.869,117,2.694,148,0.236,196,1.494,320,0.006,321,0.006,338,2.416,354,2.177,897,4.929,903,4.141,1018,4.762,1075,4.141,1627,6.509,1707,6.471,1717,5.578,1718,8.512,1719,7.266]],["title/interfaces/FileOptions.html",[338,1.43,1030,3.455]],["body/interfaces/FileOptions.html",[0,0.129,2,0.172,3,0.178,9,0.269,11,0.381,25,0.007,30,1.387,37,0.344,38,0.588,44,1.738,46,0.847,48,2.498,49,0.479,60,0.918,65,0.307,69,0.762,70,1.707,71,0.397,75,1.647,76,1.651,77,1.154,80,1.418,81,1.246,84,2.083,89,1.693,92,0.543,93,0.918,108,1.25,117,1.913,118,0.412,121,3.176,123,3.278,131,1.362,137,0.289,147,1.638,148,0.196,149,0.118,164,1.778,188,0.764,193,2.16,196,1.182,209,1.136,231,0.819,232,1.311,274,1.347,277,0.739,303,2.22,320,0.003,321,0.005,338,2.054,339,1.933,341,2.83,342,2.438,343,2.736,346,1.916,350,0.958,354,2.018,363,2.018,405,3.799,408,2.083,412,2.539,414,2.059,417,1.494,432,5.222,437,1.518,447,1.81,448,1.011,449,2.214,453,1.304,468,5.222,469,2.392,477,2.274,482,2.713,489,3.3,495,2.598,499,2.377,503,1.2,519,2.724,524,3.438,537,1.933,547,2.172,555,2.083,556,5.654,577,2.713,587,2.083,595,1.81,601,0.778,602,1.176,603,2.377,627,1.531,682,2.279,705,2.172,706,2.438,741,3.655,749,2.713,756,2.274,851,1.755,869,2.438,903,1.613,908,3.95,910,2.577,925,1.81,942,2.345,948,1.852,1030,4.963,1040,2.713,1043,1.571,1053,1.704,1059,1.933,1062,2.004,1070,2.004,1072,2.172,1073,2.392,1074,2.004,1075,1.613,1076,2.274,1077,3.655,1084,2.826,1106,2.392,1111,2.713,1116,4.439,1136,4.622,1158,3.031,1180,2.392,1476,2.274,1560,2.004,1634,2.736,1720,2.952,1721,7.039,1722,6.778,1723,7.039,1724,6.444,1725,6.444,1726,6.444,1727,4.103,1728,3.285,1729,3.833,1730,3.031,1731,4.464,1732,4.464,1733,2.952,1734,4.622,1735,2.535,1736,2.952,1737,2.952,1738,2.952,1739,2.952,1740,2.535,1741,2.952,1742,2.952,1743,5.383,1744,2.952,1745,5.383,1746,2.952,1747,2.952,1748,2.952,1749,2.952,1750,2.952,1751,2.952,1752,1.755,1753,2.952,1754,4.863,1755,2.274,1756,2.952,1757,4.464,1758,2.952,1759,4.464,1760,4.464,1761,2.952,1762,2.952,1763,2.952,1764,2.952,1765,4.464,1766,3.799,1767,2.952,1768,2.535,1769,2.713,1770,2.392,1771,2.952,1772,6.778,1773,2.952,1774,2.952,1775,2.952,1776,2.952,1777,2.952,1778,5.383,1779,2.713,1780,2.952,1781,2.952,1782,4.464,1783,2.952,1784,4.464,1785,4.464,1786,4.464,1787,4.464,1788,4.464,1789,4.464,1790,4.464,1791,4.464,1792,2.392,1793,2.713,1794,3.833,1795,2.952,1796,2.952,1797,2.952,1798,4.464,1799,2.952,1800,2.952,1801,2.952,1802,2.952,1803,2.952,1804,2.392,1805,2.952,1806,5.383,1807,2.952,1808,2.952,1809,4.464,1810,2.952,1811,2.952,1812,2.952,1813,2.535,1814,2.952,1815,1.933,1816,2.535,1817,2.952,1818,2.952,1819,2.952,1820,2.952,1821,2.952,1822,2.952,1823,2.952,1824,2.952,1825,2.952,1826,2.952,1827,2.952,1828,2.952,1829,2.274,1830,2.952,1831,2.952,1832,2.952,1833,2.713,1834,2.952,1835,2.952,1836,2.952]],["title/modules/FilesModule.html",[322,1.085,1154,3.636]],["body/modules/FilesModule.html",[2,0.255,3,0.263,9,0.167,24,2.214,25,0.007,63,1.641,65,0.348,137,0.427,138,1.97,139,1.523,146,2.838,148,0.262,149,0.174,177,0.906,189,2.435,190,1.232,192,2.406,193,1.677,195,2.448,196,1.165,198,2.478,230,2.406,231,1.211,232,1.291,294,2.478,295,1.17,300,2.435,302,2.406,303,1.19,304,2.325,306,2.365,314,2.365,320,0.004,321,0.004,322,1.43,324,2.014,329,2.788,330,1.775,331,1.641,333,3.742,334,2.31,486,4.366,548,2.859,552,4.366,555,5.46,570,3.538,622,5.067,628,3.145,629,2.209,632,4.553,979,4.35,1154,7.242,1155,5.959,1156,6.169,1177,6.167,1181,4.366,1183,4.013,1837,4.366,1838,4.366,1839,4.902,1840,4.366,1841,4.366,1842,4.902,1843,3.749,1844,3.538,1845,3.213,1846,4.902,1847,4.902,1848,4.366,1849,4.902,1850,4.902,1851,4.366,1852,4.366,1853,4.366,1854,4.902]],["title/interfaces/Focus.html",[338,1.43,1855,3.636]],["body/interfaces/Focus.html",[2,0.385,3,0.398,9,0.252,25,0.007,37,0.769,38,1.01,49,1.243,65,0.263,69,0.645,71,0.886,81,0.957,137,0.645,148,0.24,320,0.006,321,0.006,338,2.443,449,3.077,1855,6.21,1856,7.402,1857,8.341,1858,7.666,1859,7.402]],["title/directives/FocusDirective.html",[179,1.031,312,1.266]],["body/directives/FocusDirective.html",[2,0.357,3,0.369,9,0.234,16,2.033,21,3.789,23,1.531,25,0.007,31,1.9,37,0.713,40,1.748,49,1.189,52,4.12,65,0.244,69,0.718,71,1.055,81,0.888,82,1.639,91,1.01,92,0.744,93,0.669,109,4.12,113,2.033,137,0.599,148,0.223,149,0.244,179,1.805,312,2.068,320,0.006,321,0.006,346,1.505,358,1.359,448,2.095,449,2.896,520,3.173,602,2.438,1401,5.621,1860,6.868,1861,7.65,1862,8.232,1863,6.868,1864,5.621,1865,6.868,1866,6.868,1867,6.868,1868,6.868,1869,6.868]],["title/interfaces/FormConfig.html",[338,1.43,1870,4.123]],["body/interfaces/FormConfig.html",[2,0.366,3,0.378,9,0.239,11,0.81,19,3.216,25,0.007,30,1.466,37,0.731,38,0.98,65,0.25,69,0.728,70,1.763,93,0.898,148,0.228,320,0.006,321,0.006,338,2.371,346,1.952,355,3.509,919,4.422,975,3.726,1018,4.612,1042,6.321,1870,7.542,1871,7.037,1872,6.837,1873,5.913,1874,9.214,1875,8.206,1876,7.046,1877,5.76]],["title/modules/FormModule.html",[322,1.085,1878,3.455]],["body/modules/FormModule.html",[2,0.268,3,0.277,9,0.175,20,2.295,24,2.592,25,0.007,63,1.724,65,0.347,118,0.853,137,0.449,138,2.069,146,2.909,147,1.036,148,0.278,149,0.183,177,0.951,205,2.425,211,2.295,225,2.425,298,2.425,320,0.005,321,0.005,322,1.478,324,2.114,329,2.881,330,1.864,331,1.724,333,3.867,334,1.792,628,3.25,629,2.32,631,5.567,650,4.848,776,5.774,795,4.214,797,4.214,799,4.214,960,2.573,1171,3.113,1173,3.937,1175,3.715,1212,2.902,1379,4.214,1386,4.214,1878,6.872,1879,4.584,1880,4.584,1881,4.584,1882,4.584,1883,4.584,1884,7.254,1885,7.254,1886,6.507,1887,6.217,1888,5.328,1889,5.774,1890,5.774,1891,6.36,1892,5.148,1893,4.214,1894,4.584,1895,5.148,1896,4.584,1897,5.148,1898,5.148,1899,4.214,1900,3.715,1901,5.148,1902,5.148,1903,4.214,1904,5.148,1905,5.148,1906,5.148,1907,5.148,1908,5.148]],["title/injectables/FormService.html",[437,1.266,1891,3.636]],["body/injectables/FormService.html",[2,0.235,3,0.242,9,0.153,11,0.519,15,3.414,25,0.007,30,1.1,37,0.469,38,0.736,43,1.179,44,1.806,45,4.121,46,2.507,47,3.734,49,0.906,60,0.914,61,2.575,65,0.291,69,0.757,70,0.893,71,1.06,75,2.367,76,1.512,77,2.182,80,1.987,81,1.255,82,1.076,91,1.278,92,0.941,93,0.847,117,3.13,118,0.561,124,3.656,127,2.631,132,4.709,137,0.393,138,1.813,147,1.705,148,0.146,149,0.256,225,1.99,320,0.004,321,0.004,338,1.78,346,0.988,350,1.303,354,1.878,355,3.721,358,1.241,363,2.282,437,1.81,495,1.939,503,1.633,505,2.971,532,2.896,571,2.084,572,2.14,585,2.609,627,2.896,880,3.319,938,2.963,939,3.261,942,1.57,1009,4.948,1225,2.835,1609,3.094,1634,5.025,1672,4.3,1730,3.791,1891,4.525,1909,4.51,1910,6.269,1911,3.319,1912,6.269,1913,6.269,1914,6.269,1915,6.269,1916,6.269,1917,6.269,1918,4.51,1919,6.269,1920,4.51,1921,3.656,1922,6.269,1923,4.51,1924,6.269,1925,6.269,1926,4.51,1927,6.269,1928,4.51,1929,6.269,1930,7.205,1931,6.269,1932,4.51,1933,5.131,1934,6.269,1935,4.51,1936,7.786,1937,7.205,1938,4.51,1939,5.583,1940,4.017,1941,4.51,1942,6.269,1943,4.51,1944,4.51,1945,4.51,1946,4.51,1947,4.51,1948,6.269,1949,4.51,1950,6.269,1951,4.51,1952,4.51,1953,4.51,1954,4.51,1955,4.51,1956,4.51,1957,4.017,1958,4.51,1959,4.51,1960,4.51,1961,4.51,1962,4.51,1963,4.51,1964,4.51,1965,4.51,1966,6.269]],["title/injectables/GeocodeService.html",[437,1.266,1967,3.455]],["body/injectables/GeocodeService.html",[2,0.27,3,0.279,9,0.177,11,0.598,12,3.893,25,0.007,37,0.54,40,1.58,44,1.803,49,0.997,65,0.306,69,0.749,71,1.029,76,1.526,80,2.073,81,1.228,91,1.264,92,0.931,93,0.838,113,2.04,121,3.319,137,0.453,146,2.604,147,1.56,148,0.169,149,0.185,181,1.376,188,1.592,244,2.174,320,0.006,321,0.005,358,1.029,437,1.948,445,2.604,513,5.28,527,4.525,538,4.846,598,3.55,602,1.846,603,2.045,786,4.027,880,2.753,910,4.246,1087,3.268,1218,4.027,1246,3.567,1403,5.652,1547,4.525,1921,4.027,1967,4.737,1968,5.2,1969,5.665,1970,7.752,1971,6.905,1972,6.905,1973,6.905,1974,6.905,1975,5.2,1976,8.259,1977,8.03,1978,5.2,1979,6.905,1980,6.905,1981,5.2,1982,7.036,1983,6.905,1984,5.2,1985,5.652,1986,7.656,1987,5.652,1988,6.905,1989,5.2,1990,6.905,1991,6.905,1992,5.2,1993,4.256,1994,5.2,1995,5.2,1996,5.2,1997,5.2,1998,5.2,1999,5.2,2000,4.737,2001,5.2,2002,5.2,2003,6.905,2004,4.256,2005,6.149,2006,5.2,2007,6.149,2008,5.2,2009,5.2,2010,5.2,2011,5.2,2012,5.2,2013,5.2,2014,4.256,2015,4.631,2016,5.2,2017,6.149,2018,5.2,2019,5.2,2020,5.2,2021,5.2,2022,5.2,2023,5.2,2024,5.2,2025,5.2,2026,5.2,2027,5.2]],["title/pipes/GroupPipe.html",[1214,2.59,1216,3.636]],["body/pipes/GroupPipe.html",[2,0.351,3,0.363,9,0.23,11,0.777,16,1.667,23,1.505,25,0.007,38,1.109,43,1.579,47,3.502,48,2.813,49,0.975,60,1.033,65,0.29,69,0.588,70,1.732,71,0.808,77,2.835,80,1.911,81,1.175,91,0.993,92,0.948,93,0.658,131,3.347,137,0.588,148,0.219,149,0.24,320,0.005,321,0.005,350,1.951,493,4.189,682,3.508,828,5.339,1214,4.499,1216,6.559,1217,5.589,1218,3.937,1224,5.88,2028,6.75,2029,8.147,2030,6.75,2031,6.75,2032,6.75]],["title/injectables/HistoryService.html",[437,1.266,1157,3.852]],["body/injectables/HistoryService.html",[2,0.228,3,0.381,9,0.149,11,0.504,25,0.007,37,0.455,38,0.721,43,1.325,44,1.797,49,1.025,65,0.318,69,0.822,70,1.741,71,1.084,76,0.81,77,2.676,80,2.022,81,1.137,82,1.046,89,1.932,91,1.131,92,0.833,93,0.749,108,2.317,118,1.007,121,3.254,126,2.019,137,0.382,139,1.362,147,1.428,148,0.142,149,0.156,167,3.254,209,1.155,274,1.993,277,1.582,320,0.004,321,0.004,341,3.23,344,1.801,356,3.465,358,1.216,363,1.714,404,7.055,418,3.588,428,3.09,437,1.783,448,1.875,478,2.755,479,3.904,495,3.893,499,3.708,582,2.912,584,2.471,585,2.225,592,4.084,596,2.557,656,5.55,741,2.651,742,2.873,772,4.699,774,4.291,786,4.486,820,4.486,903,4.495,928,6.055,934,5.587,937,4.565,1005,2.651,1077,5.587,1091,5.648,1105,2.873,1106,3.164,1136,4.699,1157,5.881,1345,4.027,1510,4.435,2033,4.384,2034,5.03,2035,8.796,2036,6.145,2037,6.145,2038,3.904,2039,6.145,2040,6.145,2041,4.384,2042,4.699,2043,6.145,2044,8.394,2045,6.145,2046,8.619,2047,4.384,2048,3.741,2049,6.295,2050,6.145,2051,4.384,2052,4.215,2053,5.03,2054,4.384,2055,4.384,2056,4.384,2057,6.849,2058,4.384,2059,4.384,2060,4.384,2061,3.904,2062,4.384,2063,4.384,2064,8.619,2065,4.384,2066,4.384,2067,4.384,2068,6.145,2069,7.095,2070,4.384,2071,4.384,2072,6.145,2073,4.384,2074,4.384,2075,4.384,2076,6.145,2077,6.145,2078,4.384,2079,4.384]],["title/components/IconComponent.html",[0,0.195,228,1.288]],["body/components/IconComponent.html",[0,0.323,1,0.999,2,0.203,3,0.21,4,0.828,6,1.052,7,1.016,8,1.415,9,0.133,11,0.449,16,1.398,20,0.982,21,2.861,22,3.155,23,0.871,25,0.007,31,2.168,32,1.92,35,1.374,37,0.406,38,0.664,39,1.86,40,1.482,49,0.818,51,3.459,52,3.29,60,0.926,65,0.276,69,0.58,70,1.12,71,0.967,78,3.883,79,1.398,80,0.917,81,0.86,82,1.589,91,0.575,92,1.025,93,0.381,113,1.398,115,0.982,118,0.828,123,4.152,126,2.546,137,0.341,144,4.588,148,0.216,149,0.237,177,0.722,178,1.498,179,1.159,180,1.641,181,1.932,182,1.052,183,1.052,184,0.965,185,1.793,186,0.965,187,1.016,188,0.901,189,0.999,190,0.982,191,2.244,192,0.999,193,1.484,194,1.966,195,1.016,196,1.418,197,2.298,198,1.016,199,1.016,200,1.052,201,0.999,202,1.524,203,1.016,204,1.052,205,0.999,206,1.052,207,0.982,208,0.982,209,1.567,210,1.793,211,0.982,212,0.999,213,0.999,214,0.965,215,1.052,216,1.016,217,2.086,218,1.016,219,0.999,220,1.016,221,1.016,222,1.016,223,0.999,224,1.052,225,0.999,226,1.016,227,1.052,228,1.866,229,1.052,230,0.999,231,0.965,232,1.101,233,1.052,234,0.999,235,1.052,236,0.982,237,0.999,238,1.052,239,0.999,240,1.052,241,0.917,242,1.052,243,0.999,244,1.562,245,1.052,246,0.982,247,1.052,248,0.999,249,1.052,250,0.965,251,1.052,252,0.999,253,0.965,254,0.999,255,0.932,256,1.052,257,0.999,258,1.052,259,1.052,260,0.999,261,1.052,262,0.999,263,1.052,264,0.965,265,1.052,266,0.982,267,0.999,268,1.052,269,0.999,270,1.016,271,1.052,272,0.982,273,0.999,274,1.903,275,0.999,276,1.016,277,0.871,278,1.016,279,1.016,280,0.999,281,1.016,282,1.016,283,1.016,284,1.052,285,0.982,286,0.999,287,1.052,288,0.999,289,1.016,290,0.999,291,1.052,292,0.999,293,1.052,294,1.016,295,0.932,296,0.999,297,1.052,298,0.999,299,1.052,300,0.999,301,1.052,302,0.999,303,0.948,304,0.965,305,1.052,306,0.982,307,1.052,308,0.982,309,1.052,310,0.982,311,1.052,312,0.982,313,1.052,314,0.982,315,1.034,316,1.052,317,0.982,318,1.034,319,1.052,320,0.004,321,0.005,358,0.773,419,2.615,426,1.387,509,2.997,573,2.363,584,3.753,600,2.68,602,1.387,655,3.198,938,2.643,1039,2.363,1192,2.618,1345,2.56,1631,7.507,1657,2.988,2080,3.907,2081,7.12,2082,4.414,2083,5.042,2084,3.558,2085,3.558,2086,5.661,2087,3.907,2088,6.642,2089,5.661,2090,3.907,2091,3.907,2092,3.907,2093,3.907,2094,5.042,2095,2.997,2096,3.907,2097,2.988,2098,5.661,2099,5.661,2100,5.661,2101,3.907,2102,5.929,2103,3.907,2104,2.456,2105,3.48,2106,3.48,2107,5.661,2108,3.907,2109,3.907,2110,3.907,2111,2.279,2112,3.907,2113,5.661,2114,5.661]],["title/modules/IconModule.html",[322,1.085,1888,3.046]],["body/modules/IconModule.html",[2,0.362,3,0.374,9,0.237,24,2.609,25,0.007,63,2.331,65,0.334,137,0.607,146,3.344,148,0.298,149,0.248,177,1.286,228,2.526,320,0.006,321,0.006,322,1.788,324,2.859,329,3.486,330,2.52,331,2.331,334,2.888,628,3.933,629,3.137,1888,5.901,2088,6.87,2105,6.199,2115,6.199,2116,6.199,2117,6.199,2118,6.199,2119,6.961,2120,6.961]],["title/injectables/IconService.html",[437,1.266,2088,3.636]],["body/injectables/IconService.html",[2,0.349,3,0.36,8,2.428,9,0.228,11,0.771,19,2.582,25,0.007,32,1.776,37,0.697,38,0.952,43,1.098,44,1.698,60,1.029,65,0.323,69,0.585,71,0.803,79,2.33,88,6.22,118,1.086,123,3.948,126,2.666,137,0.585,148,0.218,149,0.239,180,2.817,320,0.005,321,0.005,402,4.575,437,2.192,627,4.189,938,3.283,939,3.125,1225,4.215,1631,7.548,1730,4.907,2081,7.422,2083,7.227,2088,5.857,2106,5.973,2121,6.706,2122,8.726,2123,6.706]],["title/directives/ImageDirective.html",[179,1.031,314,1.266]],["body/directives/ImageDirective.html",[2,0.252,3,0.261,4,1.396,9,0.165,11,0.558,16,1.628,19,1.868,22,3.547,23,1.081,25,0.007,30,1.157,31,1.42,37,0.504,38,0.773,40,1.724,43,0.794,44,1.562,49,0.952,51,3.805,60,1.065,65,0.299,69,0.805,70,1.86,71,1.106,76,0.897,81,1.194,82,1.573,91,1.181,92,0.869,93,0.783,109,3.993,113,1.628,118,0.604,123,3.906,137,0.423,148,0.157,149,0.173,179,1.644,193,2.06,231,2.257,304,1.628,314,1.656,315,2.125,320,0.004,321,0.004,342,4.085,346,1.444,358,0.96,363,2.088,412,3.527,413,2.649,414,3.557,417,2.187,419,2.241,426,1.722,428,3.777,432,5.796,433,4.757,451,5.869,453,2.592,455,2.085,468,6.06,469,3.501,471,3.71,473,5.869,474,3.71,475,2.83,603,1.908,677,3.328,1048,5.299,1060,5.869,1116,2.83,1134,3.985,1734,6.775,1735,3.71,1766,3.049,1794,3.71,1815,4.898,1848,4.32,2124,4.851,2125,6.59,2126,5.869,2127,6.141,2128,9.138,2129,6.59,2130,7.478,2131,6.59,2132,4.851,2133,6.573,2134,5.869,2135,4.851,2136,6.59,2137,4.851,2138,4.851,2139,6.59,2140,6.59,2141,4.851,2142,6.59,2143,4.851,2144,6.59,2145,4.851,2146,4.851,2147,4.851,2148,4.851,2149,7.485,2150,4.851,2151,4.851,2152,4.851,2153,5.869,2154,4.851,2155,4.851,2156,5.395,2157,4.851,2158,6.59,2159,4.851,2160,4.851,2161,4.851,2162,6.59,2163,4.851]],["title/components/ImageSelectPopComponent.html",[0,0.195,230,1.288]],["body/components/ImageSelectPopComponent.html",[0,0.281,1,0.67,2,0.136,3,0.141,4,0.556,6,1.125,7,0.682,9,0.089,11,0.302,16,1.032,19,1.609,20,0.659,21,2.239,23,0.585,25,0.007,30,1.362,31,2.133,32,1.884,35,1.014,37,0.272,38,0.49,39,0.862,40,1.484,43,1.302,44,1.79,46,0.67,49,0.604,50,2.212,52,2.678,60,0.823,65,0.246,66,2.089,67,2.149,69,0.776,70,0.827,71,1.105,76,0.485,77,1.454,79,1.859,80,0.615,81,1.003,82,1.418,89,1.949,91,0.874,92,0.879,93,0.579,107,2.149,109,3.985,110,1.01,113,1.707,115,0.659,117,2.383,118,0.989,128,4.249,136,1.182,137,0.229,139,0.815,147,1.635,148,0.085,149,0.258,167,2.212,175,3.196,177,0.485,178,1.106,179,0.856,181,1.572,182,0.706,183,0.706,184,0.648,185,1.403,186,0.648,187,0.682,188,0.605,189,0.67,190,0.659,191,1.953,192,0.67,193,1.324,194,1.6,195,0.682,196,1.213,197,2.027,198,0.682,199,0.682,200,0.706,201,0.67,202,1.125,203,0.682,204,0.706,205,0.67,206,0.706,207,1.309,208,0.659,209,1.459,210,1.403,211,0.659,212,0.67,213,0.67,214,0.648,215,0.706,216,0.682,217,1.747,218,0.682,219,0.67,220,0.682,221,0.682,222,0.682,223,0.67,224,0.706,225,1.331,226,0.682,227,0.706,228,0.67,229,0.706,230,1.519,231,2.124,232,1.882,233,0.706,234,0.67,235,0.706,236,0.659,237,0.67,238,0.706,239,0.67,240,0.706,241,1.522,242,0.706,243,0.67,244,1.222,245,0.706,246,0.659,247,0.706,248,0.67,249,0.706,250,0.648,251,0.706,252,0.67,253,0.648,254,0.67,255,0.626,256,0.706,257,0.67,258,0.706,259,0.706,260,0.67,261,0.706,262,0.67,263,0.706,264,0.648,265,0.706,266,0.659,267,0.67,268,0.706,269,0.67,270,0.682,271,0.706,272,2.183,273,0.67,274,1.678,275,0.67,276,0.682,277,0.585,278,0.682,279,0.682,280,0.67,281,0.682,282,0.682,283,0.682,284,0.706,285,0.659,286,0.67,287,0.706,288,0.67,289,0.682,290,0.67,291,0.706,292,0.67,293,0.706,294,0.682,295,0.626,296,0.67,297,0.706,298,0.67,299,0.706,300,0.67,301,0.706,302,0.67,303,0.637,304,0.648,305,0.706,306,0.659,307,0.706,308,0.659,309,0.706,310,0.659,311,0.706,312,0.659,313,0.706,314,0.659,315,1.378,316,0.706,317,0.659,318,0.694,319,0.706,320,0.003,321,0.003,344,2.14,346,1.142,347,3.774,350,0.758,355,2.726,358,0.519,359,3.959,363,1.453,402,1.479,412,2.904,414,2.839,417,1.182,419,1.212,435,1.812,445,1.964,448,1.589,449,2.132,455,1.796,497,1.839,499,1.031,509,2.212,555,5.195,556,4.252,570,1.893,572,1.778,582,3.769,817,1.311,820,3.465,840,3.196,938,2.726,939,2.662,948,1.544,949,1.432,954,1.53,967,3.876,1006,3.436,1048,2.356,1064,2.437,1065,4.264,1084,1.479,1171,1.586,1172,1.719,1237,1.276,1251,3.435,1258,2.607,1345,2.738,1391,2.867,1396,3.759,1398,2.867,1410,2.678,1411,1.719,1414,1.53,1543,2.147,1544,3.196,1546,4.91,1548,3.759,1550,3.016,1551,3.016,1552,3.759,1554,2.336,1555,2.147,1558,1.799,1559,2.006,1560,1.586,1561,2.006,1562,2.006,1563,2.147,1564,2.006,1566,3.573,1568,1.893,1569,2.006,1570,1.719,1573,2.336,1576,2.006,1577,3.016,1578,1.893,1579,2.006,1580,1.648,1581,1.893,1582,1.893,1583,2.006,1584,1.893,1585,2.006,1586,2.147,1589,3.722,1592,2.006,1593,1.719,1594,2.006,1595,2.006,1597,2.147,1598,2.006,1754,1.893,1792,1.893,1794,2.006,1815,4.526,1853,7.66,1870,4.863,1875,2.336,2164,8.601,2165,3.196,2166,8.12,2167,6.913,2168,5.941,2169,5.209,2170,2.147,2171,3.722,2172,4.179,2173,3.722,2174,2.336,2175,3.196,2176,2.623,2177,2.623,2178,2.623,2179,4.179,2180,2.336,2181,2.336,2182,2.336,2183,6.488,2184,2.336,2185,2.623,2186,6.488,2187,2.623,2188,2.147,2189,5.941,2190,2.623,2191,2.623,2192,2.623,2193,4.179,2194,4.179,2195,4.179,2196,3.42,2197,4.179,2198,4.179,2199,2.623,2200,4.179,2201,2.623,2202,2.623,2203,2.147,2204,2.147,2205,2.623,2206,2.623,2207,2.336,2208,2.623,2209,6.488,2210,2.623,2211,4.179,2212,2.623,2213,2.623,2214,4.179,2215,2.623,2216,2.623,2217,2.623,2218,2.623,2219,2.623,2220,2.623,2221,2.623,2222,2.336,2223,2.623,2224,2.623,2225,1.893,2226,2.623,2227,1.586,2228,1.586,2229,2.623,2230,4.179,2231,4.179,2232,2.623,2233,2.623,2234,2.623,2235,4.179]],["title/components/InputComponent.html",[0,0.195,115,1.266]],["body/components/InputComponent.html",[0,0.352,1,0.747,2,0.152,3,0.157,4,1.184,6,0.787,7,0.76,9,0.099,11,0.336,14,2.156,16,1.124,17,3.512,19,1.752,20,1.404,22,2.648,23,0.651,24,1.856,25,0.007,26,3.051,27,2.484,28,3.051,29,2.484,30,0.799,31,2.144,32,1.897,35,1.105,37,0.304,38,0.942,40,1.785,41,3.964,43,1.409,44,0.885,45,3.906,46,2.287,47,3.359,48,2.499,49,0.657,51,2.989,53,2.982,54,3.964,57,2.752,60,1.06,65,0.258,69,0.791,70,0.901,71,1.092,76,1.166,77,2.379,79,0.722,80,0.686,81,1.01,82,1.631,86,2.86,88,3.122,89,2.163,90,3.284,91,0.822,92,0.943,93,0.545,94,2.86,104,2.86,106,3.122,107,2.34,108,1.716,110,1.125,113,1.124,115,2.101,117,2.756,118,0.972,119,2.484,126,1.836,127,2.654,128,2.873,132,3.814,137,0.255,138,1.174,144,2.86,147,0.916,148,0.095,149,0.104,162,2.982,173,2.86,177,0.54,178,1.204,179,1.291,181,1.669,182,0.787,183,0.787,184,0.722,185,1.505,186,0.722,187,0.76,188,0.674,189,0.747,190,0.734,191,2.035,192,0.747,193,1.246,194,1.698,195,0.76,196,1.372,197,2.105,198,0.76,199,0.76,200,0.787,201,0.747,202,1.225,203,0.76,204,0.787,205,0.747,206,0.787,207,0.734,208,0.734,209,1.421,210,1.505,211,0.734,212,0.747,213,1.932,214,1.558,215,0.787,216,0.76,217,1.841,218,0.76,219,0.747,220,0.76,221,0.76,222,0.76,223,0.747,224,0.787,225,0.747,226,0.76,227,0.787,228,0.747,229,0.787,230,0.747,231,0.722,232,0.885,233,0.787,234,0.747,235,0.787,236,0.734,237,0.747,238,0.787,239,0.747,240,0.787,241,0.686,242,0.787,243,0.747,244,1.311,245,0.787,246,0.734,247,0.787,248,0.747,249,0.787,250,0.722,251,0.787,252,0.747,253,0.722,254,0.747,255,0.697,256,0.787,257,0.747,258,0.787,259,0.787,260,0.747,261,0.787,262,0.747,263,0.787,264,0.722,265,0.787,266,0.734,267,0.747,268,0.787,269,0.747,270,0.76,271,0.787,272,0.734,273,0.747,274,1.742,275,0.747,276,0.76,277,0.651,278,0.76,279,0.76,280,0.747,281,0.76,282,0.76,283,0.76,284,0.787,285,0.734,286,0.747,287,0.787,288,0.747,289,0.76,290,0.747,291,0.787,292,0.747,293,0.787,294,0.76,295,0.697,296,0.747,297,0.787,298,0.747,299,0.787,300,0.747,301,0.787,302,0.747,303,0.709,304,0.722,305,0.787,306,0.734,307,0.787,308,0.734,309,0.787,310,0.734,311,0.787,312,0.734,313,0.787,314,0.734,315,0.773,316,0.787,317,1.404,318,0.773,319,0.787,320,0.003,321,0.003,341,2.65,350,0.845,354,2.048,391,2.752,401,2.409,402,2.566,428,2.535,435,1.924,448,1.705,449,1.836,514,2.214,532,1.35,588,2.156,686,1.79,804,2.34,869,2.214,875,3.122,880,1.547,942,1.017,948,2.33,968,2.648,1009,2.752,1046,2.752,1051,2.752,1061,1.596,1067,3.679,1072,2.982,1087,1.837,1171,1.767,1172,1.915,1192,1.79,1214,1.503,1245,2.392,1246,2.005,1379,2.392,1435,3.725,1438,5.227,1446,4.273,1449,3.725,1450,5.163,1451,3.725,1453,2.392,1455,3.725,1457,2.392,1458,2.392,1627,3.833,1713,4.053,1766,1.837,1939,4.977,2048,2.214,2084,2.86,2085,2.86,2102,4.053,2104,1.837,2156,2.392,2173,4.053,2236,2.923,2237,6.307,2238,6.307,2239,6.087,2240,2.923,2241,2.923,2242,6.447,2243,2.923,2244,4.053,2245,2.923,2246,2.923,2247,2.923,2248,2.923,2249,2.923,2250,4.551,2251,2.923,2252,2.923,2253,2.923,2254,2.923,2255,2.923,2256,2.923,2257,2.603,2258,2.923,2259,2.654,2260,3.725,2261,3.284,2262,4.551,2263,4.551,2264,4.551,2265,2.923,2266,2.923,2267,3.725,2268,2.603,2269,2.603,2270,2.392,2271,6.447,2272,2.923,2273,2.923,2274,6.307,2275,6.835,2276,4.551,2277,2.923,2278,2.923,2279,2.923,2280,5.588,2281,2.923,2282,4.551,2283,2.923,2284,2.923,2285,2.923,2286,2.923,2287,2.923,2288,2.923,2289,2.923,2290,2.923,2291,2.923,2292,2.923,2293,2.923,2294,2.923,2295,2.923,2296,2.923,2297,2.923]],["title/components/InputErrorsComponent.html",[0,0.195,234,1.288]],["body/components/InputErrorsComponent.html",[0,0.33,1,1.072,2,0.218,3,0.225,4,1.467,6,1.129,7,1.091,9,0.143,11,0.482,20,1.054,23,0.935,25,0.007,31,2.173,32,1.923,35,1.446,37,0.436,38,0.699,40,1.692,44,1.549,45,4.305,49,1.089,60,0.755,65,0.283,69,0.604,71,0.902,81,0.895,91,0.617,92,0.942,93,0.409,113,1.471,115,1.054,117,2.619,118,0.741,127,4.04,131,2.447,137,0.366,138,1.685,148,0.136,149,0.149,177,0.775,178,1.576,179,1.22,181,1.995,182,1.129,183,1.129,184,1.036,185,1.865,186,1.036,187,1.091,188,0.967,189,1.072,190,1.054,191,2.292,192,1.072,193,1.544,194,2.031,195,1.091,196,1.452,197,2.342,198,1.091,199,1.091,200,1.129,201,1.072,202,1.604,203,1.091,204,1.129,205,1.072,206,1.129,207,1.054,208,1.054,209,1.6,210,1.865,211,1.054,212,1.072,213,1.072,214,1.036,215,1.129,216,1.091,217,2.145,218,1.091,219,1.072,220,1.091,221,1.091,222,1.091,223,1.072,224,1.129,225,1.072,226,1.091,227,1.129,228,1.072,229,1.129,230,1.072,231,1.036,232,1.159,233,1.129,234,1.927,235,1.129,236,1.054,237,1.072,238,1.129,239,1.072,240,1.129,241,0.984,242,1.129,243,1.072,244,1.625,245,1.129,246,1.054,247,1.129,248,1.072,249,1.129,250,1.036,251,1.129,252,1.072,253,1.036,254,1.072,255,1.001,256,1.129,257,1.072,258,1.129,259,1.129,260,1.072,261,1.129,262,1.072,263,1.129,264,1.036,265,1.129,266,1.054,267,1.072,268,1.129,269,1.072,270,1.091,271,1.129,272,1.054,273,1.072,274,1.939,275,1.072,276,1.091,277,0.935,278,1.091,279,1.091,280,1.072,281,1.091,282,1.091,283,1.091,284,1.129,285,1.054,286,1.072,287,1.129,288,1.072,289,1.091,290,1.072,291,1.129,292,1.072,293,1.129,294,1.091,295,1.001,296,1.072,297,1.129,298,1.072,299,1.129,300,1.072,301,1.129,302,1.072,303,1.018,304,1.036,305,1.129,306,1.054,307,1.129,308,1.054,309,1.129,310,1.054,311,1.129,312,1.054,313,1.129,314,1.054,315,1.11,316,1.129,317,1.054,318,1.11,319,1.129,320,0.004,321,0.004,358,0.83,419,1.938,516,3.154,585,3.204,586,4.826,686,2.342,903,3.875,938,2.884,939,3.186,942,1.46,1010,2.877,1192,2.342,1225,2.636,1345,3.903,1609,2.877,2034,6.172,2298,7.964,2299,7.093,2300,4.194,2301,5.305,2302,5.956,2303,5.956,2304,7.541,2305,5.956,2306,4.194,2307,5.305,2308,4.299,2309,4.194,2310,4.194,2311,5.956,2312,4.194,2313,4.194,2314,4.194,2315,5.956]],["title/modules/IoModule.html",[322,1.085,1886,3.455]],["body/modules/IoModule.html",[2,0.311,3,0.321,9,0.203,24,2.224,25,0.007,40,1.144,63,2.002,65,0.341,115,2.455,137,0.521,138,2.403,146,3.126,148,0.283,149,0.213,177,1.105,212,2.478,213,2.478,214,1.867,234,2.498,266,2.455,317,2.435,320,0.005,321,0.005,322,1.629,324,2.457,329,3.176,330,2.165,331,2.002,333,4.262,334,2.631,628,3.583,629,2.695,631,5.983,1433,5.326,1446,4.573,1448,4.573,1459,5.326,1886,6.825,2270,4.895,2299,5.326,2316,5.326,2317,5.326,2318,5.326,2319,5.98,2320,5.98,2321,5.98,2322,5.98,2323,5.98]],["title/interfaces/ItemConfig.html",[338,1.43,1873,3.166]],["body/interfaces/ItemConfig.html",[2,0.265,3,0.274,9,0.173,11,0.586,25,0.007,37,0.529,38,1.094,39,2.238,43,1.341,46,2.33,48,2.909,49,0.984,60,1.201,61,3.745,65,0.242,69,0.845,70,1.886,77,2.371,79,2.023,90,5.913,93,0.957,121,2.738,123,4.274,131,2.799,148,0.165,149,0.324,196,1.196,232,1.326,320,0.005,321,0.005,338,1.934,343,3.72,344,3.609,354,2.041,355,3.442,356,5.14,514,3.315,532,4.309,559,4.282,571,3.148,600,4.674,686,3.018,829,7.297,873,5.522,909,4.465,942,2.851,961,3.974,975,2.698,1009,4.12,1018,3.34,1046,4.12,1051,4.954,1063,6.068,1192,3.222,1220,5.21,1242,4.917,1547,4.465,1672,4.674,1676,6.068,1679,3.203,1681,6.068,1706,4.539,1717,5.369,1873,5.15,2082,4.12,2188,6.706,2324,5.097,2325,6.068,2326,6.706,2327,8.193,2328,6.813,2329,6.835,2330,7.297,2331,6.813,2332,6.813,2333,6.068,2334,6.813,2335,5.21,2336,6.068,2337,4.917]],["title/components/ListComponent.html",[0,0.195,236,1.266]],["body/components/ListComponent.html",[0,0.269,1,0.675,2,0.137,3,0.142,4,1.108,6,0.711,7,0.686,8,0.955,9,0.09,11,0.304,16,1.037,20,0.663,22,2.478,23,0.588,25,0.007,30,1.276,31,2.133,32,1.882,35,0.641,37,0.784,38,0.614,39,1.38,40,1.647,43,1.273,44,1.348,46,0.675,47,1.134,48,2.739,49,0.607,50,2.769,51,1.99,60,0.879,64,2.16,65,0.247,69,0.771,71,1.11,75,0.867,76,1.394,77,1.82,80,1.399,81,1.113,82,1.735,89,2.139,91,1.02,92,0.958,93,0.708,113,1.037,115,0.663,118,0.81,126,1.959,137,0.23,148,0.086,149,0.094,164,1.539,175,4.977,177,0.488,178,1.111,179,0.86,180,1.764,181,1.578,182,0.711,183,0.711,184,0.652,185,1.408,186,0.652,187,0.686,188,0.609,189,0.675,190,0.663,191,1.957,192,0.675,193,1.166,194,1.605,195,0.686,196,1.689,197,2.032,198,0.686,199,0.686,200,0.711,201,0.675,202,1.131,203,0.686,204,0.711,205,0.675,206,0.711,207,0.663,208,0.663,209,1.367,210,1.408,211,0.663,212,0.675,213,0.675,214,0.652,215,0.711,216,0.686,217,1.752,218,0.686,219,0.675,220,0.686,221,0.686,222,0.686,223,0.675,224,0.711,225,0.675,226,0.686,227,0.711,228,0.675,229,0.711,230,0.675,231,0.652,232,1.828,233,0.711,234,0.675,235,0.711,236,1.741,237,0.675,238,0.711,239,0.675,240,0.711,241,0.619,242,0.711,243,0.675,244,1.227,245,0.711,246,0.663,247,0.711,248,0.675,249,0.711,250,0.652,251,0.711,252,0.675,253,0.652,254,0.675,255,0.63,256,0.711,257,0.675,258,0.711,259,0.711,260,0.675,261,0.711,262,0.675,263,0.711,264,0.652,265,0.711,266,0.663,267,0.675,268,0.711,269,0.675,270,0.686,271,0.711,272,0.663,273,0.675,274,1.682,275,0.675,276,0.686,277,1.166,278,0.686,279,0.686,280,0.675,281,0.686,282,0.686,283,0.686,284,0.711,285,0.663,286,0.675,287,0.711,288,0.675,289,0.686,290,0.675,291,0.711,292,0.675,293,0.711,294,0.686,295,0.63,296,0.675,297,0.711,298,0.675,299,0.711,300,0.675,301,0.711,302,0.675,303,0.641,304,0.652,305,0.711,306,0.663,307,0.711,308,0.663,309,0.711,310,0.663,311,0.711,312,0.663,313,0.711,314,0.663,315,0.698,316,0.711,317,0.663,318,0.698,319,0.711,320,0.003,321,0.003,341,1.109,346,0.92,347,3.784,349,4.383,350,1.213,354,2.387,355,2.197,358,0.831,359,3.784,363,1.815,379,3.935,389,4.559,391,3.163,426,0.937,428,1.06,435,2.114,445,1.972,448,2.217,449,2.618,455,1.805,488,3.74,493,3.065,500,3.999,512,1.488,519,2.357,520,3.007,525,3.74,533,3.437,542,4.542,548,1.539,677,1.81,682,1.972,686,1.038,706,1.284,809,5.282,869,1.284,875,1.81,919,2.223,933,4.09,942,1.461,948,1.551,949,2.293,960,2.98,975,1.397,988,3.999,1013,1.81,1014,1.81,1038,3.211,1064,2.449,1087,1.659,1192,2.057,1237,2.544,1264,2.449,1380,2.35,1411,2.752,1414,1.539,1603,2.018,1658,2.752,1677,2.35,1855,3.031,1864,2.16,1933,3.437,2084,2.639,2085,2.639,2104,1.659,2337,1.905,2338,2.639,2339,4.199,2340,4.199,2341,3.437,2342,3.437,2343,5.962,2344,5.309,2345,5.962,2346,5.962,2347,5.962,2348,5.962,2349,4.199,2350,5.962,2351,5.23,2352,4.742,2353,5.77,2354,2.35,2355,4.199,2356,3.437,2357,2.639,2358,2.639,2359,2.639,2360,2.639,2361,2.639,2362,2.639,2363,2.639,2364,2.639,2365,2.639,2366,4.559,2367,2.639,2368,2.639,2369,3.74,2370,2.639,2371,4.199,2372,4.559,2373,4.199,2374,3.74,2375,3.74,2376,2.639,2377,2.639,2378,2.639,2379,2.639,2380,3.437,2381,4.199,2382,2.639,2383,2.639,2384,5.962,2385,4.199,2386,2.639,2387,2.639,2388,2.639,2389,2.639,2390,2.639,2391,2.639,2392,2.639,2393,1.905,2394,2.639,2395,2.639,2396,2.639,2397,2.639,2398,5.796,2399,2.639,2400,2.16,2401,2.639,2402,2.35,2403,2.639,2404,4.199,2405,2.639,2406,4.199,2407,2.639,2408,2.16,2409,2.639,2410,2.35,2411,2.639,2412,2.639,2413,2.35,2414,2.639,2415,4.199,2416,2.639,2417,3.74,2418,2.639,2419,2.639,2420,2.35,2421,2.639,2422,2.639,2423,2.639,2424,2.639,2425,2.639,2426,6.173,2427,2.639,2428,4.199,2429,2.639,2430,2.639,2431,2.35,2432,2.35,2433,2.639,2434,2.639,2435,2.639,2436,2.639,2437,4.199,2438,2.639,2439,2.639,2440,2.639,2441,4.199,2442,4.199,2443,5.962,2444,2.35]],["title/interfaces/ListConfig.html",[338,1.43,349,2.667]],["body/interfaces/ListConfig.html",[2,0.215,3,0.222,9,0.141,11,0.476,19,2.272,25,0.007,30,1.666,32,1.129,37,0.43,38,0.967,43,0.966,48,2.69,61,2.424,65,0.245,69,0.847,70,1.85,79,2.035,89,2.07,92,0.639,93,0.969,118,1.025,126,1.939,148,0.134,149,0.21,196,1.694,232,1.741,320,0.004,321,0.005,338,1.675,344,3.384,346,2.145,349,3.125,354,2.246,363,1.646,428,2.372,433,5.411,435,1.8,445,3.564,493,4.702,500,6.301,509,4.362,513,4.513,514,2.871,532,2.727,582,3.553,601,2.033,682,2.226,739,3.569,786,4.373,851,3.125,897,3.125,903,4.008,933,3.709,949,3.222,960,3.747,967,2.727,975,2.192,1018,2.713,1027,6.677,1035,6.677,1045,4.831,1052,4.831,1064,5.056,1165,4.26,1192,3.24,1218,3.442,1251,3.125,1253,4.26,1258,3.012,1264,5.056,1601,6.136,1602,6.136,1664,3.868,1691,5.624,1705,3.868,1728,3.868,1815,5.056,1873,4.323,1877,4.831,1957,5.256,2052,4.048,2335,4.513,2352,3.709,2400,4.831,2445,4.14,2446,7.497,2447,6.677,2448,6.677,2449,7.497,2450,7.497,2451,7.497,2452,6.301,2453,6.744,2454,7.497,2455,7.497,2456,5.256,2457,5.256,2458,4.513,2459,5.256,2460,5.902,2461,3.569,2462,5.256,2463,5.902,2464,3.687]],["title/injectables/ListConfigService.html",[437,1.266,542,3.301]],["body/injectables/ListConfigService.html",[2,0.284,3,0.293,9,0.186,25,0.007,30,0.957,37,0.567,38,0.987,43,1.299,44,1.544,46,1.821,49,1.029,65,0.254,69,0.733,70,1.079,71,1.092,79,1.96,81,1.243,82,2.008,91,1.317,92,0.97,93,0.873,137,0.475,147,1.862,148,0.177,149,0.194,196,1.714,320,0.005,321,0.005,350,1.576,354,2.802,363,1.521,437,1.994,532,3.666,542,4.669,584,3.075,880,2.888,903,4.501,1006,2.584,1099,4.799,1253,3.936,1766,3.428,2052,4.888,2462,4.857,2465,7.573,2466,4.171,2467,8.414,2468,7.125,2469,7.125,2470,5.832,2471,7.125,2472,7.125,2473,4.857,2474,7.125,2475,4.464,2476,7.125,2477,5.454,2478,7.125,2479,4.857,2480,7.125,2481,5.454,2482,7.125,2483,5.454,2484,5.454,2485,5.454,2486,5.454,2487,7.125,2488,4.857,2489,7.125,2490,5.454,2491,5.454,2492,5.454,2493,7.936,2494,5.454,2495,7.125,2496,5.454,2497,5.454,2498,7.125,2499,5.454,2500,5.454,2501,7.125,2502,5.454,2503,5.454,2504,5.454,2505,7.125,2506,5.454,2507,5.454,2508,5.454]],["title/components/ListHeaderComponent.html",[0,0.195,237,1.288]],["body/components/ListHeaderComponent.html",[0,0.314,1,0.914,2,0.186,3,0.192,4,0.757,6,0.963,7,0.93,9,0.122,11,0.411,20,0.898,23,0.797,24,1.561,25,0.007,31,2.161,32,1.911,35,1.288,37,0.371,38,0.821,39,1.743,40,1.497,43,1.145,44,1.8,45,3.077,46,2.334,49,0.766,65,0.288,69,0.726,71,1.051,77,2.435,80,1.641,81,1.099,82,1.67,91,1.152,92,0.989,93,0.811,110,2.042,113,1.31,115,0.898,117,1.679,118,0.66,126,1.743,136,1.611,137,0.312,148,0.116,149,0.127,177,0.661,178,1.404,179,1.086,181,1.851,182,0.963,183,0.963,184,0.883,185,1.703,186,0.883,187,0.93,188,0.825,189,0.914,190,0.898,191,2.182,192,0.914,193,1.41,194,1.884,195,0.93,196,1.677,197,2.241,198,0.93,199,0.93,200,0.963,201,0.914,202,1.428,203,0.93,204,0.963,205,0.914,206,0.963,207,0.898,208,0.898,209,1.524,210,1.703,211,0.898,212,0.914,213,0.914,214,0.883,215,0.963,216,0.93,217,2.012,218,0.93,219,0.914,220,0.93,221,0.93,222,0.93,223,0.914,224,0.963,225,1.91,226,0.93,227,0.963,228,0.914,229,0.963,230,0.914,231,0.883,232,1.683,233,0.963,234,0.914,235,0.963,236,0.898,237,1.788,238,0.963,239,0.914,240,0.963,241,0.839,242,0.963,243,0.914,244,1.484,245,0.963,246,0.898,247,0.963,248,0.914,249,0.963,250,0.883,251,0.963,252,0.914,253,0.883,254,0.914,255,0.853,256,0.963,257,0.914,258,0.963,259,0.963,260,0.914,261,0.963,262,0.914,263,0.963,264,0.883,265,0.963,266,0.898,267,0.914,268,0.963,269,0.914,270,0.93,271,0.963,272,1.333,273,0.914,274,1.856,275,0.914,276,0.93,277,0.797,278,0.93,279,0.93,280,0.914,281,0.93,282,0.93,283,0.93,284,0.963,285,0.898,286,0.914,287,0.963,288,0.914,289,0.93,290,0.914,291,0.963,292,0.914,293,0.963,294,0.93,295,0.853,296,0.914,297,0.963,298,0.914,299,0.963,300,0.914,301,0.963,302,0.914,303,0.868,304,0.883,305,0.963,306,0.898,307,0.963,308,0.898,309,0.963,310,0.898,311,0.963,312,0.898,313,0.963,314,0.898,315,0.946,316,0.963,317,0.898,318,0.946,319,0.963,320,0.004,321,0.004,330,1.921,349,3.957,350,1.828,355,2.228,358,0.708,363,0.997,401,2.809,419,1.652,493,4.659,542,5.131,706,1.739,804,1.838,820,3.094,919,2.809,960,3.497,967,3.929,1039,3.208,1045,4.342,1074,3.208,1253,3.829,1264,4.081,1940,3.184,2042,4.057,2084,3.334,2085,3.334,2104,2.247,2354,3.184,2444,3.184,2458,4.057,2465,7.274,2509,7.914,2510,3.575,2511,5.305,2512,5.305,2513,5.305,2514,5.305,2515,5.305,2516,5.305,2517,5.305,2518,3.575,2519,3.575,2520,5.305,2521,3.575,2522,5.305,2523,3.575,2524,4.342,2525,7.829,2526,3.575,2527,5.305,2528,3.575,2529,5.305,2530,3.575,2531,5.305,2532,3.829,2533,3.575,2534,5.727,2535,5.305,2536,3.575,2537,3.184,2538,3.184,2539,3.575,2540,3.575,2541,5.305,2542,3.575,2543,3.575,2544,3.575,2545,3.575]],["title/components/ListItemsComponent.html",[0,0.195,239,1.288]],["body/components/ListItemsComponent.html",[0,0.288,1,0.903,2,0.184,3,0.19,4,0.748,6,0.951,7,0.918,9,0.12,11,0.406,16,1.298,20,0.887,22,2.975,23,0.787,24,1.546,25,0.007,30,1.22,31,2.16,32,1.91,35,1.276,37,0.367,38,0.617,40,1.621,44,1.023,45,2.557,48,2.852,49,0.759,51,3.295,60,0.882,65,0.223,69,0.739,71,1.061,76,0.653,77,2.42,80,1.233,81,1.007,82,1.254,91,0.923,92,0.934,93,0.787,113,1.298,115,0.887,118,0.654,126,1.727,137,0.308,148,0.115,149,0.126,167,3.324,177,0.653,178,1.391,179,1.076,181,1.84,182,0.951,183,0.951,184,0.872,185,1.69,186,0.872,187,0.918,188,0.814,189,0.903,190,0.887,191,2.174,192,0.903,193,1.399,194,1.873,195,0.918,196,1.68,197,2.233,198,0.918,199,0.918,200,0.951,201,0.903,202,1.415,203,0.918,204,0.951,205,0.903,206,0.951,207,0.887,208,0.887,209,1.518,210,1.69,211,0.887,212,0.903,213,0.903,214,0.872,215,0.951,216,0.918,217,2.002,218,0.918,219,0.903,220,0.918,221,0.918,222,0.918,223,0.903,224,0.951,225,0.903,226,0.918,227,0.951,228,0.903,229,0.951,230,0.903,231,0.872,232,1.759,233,0.951,234,0.903,235,0.951,236,0.887,237,0.903,238,0.951,239,1.992,240,0.951,241,0.828,242,0.951,243,0.903,244,1.473,245,0.951,246,0.887,247,0.951,248,0.903,249,0.951,250,0.872,251,0.951,252,0.903,253,0.872,254,0.903,255,0.843,256,0.951,257,0.903,258,0.951,259,0.951,260,0.903,261,0.951,262,0.903,263,0.951,264,0.872,265,0.951,266,0.887,267,0.903,268,0.951,269,0.903,270,0.918,271,0.951,272,0.887,273,0.903,274,1.849,275,0.903,276,0.918,277,0.787,278,0.918,279,0.918,280,0.903,281,0.918,282,0.918,283,0.918,284,0.951,285,0.887,286,0.903,287,0.951,288,0.903,289,0.918,290,0.903,291,0.951,292,0.903,293,0.951,294,0.918,295,0.843,296,0.903,297,0.951,298,0.903,299,0.951,300,0.903,301,0.951,302,0.903,303,0.857,304,0.872,305,0.951,306,0.887,307,0.951,308,0.887,309,0.951,310,0.887,311,0.951,312,0.887,313,0.951,314,0.887,315,0.934,316,0.951,317,0.887,318,0.934,319,0.951,320,0.004,321,0.004,346,1.376,347,4.255,350,1.02,358,0.699,359,4.059,379,3.796,389,5.318,419,1.631,435,2.121,448,2.377,449,2.285,500,4.801,509,2.783,519,2.369,520,2.428,595,2.869,682,2.622,820,3.066,873,3.303,875,3.605,933,4.673,949,3.796,960,2.627,988,4.019,1013,3.605,1014,2.422,1053,2.702,1084,2.963,1192,2.735,1206,3.793,1264,3.066,1410,3.575,1423,2.89,1603,2.7,1643,3.793,2084,3.303,2085,3.303,2104,2.219,2344,5.591,2352,3.303,2356,4.302,2366,4.019,2369,4.681,2426,3.145,2431,4.681,2432,3.145,2458,4.019,2465,7.332,2546,7.978,2547,3.531,2548,5.256,2549,5.256,2550,5.256,2551,5.256,2552,6.954,2553,3.531,2554,5.256,2555,3.531,2556,5.256,2557,4.681,2558,5.256,2559,3.531,2560,3.531,2561,3.531,2562,3.531,2563,3.531,2564,5.256,2565,3.531,2566,5.256,2567,3.531,2568,3.531,2569,3.531,2570,3.145,2571,3.531,2572,3.531,2573,3.531,2574,3.531]],["title/modules/ListModule.html",[322,1.085,2575,3.455]],["body/modules/ListModule.html",[2,0.288,3,0.297,9,0.188,24,2.35,25,0.007,63,1.852,65,0.347,137,0.482,138,2.222,146,3.013,147,1.113,148,0.285,149,0.197,177,1.022,196,1.402,236,2.409,237,2.451,239,2.451,267,2.451,283,2.494,320,0.005,321,0.005,322,1.549,324,2.271,329,3.02,330,2.002,331,1.852,334,1.925,542,5.89,548,3.226,628,3.407,629,2.492,632,4.932,706,2.69,1216,6.92,1878,6.577,1888,5.435,1890,5.89,1900,3.991,1903,4.526,2509,4.925,2546,4.925,2575,6.869,2576,4.925,2577,4.925,2578,4.925,2579,4.925,2580,4.925,2581,6.166,2582,5.53,2583,4.925,2584,4.925,2585,5.53,2586,5.53,2587,5.53,2588,5.53,2589,5.53,2590,5.53,2591,5.53]],["title/components/LoaderComponent.html",[0,0.195,241,1.182]],["body/components/LoaderComponent.html",[0,0.31,1,0.877,2,0.178,3,0.184,4,1.307,6,0.924,7,0.892,8,1.242,9,0.117,11,0.395,20,0.862,23,0.765,25,0.007,30,0.602,31,2.158,32,1.909,35,1.248,37,0.356,38,0.603,40,0.656,43,0.842,49,1.114,60,1.066,64,4.209,65,0.22,66,2.571,67,2.644,69,0.538,71,0.957,76,0.95,79,1.693,80,1.723,81,0.886,82,1.227,91,0.756,92,0.911,93,0.501,107,3.524,109,3.089,113,1.693,115,0.862,118,0.913,121,3.716,123,3.002,126,1.69,131,2.815,135,2.001,137,0.299,139,1.066,147,0.69,148,0.167,149,0.22,177,0.634,178,1.361,179,1.263,180,1.441,181,1.814,182,0.924,183,0.924,184,0.847,185,1.661,186,0.847,187,0.892,188,0.791,189,0.877,190,0.862,191,2.153,192,0.877,193,1.375,194,1.846,195,0.892,196,1.353,197,2.214,198,0.892,199,0.892,200,0.924,201,0.877,202,1.385,203,0.892,204,0.924,205,0.877,206,0.924,207,0.862,208,0.862,209,1.503,210,1.661,211,0.862,212,0.877,213,0.877,214,0.847,215,0.924,216,0.892,217,1.977,218,0.892,219,0.877,220,0.892,221,0.892,222,0.892,223,0.877,224,0.924,225,0.877,226,0.892,227,0.924,228,0.877,229,0.924,230,0.877,231,0.847,232,1.001,233,0.924,234,0.877,235,0.924,236,0.862,237,0.877,238,0.924,239,0.877,240,0.924,241,1.875,242,0.924,243,0.877,244,1.447,245,0.924,246,0.862,247,0.924,248,0.877,249,0.924,250,0.847,251,0.924,252,0.877,253,0.847,254,0.877,255,0.818,256,0.924,257,0.877,258,0.924,259,0.924,260,0.877,261,0.924,262,0.877,263,0.924,264,0.847,265,0.924,266,0.862,267,0.877,268,0.924,269,0.877,270,0.892,271,0.924,272,0.862,273,0.877,274,1.833,275,0.877,276,0.892,277,0.765,278,0.892,279,0.892,280,0.877,281,0.892,282,0.892,283,0.892,284,0.924,285,0.862,286,0.877,287,0.924,288,0.877,289,0.892,290,0.877,291,0.924,292,0.877,293,0.924,294,0.892,295,0.818,296,0.877,297,0.924,298,0.877,299,0.924,300,0.877,301,0.924,302,0.877,303,0.833,304,0.847,305,0.924,306,0.862,307,0.924,308,0.862,309,0.924,310,0.862,311,0.924,312,0.862,313,0.924,314,0.862,315,0.908,316,0.924,317,0.862,318,0.908,319,0.924,320,0.003,321,0.003,331,1.148,339,2.001,346,0.752,350,0.991,358,0.679,363,1.721,426,1.217,428,3.379,437,1.292,453,1.349,478,2.156,497,4.198,503,1.242,511,6.311,572,1.171,582,2.924,584,1.934,585,1.862,601,0.805,602,1.825,603,3.566,627,1.585,677,2.353,722,4.58,804,3.172,809,4.846,817,2.571,835,2.808,934,4.145,954,2.001,960,4.281,1006,3.654,1047,2.623,1053,1.763,1062,3.11,1075,2.502,1076,3.528,1239,3.712,1258,3.442,1395,2.807,1410,4.228,1630,2.074,1664,3.37,1675,2.156,1685,2.248,1703,2.623,1727,2.807,1730,3.11,1804,3.712,1921,2.001,2000,3.528,2014,5.05,2017,4.58,2048,1.669,2084,3.232,2085,3.232,2104,2.156,2165,2.623,2196,2.807,2372,4.718,2461,3.731,2592,3.43,2593,5.143,2594,5.143,2595,3.933,2596,5.143,2597,5.143,2598,5.965,2599,8.564,2600,3.43,2601,5.143,2602,3.43,2603,3.43,2604,4.58,2605,3.43,2606,5.143,2607,3.43,2608,3.43,2609,5.143,2610,2.475,2611,5.242,2612,3.43,2613,2.156,2614,3.43,2615,3.43,2616,5.143,2617,3.43,2618,6.17,2619,3.43,2620,5.143,2621,6.17,2622,6.17,2623,3.43,2624,3.43,2625,3.43,2626,3.43,2627,3.43,2628,2.807,2629,3.43,2630,3.43,2631,3.43,2632,5.143,2633,3.43,2634,3.43,2635,3.43,2636,3.43,2637,3.055,2638,5.143,2639,3.43,2640,3.43]],["title/modules/LoaderModule.html",[322,1.085,1889,3.301]],["body/modules/LoaderModule.html",[2,0.359,3,0.371,9,0.235,24,2.6,25,0.007,63,2.312,65,0.333,137,0.602,146,3.332,148,0.297,149,0.246,177,1.276,241,2.316,320,0.006,321,0.006,322,1.779,324,2.836,329,3.469,330,2.5,331,2.312,334,2.874,628,3.914,629,3.112,934,5.745,1889,6.386,2641,6.149,2642,6.149,2643,6.149,2644,6.149,2645,6.904,2646,5.652,2647,6.904]],["title/injectables/LoaderService.html",[437,1.266,934,3.046]],["body/injectables/LoaderService.html",[2,0.323,3,0.334,9,0.211,11,0.715,25,0.007,37,0.645,38,0.909,43,1.017,49,1.118,60,1.175,65,0.276,69,0.735,71,1.009,79,2.181,80,2.204,81,1.141,82,1.482,88,5.311,91,1.139,92,0.838,93,0.755,118,0.773,121,3.875,137,0.541,148,0.202,149,0.221,241,2.262,320,0.005,321,0.005,403,6.895,437,2.119,475,4.92,497,4.41,511,7.583,627,3.577,934,4.682,1053,3.981,1503,5.085,1664,5.074,2048,3.767,2259,4.516,2372,6.45,2604,6.895,2611,7.084,2646,5.085,2648,6.212,2649,7.742,2650,6.212,2651,6.212,2652,6.212,2653,6.212]],["title/components/LocationMapComponent.html",[0,0.195,243,1.288]],["body/components/LocationMapComponent.html",[0,0.326,1,1.025,2,0.209,3,0.215,4,0.85,5,1.901,6,1.08,7,1.043,9,0.136,11,0.461,20,1.008,23,0.894,25,0.007,30,1.012,31,2.17,32,1.919,33,3.781,35,1.4,37,0.417,40,1.674,43,1.488,49,0.833,65,0.143,69,0.711,71,0.976,76,0.741,79,1.825,81,0.873,82,1.377,89,2.26,91,0.849,92,0.948,93,0.562,113,1.425,115,1.008,117,1.826,118,0.841,137,0.35,147,0.807,148,0.13,149,0.143,162,2.628,175,4.412,177,0.741,178,1.527,179,1.181,181,1.955,182,1.08,183,1.08,184,0.99,185,1.819,186,0.99,187,1.043,188,0.925,189,1.025,190,1.008,191,2.262,192,1.025,193,1.506,194,1.99,195,1.043,196,1.431,197,2.315,198,1.043,199,1.043,200,1.08,201,1.025,202,1.553,203,1.043,204,1.08,205,1.025,206,1.08,207,1.008,208,1.008,209,1.579,210,1.819,211,1.008,212,1.025,213,1.025,214,0.99,215,1.08,216,1.043,217,2.108,218,1.043,219,1.025,220,1.043,221,1.043,222,1.043,223,1.025,224,1.08,225,1.025,226,1.043,227,1.08,228,1.025,229,1.08,230,1.025,231,0.99,232,1.122,233,1.08,234,1.025,235,1.08,236,1.008,237,1.025,238,1.08,239,1.025,240,1.08,241,0.941,242,1.08,243,1.889,244,2.085,245,1.08,246,1.008,247,1.08,248,1.025,249,1.08,250,0.99,251,1.08,252,1.025,253,0.99,254,1.025,255,0.957,256,1.08,257,1.025,258,1.08,259,1.08,260,1.025,261,1.08,262,1.025,263,1.08,264,0.99,265,1.08,266,1.008,267,1.025,268,1.08,269,1.025,270,1.043,271,1.08,272,1.008,273,1.025,274,1.916,275,1.025,276,1.043,277,0.894,278,1.043,279,1.043,280,1.025,281,1.043,282,1.043,283,1.043,284,1.08,285,1.008,286,1.025,287,1.08,288,1.025,289,1.043,290,1.025,291,1.08,292,1.025,293,1.08,294,1.043,295,0.957,296,1.025,297,1.08,298,1.025,299,1.08,300,1.025,301,1.08,302,1.025,303,0.974,304,0.99,305,1.08,306,1.008,307,1.08,308,1.008,309,1.08,310,1.008,311,1.08,312,1.008,313,1.08,314,1.008,315,1.061,316,1.08,317,1.008,318,1.061,319,1.08,320,0.004,321,0.004,346,1.264,435,2.254,445,2.176,448,1.223,449,2.428,559,4.247,786,3.365,910,4.501,948,2.131,1258,2.318,1410,2.062,1833,3.283,1969,3.957,2004,5.531,2005,6.972,2007,6.972,2654,6.876,2655,4.011,2656,6.756,2657,5.769,2658,5.769,2659,5.138,2660,8.4,2661,5.138,2662,5.769,2663,5.769,2664,4.011,2665,8.152,2666,4.011,2667,4.011,2668,4.011,2669,5.769,2670,4.011,2671,5.769,2672,5.138,2673,4.011,2674,5.769,2675,4.011,2676,4.011,2677,4.011,2678,4.011,2679,4.011,2680,4.011,2681,5.769,2682,4.011]],["title/modules/LocationModule.html",[322,1.085,2683,3.636]],["body/modules/LocationModule.html",[0,0.317,2,0.302,3,0.312,9,0.198,11,0.669,24,2.62,25,0.007,49,0.839,63,1.946,65,0.342,71,0.695,81,0.959,91,0.855,92,0.629,93,0.566,137,0.507,138,2.335,139,1.806,146,3.085,147,1.494,148,0.289,149,0.207,177,1.074,243,2.455,244,1.919,246,2.413,248,2.455,320,0.005,321,0.005,322,1.919,324,2.387,329,3.118,330,2.104,331,1.946,333,4.185,334,2.584,401,3.93,499,2.919,622,5.313,627,3.43,628,3.518,629,2.619,630,6.255,631,5.358,650,3.653,783,5.358,784,6.611,1967,6.248,1993,4.757,2000,3.986,2683,7.112,2684,5.176,2685,5.176,2686,5.811,2687,5.176,2688,5.176,2689,5.811,2690,7.423,2691,8.906,2692,5.811,2693,5.811,2694,5.811,2695,4.757,2696,5.176,2697,5.811,2698,5.176,2699,5.811,2700,5.811,2701,8.18,2702,5.811,2703,5.811,2704,5.176,2705,5.811,2706,5.811]],["title/components/LocationPickerComponent.html",[0,0.195,246,1.266]],["body/components/LocationPickerComponent.html",[0,0.322,1,0.841,2,0.171,3,0.177,4,0.697,5,1.559,6,0.886,7,0.855,9,0.112,11,0.378,14,2.361,16,1.657,17,4.532,19,1.919,20,2.04,23,0.733,24,1.974,25,0.007,26,3.284,27,2.72,28,3.284,29,2.72,30,1.332,31,2.154,32,1.904,33,3.266,35,1.21,37,0.342,38,0.585,40,1.767,41,4.218,43,1.446,44,1.675,45,3.692,46,1.94,47,2.884,48,2.232,49,0.72,53,3.266,54,4.218,57,3.013,60,0.632,65,0.27,69,0.761,70,0.986,71,1.1,79,1.231,81,0.981,82,1.721,86,3.132,89,1.686,91,0.987,92,0.932,93,0.654,94,3.132,104,3.132,106,3.418,107,2.562,108,1.879,110,1.919,113,1.231,115,1.812,117,2.401,118,0.835,119,2.72,127,4.735,128,3.451,129,2.515,130,2.515,131,1.351,132,3.013,133,2.515,134,2.515,135,1.919,136,1.483,137,0.287,138,1.322,139,1.022,147,0.662,148,0.107,149,0.117,173,2.067,177,0.608,178,1.319,179,1.02,181,1.776,182,0.886,183,0.886,184,0.812,185,1.62,186,0.812,187,0.855,188,0.759,189,0.841,190,0.826,191,2.123,192,0.841,193,1.341,194,1.807,195,0.855,196,1.332,197,2.186,198,0.855,199,0.855,200,0.886,201,0.841,202,1.342,203,0.855,204,0.886,205,0.841,206,0.886,207,0.826,208,0.826,209,1.482,210,1.62,211,0.826,212,0.841,213,0.841,214,0.812,215,0.886,216,0.855,217,1.942,218,0.855,219,0.841,220,0.855,221,0.855,222,0.855,223,0.841,224,0.886,225,0.841,226,0.855,227,0.886,228,0.841,229,0.886,230,0.841,231,0.812,232,0.969,233,0.886,234,0.841,235,0.886,236,0.826,237,0.841,238,0.886,239,0.841,240,0.886,241,0.772,242,0.886,243,2.015,244,2.156,245,0.886,246,1.906,247,0.886,248,2.015,249,0.886,250,0.812,251,0.886,252,0.841,253,0.812,254,0.841,255,0.785,256,0.886,257,0.841,258,0.886,259,0.886,260,0.841,261,0.886,262,0.841,263,0.886,264,0.812,265,0.886,266,0.826,267,0.841,268,0.886,269,0.841,270,0.855,271,0.886,272,0.826,273,0.841,274,1.81,275,0.841,276,0.855,277,0.733,278,0.855,279,0.855,280,0.841,281,0.855,282,0.855,283,0.855,284,0.886,285,0.826,286,0.841,287,0.886,288,0.841,289,0.855,290,0.841,291,0.886,292,0.841,293,0.886,294,0.855,295,0.785,296,0.841,297,0.886,298,0.841,299,0.886,300,0.841,301,0.886,302,0.841,303,0.798,304,0.812,305,0.886,306,0.826,307,0.886,308,0.826,309,0.886,310,0.826,311,0.886,312,0.826,313,0.886,314,0.826,315,0.87,316,0.886,317,0.826,318,0.87,319,0.886,320,0.003,321,0.003,346,1.318,358,0.986,401,2.638,420,2.374,455,1.414,495,2.142,558,3.605,707,3.132,910,4.174,960,2.491,1061,3.664,1206,3.597,1221,4.438,1642,5.477,1967,5.907,1982,4.079,1985,4.079,1986,4.438,1987,4.079,2171,4.438,2654,7.367,2659,4.438,2672,4.438,2695,2.692,2696,2.929,2698,2.929,2707,3.289,2708,4.438,2709,6.016,2710,4.983,2711,6.711,2712,6.016,2713,2.929,2714,4.983,2715,3.289,2716,3.289,2717,3.289,2718,3.289,2719,3.289,2720,6.711,2721,3.289,2722,3.289,2723,4.983,2724,3.289,2725,3.289,2726,4.983,2727,3.289,2728,3.289,2729,4.983,2730,3.289,2731,3.289,2732,4.983,2733,4.983,2734,3.289,2735,3.289,2736,6.016,2737,3.289,2738,3.289,2739,3.289,2740,3.289,2741,4.983]],["title/components/LocationSearchComponent.html",[0,0.195,248,1.288]],["body/components/LocationSearchComponent.html",[0,0.306,1,1.051,2,0.214,3,0.221,4,0.871,6,1.107,7,1.069,9,0.14,11,0.473,16,1.45,20,1.033,23,0.916,25,0.007,31,2.171,32,1.921,35,1.425,37,0.427,38,0.689,40,1.762,43,1.121,49,0.848,60,0.745,65,0.244,69,0.597,71,0.984,76,0.76,81,0.759,82,1.401,89,2.126,91,0.605,92,0.937,93,0.401,109,3.368,110,1.583,113,1.845,115,1.033,118,0.852,136,1.852,137,0.358,148,0.133,149,0.146,177,0.76,178,1.554,179,1.202,181,1.977,182,1.107,183,1.107,184,1.015,185,1.844,186,1.015,187,1.069,188,0.948,189,1.051,190,1.033,191,2.278,192,1.051,193,1.527,194,2.012,195,1.069,196,1.443,197,2.33,198,1.069,199,1.069,200,1.107,201,1.051,202,1.581,203,1.069,204,1.107,205,1.051,206,1.107,207,1.033,208,1.033,209,1.591,210,1.844,211,1.033,212,1.051,213,1.051,214,1.015,215,1.107,216,1.069,217,2.128,218,1.069,219,1.051,220,1.069,221,1.069,222,1.069,223,1.051,224,1.107,225,1.051,226,1.069,227,1.107,228,1.051,229,1.107,230,1.051,231,1.015,232,1.454,233,1.107,234,1.051,235,1.107,236,1.033,237,1.051,238,1.107,239,1.051,240,1.107,241,0.964,242,1.107,243,1.051,244,2.121,245,1.107,246,1.033,247,1.107,248,1.91,249,1.107,250,1.015,251,1.107,252,1.051,253,1.015,254,1.051,255,0.981,256,1.107,257,1.051,258,1.107,259,1.107,260,1.051,261,1.107,262,1.051,263,1.107,264,1.015,265,1.107,266,1.033,267,1.051,268,1.107,269,1.051,270,1.069,271,1.107,272,1.033,273,1.051,274,1.929,275,1.051,276,1.069,277,0.916,278,1.069,279,1.069,280,1.051,281,1.069,282,1.069,283,1.069,284,1.107,285,1.033,286,1.051,287,1.107,288,1.051,289,1.069,290,1.051,291,1.107,292,1.051,293,1.107,294,1.069,295,0.981,296,1.051,297,1.107,298,1.051,299,1.107,300,1.051,301,1.107,302,1.051,303,0.998,304,1.015,305,1.107,306,1.033,307,1.107,308,1.033,309,1.107,310,1.033,311,1.107,312,1.033,313,1.107,314,1.033,315,1.088,316,1.107,317,1.033,318,1.088,319,1.107,320,0.004,321,0.005,358,1.162,435,2.279,448,1.254,449,2.455,537,3.995,558,3.951,603,2.309,910,3.019,948,2.169,1143,4.794,1547,4.897,1642,5.932,1858,6.116,1967,5.935,1969,4.028,1977,7.535,1982,4.806,2004,5.607,2654,6.926,2695,3.364,2713,3.66,2742,4.11,2743,6.1,2744,5.871,2745,7.472,2746,5.871,2747,4.11,2748,4.11,2749,4.11,2750,5.871,2751,4.11,2752,3.66,2753,4.11,2754,4.11,2755,4.11,2756,4.11]],["title/components/LoginComponent.html",[0,0.195,250,1.244]],["body/components/LoginComponent.html",[0,0.294,1,0.948,2,0.193,3,0.199,4,0.786,6,0.999,7,0.965,8,1.343,9,0.126,11,0.427,16,1.346,20,0.932,23,0.827,25,0.007,30,0.651,31,2.164,32,1.914,35,1.323,37,0.385,38,0.64,40,1.451,43,0.607,44,1.637,49,0.787,60,0.903,65,0.27,69,0.748,71,1.045,76,1.007,77,1.897,81,0.479,82,0.885,91,0.802,92,0.93,93,0.694,98,3.426,110,1.428,113,1.346,115,0.932,118,0.944,131,2.239,136,1.672,137,0.323,139,1.152,147,0.747,148,0.12,149,0.132,177,0.686,178,1.442,179,1.116,180,1.558,181,1.885,182,0.999,183,0.999,184,0.916,185,1.74,186,0.916,187,0.965,188,1.643,189,0.948,190,0.932,191,2.208,192,0.948,193,1.44,194,1.918,195,0.965,196,1.392,197,2.265,198,0.965,199,0.965,200,0.999,201,0.948,202,1.468,203,0.965,204,0.999,205,0.948,206,0.999,207,0.932,208,0.932,209,1.542,210,1.74,211,0.932,212,0.948,213,0.948,214,0.916,215,0.999,216,0.965,217,2.043,218,0.965,219,0.948,220,0.965,221,0.965,222,0.965,223,0.948,224,0.999,225,0.948,226,0.965,227,0.999,228,0.948,229,0.999,230,0.948,231,0.916,232,1.06,233,0.999,234,0.948,235,0.999,236,0.932,237,0.948,238,0.999,239,0.948,240,0.999,241,1.279,242,0.999,243,0.948,244,1.516,245,0.999,246,0.932,247,0.999,248,0.948,249,0.999,250,1.759,251,0.999,252,1.652,253,2.252,254,0.948,255,0.885,256,0.999,257,0.948,258,0.999,259,0.999,260,0.948,261,0.999,262,0.948,263,0.999,264,0.916,265,0.999,266,0.932,267,0.948,268,0.999,269,0.948,270,1.681,271,0.999,272,0.932,273,0.948,274,1.875,275,0.948,276,0.965,277,0.827,278,0.965,279,0.965,280,0.948,281,0.965,282,0.965,283,0.965,284,0.999,285,0.932,286,0.948,287,0.999,288,0.948,289,0.965,290,0.948,291,0.999,292,0.948,293,0.999,294,0.965,295,0.885,296,0.948,297,0.999,298,0.948,299,0.999,300,0.948,301,0.999,302,0.948,303,0.9,304,0.916,305,0.999,306,0.932,307,0.999,308,0.932,309,0.999,310,0.932,311,0.999,312,0.932,313,0.999,314,0.932,315,0.982,316,0.999,317,0.932,318,0.982,319,0.999,320,0.004,321,0.004,344,2.239,358,0.734,419,1.714,422,2.677,435,2.315,439,4.973,448,1.663,449,2.694,470,2.431,497,3.702,520,3.665,585,3.204,588,2.583,589,3.934,591,4.214,592,3.86,597,4.593,600,3.739,601,1.279,624,5.279,626,4.769,637,2.837,690,3.426,691,3.036,701,2.091,923,3.528,924,4.062,937,4.473,938,2.873,939,3.055,942,1.897,971,3.934,1005,3.296,1006,2.583,1007,4.664,1012,2.332,1258,2.19,1657,4.168,1730,3.296,1921,3.179,2757,3.709,2758,4.855,2759,5.627,2760,5.451,2761,4.462,2762,3.304,2763,5.451,2764,4.855,2765,3.709,2766,4.462,2767,4.855,2768,3.709,2769,3.709,2770,3.709,2771,4.168,2772,3.709,2773,3.709,2774,3.709,2775,3.709,2776,3.036,2777,3.036,2778,3.709,2779,3.036,2780,3.709,2781,3.304,2782,3.036,2783,3.709,2784,3.304,2785,3.036,2786,3.036]],["title/components/LoginFormComponent.html",[0,0.195,252,1.288]],["body/components/LoginFormComponent.html",[0,0.315,1,0.773,2,0.157,3,0.163,4,0.641,6,0.815,7,0.787,8,1.096,9,0.103,11,0.348,16,1.154,19,1.165,20,0.76,21,2.455,23,0.674,25,0.007,30,1.343,31,2.147,32,1.896,35,1.135,37,0.314,38,0.549,39,1.536,40,1.638,43,1.294,44,1.579,46,2.119,47,2.009,49,0.928,52,2.896,65,0.272,69,0.707,70,1.13,71,1.098,76,0.864,80,1.097,81,0.949,82,1.116,91,0.84,92,0.897,93,0.557,113,1.154,115,0.76,117,2.932,118,1.05,124,2.727,131,2.639,132,3.886,137,0.264,138,1.216,147,0.609,148,0.098,149,0.203,177,0.559,178,1.237,179,0.957,180,1.271,181,1.7,182,0.815,183,0.815,184,0.747,185,1.538,186,0.747,187,0.787,188,1.482,189,0.773,190,0.76,191,2.061,192,0.773,193,1.273,194,1.73,195,0.787,196,1.289,197,2.129,198,0.787,199,0.787,200,0.815,201,0.773,202,1.259,203,0.787,204,0.815,205,0.773,206,0.815,207,0.76,208,0.76,209,1.439,210,1.538,211,0.76,212,0.773,213,0.773,214,0.747,215,0.815,216,0.787,217,1.87,218,0.787,219,0.773,220,0.787,221,0.787,222,0.787,223,0.773,224,0.815,225,0.773,226,0.787,227,0.815,228,0.773,229,0.815,230,0.773,231,0.747,232,0.909,233,0.815,234,0.773,235,0.815,236,0.76,237,0.773,238,0.815,239,0.773,240,0.815,241,1.507,242,0.815,243,0.773,244,1.34,245,0.815,246,0.76,247,0.815,248,0.773,249,0.815,250,0.747,251,0.815,252,1.642,253,2.266,254,0.773,255,0.722,256,0.815,257,0.773,258,0.815,259,0.815,260,0.773,261,0.815,262,0.773,263,0.815,264,0.747,265,0.815,266,0.76,267,0.773,268,0.815,269,0.773,270,2.155,271,0.815,272,0.76,273,0.773,274,1.762,275,0.773,276,0.787,277,1.042,278,0.787,279,0.787,280,0.773,281,0.787,282,0.787,283,0.787,284,0.815,285,0.76,286,0.773,287,0.815,288,0.773,289,0.787,290,0.773,291,0.815,292,0.773,293,0.815,294,0.787,295,0.722,296,0.773,297,0.815,298,0.773,299,0.815,300,0.773,301,0.815,302,0.773,303,0.735,304,0.747,305,0.815,306,0.76,307,0.815,308,0.76,309,0.815,310,0.76,311,0.815,312,0.76,313,0.815,314,0.76,315,0.801,316,0.815,317,0.76,318,0.801,319,0.815,320,0.003,321,0.003,330,1.693,346,1.252,355,3.321,358,0.599,426,1.074,435,2.119,437,1.174,447,2.552,448,2.528,449,2.515,453,2.888,475,1.765,491,3.744,497,3.056,509,2.475,538,1.706,558,3.212,585,3.055,586,2.727,591,3.749,598,1.556,690,3.591,724,2.477,923,3.119,938,2.658,939,2.827,944,1.765,948,2.713,1010,2.076,1042,4.408,1050,3.575,1059,2.727,1143,2.727,1225,1.902,1258,1.879,1414,2.727,1634,3.508,1876,6.709,2048,2.274,2759,4.366,2771,4.369,2786,2.477,2787,9.222,2788,7.548,2789,2.695,2790,5.723,2791,4.163,2792,4.163,2793,6.539,2794,5.723,2795,5.723,2796,5.088,2797,6.186,2798,6.186,2799,5.088,2800,5.088,2801,5.088,2802,5.088,2803,3.026,2804,7.342,2805,4.675,2806,4.675,2807,1.536,2808,3.026,2809,4.163,2810,3.026,2811,5.26,2812,4.163,2813,3.026,2814,4.163,2815,3.026,2816,4.163,2817,2.695,2818,4.163,2819,3.026,2820,4.163,2821,3.026,2822,3.374,2823,3.026,2824,3.026,2825,4.163,2826,3.026,2827,4.163,2828,3.026,2829,3.575,2830,4.163,2831,3.026,2832,3.026,2833,4.163,2834,3.026,2835,3.026,2836,3.026,2837,4.163,2838,3.575,2839,3.026,2840,3.026,2841,3.026,2842,2.695,2843,2.695,2844,2.695,2845,3.026,2846,2.695,2847,2.695,2848,2.695,2849,4.163,2850,2.695,2851,2.695,2852,4.163,2853,3.026,2854,3.026,2855,3.026,2856,3.026,2857,2.695,2858,2.695,2859,2.695,2860,2.695,2861,3.026,2862,2.695,2863,2.695,2864,3.827]],["title/pipes/MaxItemsPipe.html",[1214,2.59,1884,3.852]],["body/pipes/MaxItemsPipe.html",[2,0.362,3,0.373,9,0.236,11,0.8,16,1.717,23,1.549,25,0.007,43,1.138,48,2.44,49,1.004,65,0.247,69,0.606,71,0.832,81,1.072,91,1.023,92,0.96,93,0.677,118,0.865,137,0.606,148,0.226,149,0.247,320,0.006,321,0.006,445,3.588,682,3.588,869,4.034,1193,5.359,1214,4.821,1218,4.055,1224,5.985,1632,8.474,1884,6.341,2865,8.292,2866,6.951,2867,7.385,2868,8.292,2869,8.292,2870,6.951,2871,6.951]],["title/components/MediumEditorComponent.html",[0,0.195,254,1.288]],["body/components/MediumEditorComponent.html",[0,0.312,1,0.89,2,0.181,3,0.187,4,0.737,5,1.65,6,0.937,7,0.905,8,1.26,9,0.118,11,0.4,12,2.932,14,4.367,16,1.284,17,3.912,20,0.875,21,2.675,23,0.776,24,2.031,25,0.007,26,3.398,27,2.839,28,3.398,29,2.839,30,0.913,31,2.159,32,1.908,33,3.408,35,1.262,37,0.362,38,0.61,39,2.547,40,1.537,41,4.34,42,5.595,43,1.446,44,1.211,49,0.751,50,2.753,52,3.112,53,3.408,54,4.34,57,3.144,65,0.246,69,0.736,70,1.029,71,1.079,76,0.961,77,1.81,81,0.955,82,1.85,86,3.268,89,1.735,91,0.765,92,0.914,93,0.783,94,3.268,104,3.268,106,3.567,107,2.674,108,3.03,109,3.112,110,1.34,111,3.976,113,1.705,115,0.875,117,1.646,118,0.859,119,2.839,121,2.969,126,1.708,136,1.569,137,0.303,138,1.399,148,0.113,149,0.124,154,2.849,156,2.662,157,3.1,162,3.408,165,3.1,173,2.188,177,0.643,178,1.376,179,1.065,180,1.462,181,1.827,182,0.937,183,0.937,184,0.86,185,1.676,186,0.86,187,0.905,188,0.803,189,0.89,190,0.875,191,2.163,192,0.89,193,1.388,194,1.859,195,0.905,196,1.361,197,2.224,198,0.905,199,0.905,200,0.937,201,0.89,202,1.4,203,0.905,204,0.937,205,0.89,206,0.937,207,0.875,208,0.875,209,1.51,210,1.676,211,0.875,212,0.89,213,0.89,214,0.86,215,0.937,216,0.905,217,1.99,218,0.905,219,0.89,220,0.905,221,0.905,222,0.905,223,0.89,224,0.937,225,0.89,226,0.905,227,0.937,228,0.89,229,0.937,230,0.89,231,0.86,232,1.012,233,0.937,234,0.89,235,0.937,236,0.875,237,0.89,238,0.937,239,0.89,240,0.937,241,0.817,242,0.937,243,0.89,244,1.46,245,0.937,246,0.875,247,0.937,248,0.89,249,0.937,250,0.86,251,0.937,252,0.89,253,0.86,254,1.981,255,2.109,256,0.937,257,0.89,258,0.937,259,0.937,260,0.89,261,0.937,262,0.89,263,0.937,264,0.86,265,0.937,266,0.875,267,0.89,268,0.937,269,0.89,270,0.905,271,0.937,272,0.875,273,0.89,274,1.841,275,0.89,276,0.905,277,0.776,278,0.905,279,0.905,280,0.89,281,0.905,282,0.905,283,0.905,284,0.937,285,0.875,286,0.89,287,0.937,288,0.89,289,0.905,290,0.89,291,0.937,292,0.89,293,0.937,294,0.905,295,0.831,296,0.89,297,0.937,298,0.89,299,0.937,300,0.89,301,0.937,302,0.89,303,0.845,304,0.86,305,0.937,306,0.875,307,0.937,308,0.875,309,0.937,310,0.875,311,0.937,312,0.875,313,0.937,314,0.875,315,0.921,316,0.937,317,0.875,318,0.921,319,0.937,320,0.003,321,0.003,341,2.184,435,2.106,448,1.062,449,2.269,558,3.694,603,2.448,851,2.753,984,2.512,1507,2.849,1711,3.1,2341,4.256,2342,4.256,2366,3.976,2408,2.849,2872,8.096,2873,8.096,2874,3.481,2875,5.2,2876,5.2,2877,5.2,2878,5.544,2879,6.224,2880,5.2,2881,6.149,2882,6.224,2883,3.481,2884,7.752,2885,3.481,2886,3.481,2887,3.481,2888,3.481,2889,4.631,2890,3.481,2891,3.481,2892,3.481,2893,3.481,2894,3.481,2895,3.481,2896,3.481,2897,3.481,2898,3.481,2899,3.481,2900,3.481,2901,3.481,2902,3.481,2903,3.481,2904,3.481,2905,3.481,2906,3.481,2907,2.849,2908,3.481,2909,3.481,2910,3.481,2911,3.481]],["title/modules/MediumEditorModule.html",[322,1.085,2912,3.636]],["body/modules/MediumEditorModule.html",[2,0.345,3,0.356,9,0.225,24,2.723,25,0.007,26,4.74,27,4.74,28,4.74,29,5.053,30,1.624,63,2.219,65,0.321,137,0.578,146,3.274,147,1.334,148,0.3,149,0.236,177,1.225,254,2.552,255,1.582,320,0.005,321,0.005,322,1.736,324,2.723,329,3.385,330,2.4,331,2.219,334,2.307,628,3.819,629,2.988,2872,5.903,2873,5.903,2912,6.875,2913,5.903,2914,5.903,2915,5.903,2916,5.903,2917,6.628,2918,6.628,2919,6.628,2920,6.628]],["title/components/MenuComponent.html",[0,0.195,257,1.288]],["body/components/MenuComponent.html",[0,0.266,1,0.754,2,0.153,3,0.159,4,0.625,5,1.399,6,0.795,7,0.767,9,0.1,11,0.339,15,3.005,16,1.132,20,0.741,22,2.665,23,0.658,25,0.007,30,1.113,31,2.144,32,1.894,33,3.005,35,1.113,37,0.307,38,0.538,40,1.603,43,1.242,44,1.094,48,2.638,49,0.662,51,3.005,60,0.922,65,0.2,69,0.661,70,1.501,71,1.1,80,1.487,81,1.229,82,1.513,89,1.152,91,1.185,92,0.963,93,0.785,110,1.136,113,1.132,115,0.741,118,1.002,124,1.721,126,2.576,137,0.257,147,0.594,148,0.096,149,0.105,164,0.868,177,0.545,178,1.213,179,0.939,181,1.678,182,0.795,183,0.795,184,0.729,185,1.514,186,0.729,187,0.767,188,0.681,189,0.754,190,0.741,191,2.042,192,0.754,193,1.253,194,1.707,195,0.767,196,1.276,197,2.112,198,0.767,199,0.767,200,0.795,201,0.754,202,1.235,203,0.767,204,0.795,205,0.754,206,0.795,207,0.741,208,0.741,209,1.426,210,1.514,211,0.741,212,0.754,213,0.754,214,0.729,215,0.795,216,0.767,217,1.849,218,0.767,219,0.754,220,0.767,221,0.767,222,0.767,223,0.754,224,0.795,225,0.754,226,0.767,227,0.795,228,0.754,229,0.795,230,0.754,231,0.729,232,1.234,233,0.795,234,0.754,235,0.795,236,0.741,237,0.754,238,0.795,239,0.754,240,0.795,241,0.692,242,0.795,243,0.754,244,1.319,245,0.795,246,0.741,247,0.795,248,0.754,249,0.795,250,0.729,251,0.795,252,0.754,253,0.729,254,0.754,255,0.704,256,0.795,257,1.858,258,1.514,259,0.795,260,0.754,261,0.795,262,0.754,263,0.795,264,0.729,265,0.795,266,0.741,267,0.754,268,0.795,269,0.754,270,0.767,271,0.795,272,0.741,273,0.754,274,1.748,275,0.754,276,0.767,277,1.022,278,0.767,279,0.767,280,0.754,281,0.767,282,0.767,283,0.767,284,0.795,285,0.741,286,0.754,287,0.795,288,0.754,289,0.767,290,0.754,291,0.795,292,0.754,293,0.795,294,0.767,295,0.704,296,0.754,297,0.795,298,0.754,299,0.795,300,0.754,301,0.795,302,0.754,303,0.716,304,0.729,305,0.795,306,0.741,307,0.795,308,0.741,309,0.795,310,0.741,311,0.795,312,0.741,313,0.795,314,0.741,315,0.781,316,0.795,317,0.741,318,0.781,319,0.795,320,0.003,321,0.003,331,1.535,343,4.813,344,2.82,346,1.232,358,0.584,393,3.005,396,3.753,434,4.767,437,1.152,445,2.391,490,5.137,495,1.971,509,2.428,514,3.085,571,1.363,582,3.005,596,1.721,602,1.047,603,2.211,682,1.729,828,3.005,869,3.536,873,4.929,910,2.357,919,2.428,928,5.394,1061,3.968,1250,6.592,1391,2.024,1630,2.773,1921,2.674,2613,2.882,2921,2.951,2922,8.727,2923,5.623,2924,4.585,2925,8.231,2926,8.231,2927,6.34,2928,4.585,2929,4.585,2930,4.585,2931,4.585,2932,4.585,2933,6.34,2934,4.083,2935,4.585,2936,6.866,2937,6.866,2938,2.628,2939,4.585,2940,4.585,2941,6.34,2942,4.585,2943,4.585,2944,4.585,2945,2.951,2946,7.268,2947,4.585,2948,3.753,2949,2.951,2950,2.951,2951,2.951,2952,2.951,2953,2.951,2954,4.585,2955,4.585,2956,2.951,2957,2.951,2958,4.585,2959,4.585,2960,2.951,2961,4.585,2962,2.951,2963,4.585,2964,2.951,2965,4.585,2966,4.585,2967,2.951,2968,4.585,2969,4.585,2970,2.951,2971,4.083,2972,4.585,2973,2.951,2974,2.951,2975,4.585,2976,2.951,2977,4.585,2978,2.951,2979,2.951,2980,2.951,2981,5.008,2982,2.951,2983,4.585,2984,2.951,2985,2.951,2986,2.951,2987,2.951,2988,2.951,2989,5.623,2990,2.951,2991,5.623,2992,2.951,2993,4.585,2994,2.951,2995,2.951,2996,2.951,2997,2.951,2998,2.951,2999,6.34,3000,5.623,3001,2.951,3002,2.951,3003,2.951,3004,5.623,3005,2.951,3006,4.585,3007,4.585,3008,4.585,3009,2.951,3010,2.951,3011,2.951]],["title/components/ModalComponent.html",[0,0.195,260,1.288]],["body/components/ModalComponent.html",[0,0.263,1,0.734,2,0.149,3,0.154,4,1.816,5,2.126,6,1.208,7,0.746,8,1.039,9,0.098,11,0.33,16,1.108,19,1.728,20,0.721,21,2.374,22,2.618,23,0.64,25,0.007,30,1.318,31,2.142,32,1.893,35,1.089,37,0.298,38,0.733,39,1.815,40,1.64,43,1.229,44,1.77,49,0.648,50,2.376,51,2.96,52,2.815,58,6.467,60,0.569,65,0.197,69,0.822,70,1.537,71,1.129,79,2.088,80,1.296,81,0.97,82,1.715,89,1.127,91,0.919,92,0.901,93,0.796,98,2.82,107,3.211,109,4.05,110,1.105,113,1.774,115,0.721,118,0.934,128,4.348,137,0.25,144,2.82,147,0.578,148,0.093,149,0.267,158,3.996,164,1.32,167,2.376,177,0.53,178,1.187,179,0.919,180,1.206,181,1.653,182,0.773,183,0.773,184,0.709,185,1.488,186,0.709,187,0.746,188,0.662,189,0.734,190,0.721,191,2.022,192,0.734,193,1.231,194,1.682,195,0.746,196,1.261,197,2.092,198,0.746,199,0.746,200,0.773,201,0.734,202,1.208,203,0.746,204,0.773,205,0.734,206,0.773,207,0.721,208,0.721,209,1.411,210,1.488,211,0.721,212,0.734,213,0.734,214,0.709,215,0.773,216,0.746,217,1.825,218,0.746,219,0.734,220,0.746,221,0.746,222,0.746,223,0.734,224,0.773,225,0.734,226,0.746,227,0.773,228,0.734,229,0.773,230,0.734,231,0.709,232,0.873,233,0.773,234,0.734,235,0.773,236,0.721,237,0.734,238,0.773,239,0.734,240,0.773,241,0.673,242,0.773,243,0.734,244,1.296,245,0.773,246,0.721,247,0.773,248,0.734,249,0.773,250,0.709,251,0.773,252,0.734,253,0.709,254,0.734,255,0.685,256,0.773,257,0.734,258,0.773,259,0.773,260,1.597,261,0.773,262,0.734,263,0.773,264,0.709,265,0.773,266,0.721,267,0.734,268,0.773,269,0.734,270,0.746,271,0.773,272,2.223,273,0.734,274,1.732,275,0.734,276,0.746,277,0.64,278,0.746,279,0.746,280,0.734,281,0.746,282,0.746,283,0.746,284,0.773,285,0.721,286,0.734,287,0.773,288,0.734,289,0.746,290,0.734,291,0.773,292,0.734,293,0.773,294,0.746,295,0.685,296,0.734,297,0.773,298,0.734,299,0.773,300,0.734,301,0.773,302,0.734,303,0.697,304,0.709,305,0.773,306,0.721,307,0.773,308,0.721,309,0.773,310,0.721,311,0.773,312,0.721,313,0.773,314,0.721,315,0.76,316,0.773,317,0.721,318,0.76,319,0.773,320,0.003,321,0.003,341,2.624,346,0.983,347,3.923,358,0.888,359,4.099,363,1.89,435,1.369,437,1.127,445,1.692,448,1.369,449,0.943,453,2.826,455,1.929,478,2.82,519,1.294,572,1.886,574,2.941,582,3.87,627,2.073,817,1.435,820,3.643,823,3.673,869,1.396,949,3.016,954,1.674,961,2.617,967,3.961,1006,3.558,1039,2.713,1055,1.969,1056,1.881,1058,3.789,1059,2.617,1064,3.222,1065,3.673,1084,1.618,1237,2.687,1253,3.239,1258,2.723,1264,4.379,1395,3.673,1398,3.078,1410,1.476,1411,1.881,1414,1.674,1546,5.033,1548,3.987,1550,3.239,1551,3.239,1552,3.987,1558,1.969,1559,2.195,1560,1.736,1561,2.195,1562,2.195,1564,2.195,1565,3.673,1566,3.789,1568,2.072,1569,2.195,1570,1.881,1576,2.195,1577,3.239,1578,2.072,1579,2.195,1580,1.804,1581,5.186,1582,2.072,1583,2.195,1584,2.072,1585,2.195,1592,2.195,1593,1.881,1594,2.195,1595,2.195,1598,2.195,1630,2.713,1671,3.996,1679,4.719,1715,3.673,1872,3.673,2082,2.713,2094,3.996,2170,2.349,2175,4.777,2227,2.713,2374,4.92,2538,2.556,2807,1.474,3012,2.87,3013,6.364,3014,3.431,3015,3.431,3016,4.487,3017,4.487,3018,4.487,3019,4.487,3020,7.769,3021,6.777,3022,6.686,3023,4.487,3024,4.487,3025,2.941,3026,2.87,3027,4.487,3028,2.87,3029,8.167,3030,2.87,3031,2.87,3032,2.87,3033,2.87,3034,3.673,3035,4.487,3036,4.487,3037,4.487,3038,2.87,3039,2.87,3040,3.673,3041,2.87,3042,2.87,3043,2.87,3044,2.87,3045,2.87,3046,4.487,3047,2.87,3048,4.487,3049,4.487,3050,4.487,3051,2.87,3052,2.556,3053,2.87,3054,4.92,3055,4.487,3056,2.87,3057,2.87,3058,2.87,3059,2.87,3060,2.87,3061,2.87,3062,2.87,3063,2.87,3064,2.87,3065,2.87,3066,4.487]],["title/interfaces/ModelConfig.html",[338,1.43,935,3.301]],["body/interfaces/ModelConfig.html",[2,0.374,3,0.387,9,0.245,11,0.828,25,0.007,37,0.747,38,0.993,46,2.451,65,0.256,69,0.627,79,2.09,93,0.825,148,0.233,320,0.006,321,0.006,338,2.635,350,2.079,682,3.191,686,3.328,897,4.481,935,5.546,980,4.935,1018,4.715,1043,4.01,1075,4.117,1627,5.805,1717,6.082,3067,5.193,3068,6.927,3069,5.118]],["title/injectables/ModelConfigService.html",[437,1.266,936,2.938]],["body/injectables/ModelConfigService.html",[0,0.187,2,0.164,3,0.169,8,2.376,9,0.107,11,0.674,19,1.212,25,0.007,30,1.495,37,0.327,38,0.963,43,1.221,46,2.317,47,2.071,48,1.723,49,0.948,65,0.292,69,0.771,70,1.806,71,0.982,75,1.924,79,1.978,80,1.926,81,1.225,91,1.142,92,0.889,93,0.757,108,3.462,117,2.238,118,1.089,121,2.636,131,1.98,135,2.811,137,0.274,139,0.978,147,1.715,148,0.102,149,0.252,164,1.93,209,1.101,320,0.003,321,0.004,342,3.441,344,2.905,346,1.283,350,0.91,354,2.88,355,3.579,356,1.775,358,0.623,363,1.972,402,3.699,406,2.16,412,2.46,414,3.064,417,1.419,420,2.272,434,3.029,437,1.777,455,2.071,470,2.063,499,1.238,516,3.474,519,2.172,550,2.272,558,3.28,559,3.029,588,3.109,602,1.117,603,2.781,682,2.667,706,1.532,772,3.686,833,3.306,869,1.532,874,3.158,897,4.24,903,1.532,907,6.555,908,2.631,925,2.631,935,3.158,936,2.811,938,2.12,939,2.526,941,4.886,942,2.283,975,1.667,980,5.747,1009,1.904,1024,3.478,1064,2.811,1070,4.511,1072,3.158,1091,2.063,1095,5.384,1096,3.158,1105,2.063,1134,1.904,1158,3.968,1169,2.804,1187,2.272,1192,2.58,1220,2.407,1237,1.532,1251,3.744,1596,2.16,1633,3.686,1634,3.197,1675,3.029,1715,2.577,1717,5.49,1755,4.851,1768,2.407,2126,4.292,2188,2.577,2203,6.106,2222,4.292,2326,2.577,2393,3.478,2466,2.407,2470,3.945,2475,2.577,2532,3.478,2611,5.408,3040,4.793,3067,6.046,3068,3.945,3069,3.968,3070,3.945,3071,3.686,3072,4.292,3073,6.561,3074,4.819,3075,6.561,3076,4.819,3077,4.819,3078,6.561,3079,3.148,3080,4.819,3081,8.52,3082,3.148,3083,4.819,3084,4.292,3085,4.819,3086,4.292,3087,4.819,3088,4.819,3089,4.819,3090,3.148,3091,3.148,3092,3.837,3093,4.819,3094,3.148,3095,4.292,3096,4.292,3097,4.819,3098,4.819,3099,3.945,3100,4.819,3101,3.148,3102,4.819,3103,4.819,3104,3.148,3105,3.148,3106,6.914,3107,3.148,3108,4.819,3109,3.148,3110,3.148,3111,3.148,3112,3.148,3113,4.819,3114,3.148,3115,3.686,3116,3.148,3117,4.819,3118,3.148,3119,2.804,3120,2.804,3121,2.804,3122,4.819,3123,4.292,3124,4.292,3125,4.819,3126,3.148,3127,3.148,3128,3.148,3129,3.148,3130,3.148,3131,3.148,3132,6.561,3133,3.148,3134,3.148,3135,3.148,3136,2.804,3137,3.148,3138,3.148,3139,3.148,3140,3.148,3141,3.148,3142,3.148,3143,4.819,3144,3.148,3145,3.148,3146,3.148,3147,3.148,3148,3.148,3149,3.148,3150,3.148,3151,4.292,3152,4.292,3153,3.148,3154,3.148,3155,3.148,3156,4.819,3157,4.819,3158,3.148,3159,3.148,3160,3.148,3161,3.148,3162,3.148,3163,2.804,3164,3.148,3165,2.804,3166,2.804,3167,2.804,3168,2.407,3169,3.148,3170,3.148,3171,3.148,3172,3.148,3173,4.819,3174,3.148,3175,3.148,3176,4.819,3177,3.148,3178,3.148,3179,3.148,3180,3.148,3181,3.148,3182,2.804,3183,3.148,3184,3.148]],["title/interfaces/ModelConfiguration.html",[338,1.43,3185,4.486]],["body/interfaces/ModelConfiguration.html",[2,0.374,3,0.387,9,0.245,11,0.828,25,0.007,37,0.747,38,0.993,46,2.451,65,0.256,69,0.627,79,2.09,93,0.825,148,0.233,320,0.006,321,0.006,338,2.635,350,2.079,682,3.191,686,3.328,897,4.481,980,4.935,1043,4.01,1075,4.117,1627,5.805,1717,6.082,3067,5.193,3068,6.927,3069,5.118,3185,7.537,3186,7.194]],["title/classes/Notification.html",[149,0.179,591,2.327]],["body/classes/Notification.html",[2,0.4,3,0.275,9,0.174,11,0.885,25,0.007,30,1.199,32,1.307,37,0.532,38,0.802,43,1.118,60,0.866,65,0.182,69,0.85,70,1.828,71,1.141,79,2.305,80,2.063,91,0.753,92,0.554,93,0.955,126,2.244,131,2.806,148,0.166,149,0.243,264,2.172,320,0.005,321,0.005,344,3.748,346,1.685,358,1.522,402,3.852,445,2.9,455,2.936,509,3.617,519,3.079,582,4.168,583,4.294,585,3.532,586,5.131,588,3.237,591,4.576,682,3.095,701,4.959,804,4.219,937,3.852,960,3.415,968,3.889,1006,3.889,1012,5.158,1192,3.459,1242,4.931,1410,4.523,1476,6.034,1593,4.477,1630,4.131,1705,4.477,1708,4.188,2244,6.084,2524,5.592,2532,4.931,2759,4.294,3054,4.557,3187,5.117,3188,6.831,3189,6.831,3190,6.831,3191,5.378,3192,5.117,3193,5.117,3194,5.117,3195,4.686,3196,5.117,3197,5.117,3198,6.084,3199,4.686,3200,5.117,3201,6.831,3202,5.117,3203,6.831,3204,5.117,3205,6.831,3206,5.117,3207,4.557,3208,4.557]],["title/components/NotificationsComponent.html",[0,0.195,264,1.244]],["body/components/NotificationsComponent.html",[0,0.327,1,0.889,2,0.181,3,0.187,4,1.1,6,1.675,7,0.904,8,1.881,9,0.118,11,0.4,16,1.283,20,0.873,23,0.775,25,0.007,30,0.61,31,2.159,32,1.909,35,1.261,37,0.361,38,0.73,40,1.412,43,0.569,44,1.011,60,0.875,61,1.428,65,0.246,69,0.675,71,0.744,76,1.149,77,1.21,79,1.824,80,1.219,81,0.804,91,0.511,92,0.894,93,0.506,113,1.283,115,0.873,118,0.964,126,1.707,137,0.303,145,2.845,148,0.224,149,0.276,177,0.642,178,1.375,179,1.064,180,1.46,181,1.826,182,0.936,183,0.936,184,0.858,185,1.675,186,0.858,187,0.904,188,0.802,189,0.889,190,0.873,191,2.162,192,0.889,193,1.386,194,1.858,195,0.904,196,1.36,197,2.223,198,0.904,199,0.904,200,0.936,201,0.889,202,1.399,203,0.904,204,0.936,205,0.889,206,0.936,207,0.873,208,0.873,209,1.51,210,1.675,211,0.873,212,0.889,213,0.889,214,0.858,215,0.936,216,0.904,217,1.989,218,0.904,219,0.889,220,0.904,221,0.904,222,0.904,223,0.889,224,0.936,225,0.889,226,0.904,227,0.936,228,0.889,229,0.936,230,0.889,231,0.858,232,1.011,233,0.936,234,0.889,235,0.936,236,0.873,237,0.889,238,0.936,239,0.889,240,0.936,241,0.815,242,0.936,243,0.889,244,1.459,245,0.936,246,0.873,247,0.936,248,0.889,249,0.936,250,0.858,251,0.936,252,0.889,253,0.858,254,0.889,255,0.83,256,0.936,257,0.889,258,0.936,259,0.936,260,0.889,261,0.936,262,0.889,263,0.936,264,1.824,265,0.936,266,0.873,267,0.889,268,0.936,269,0.889,270,0.904,271,0.936,272,0.873,273,0.889,274,1.84,275,0.889,276,0.904,277,0.775,278,0.904,279,0.904,280,0.889,281,0.904,282,0.904,283,0.904,284,0.936,285,0.873,286,0.889,287,0.936,288,0.889,289,0.904,290,0.889,291,0.936,292,0.889,293,0.936,294,0.904,295,0.83,296,0.889,297,0.936,298,0.889,299,0.936,300,0.889,301,0.936,302,0.889,303,0.844,304,0.858,305,0.936,306,0.873,307,0.936,308,0.873,309,0.936,310,0.873,311,0.936,312,0.873,313,0.936,314,0.873,315,0.92,316,0.936,317,0.873,318,0.92,319,0.936,320,0.003,321,0.003,322,0.749,338,0.987,344,3.183,350,1.005,358,1.028,393,2.278,426,1.234,445,1.959,503,1.259,519,1.567,585,2.989,586,3.628,588,2.462,591,4.525,592,4.016,602,2.208,605,5.091,627,1.606,682,1.311,686,1.367,701,3.507,727,2.185,739,2.102,772,2.658,804,4.129,809,4.87,835,1.898,869,1.691,924,3.265,937,4.164,948,1.919,960,3.449,961,2.028,968,2.462,1005,3.141,1006,3.912,1007,4.489,1010,2.385,1012,3.909,1043,1.647,1050,2.658,1053,1.787,1062,2.102,1067,2.028,1075,2.527,1113,2.509,1192,2.446,1237,1.691,1258,2.087,1345,2.278,1410,3.797,1476,2.385,1510,2.509,1570,4.522,1580,3.265,1630,2.102,1685,4.076,1728,4.076,1921,2.028,2000,3.563,2038,3.096,2048,2.527,2095,1.841,2267,2.845,2380,4.252,2420,3.096,2459,3.096,2557,4.626,2598,3.563,2610,3.749,2613,3.265,2759,3.265,2838,2.658,3092,2.278,3119,4.626,3191,2.278,3209,3.476,3210,5.195,3211,5.195,3212,5.195,3213,5.195,3214,3.476,3215,2.658,3216,3.476,3217,2.278,3218,5.195,3219,3.476,3220,6.219,3221,6.219,3222,5.195,3223,3.476,3224,3.476,3225,3.476,3226,3.476,3227,3.096,3228,3.476,3229,3.476,3230,3.476,3231,3.476,3232,3.476,3233,2.658,3234,2.658,3235,3.476,3236,3.476,3237,5.195,3238,3.476,3239,3.476,3240,5.195,3241,3.476,3242,3.476,3243,3.476,3244,3.476,3245,3.096,3246,6.219,3247,3.476,3248,3.476,3249,3.476,3250,3.476,3251,6.219,3252,5.539,3253,3.476,3254,3.476,3255,3.476,3256,3.476,3257,3.476,3258,5.195,3259,3.476,3260,3.096,3261,4.626,3262,3.096,3263,3.476]],["title/modules/NotificationsModule.html",[322,1.085,3264,3.636]],["body/modules/NotificationsModule.html",[2,0.334,3,0.345,9,0.218,24,2.628,25,0.007,63,2.15,65,0.343,137,0.56,146,3.229,148,0.29,149,0.229,177,1.187,223,2.501,264,2.416,320,0.005,321,0.005,322,1.703,324,2.638,329,3.32,330,2.325,331,2.15,334,2.75,363,1.791,592,4.544,628,3.745,629,2.894,650,4.036,1887,6.121,1888,5.648,1893,5.256,1900,4.635,3207,5.719,3245,5.719,3264,7.147,3265,5.719,3266,5.719,3267,6.421,3268,5.719,3269,5.719,3270,6.421,3271,6.421,3272,5.719]],["title/injectables/NotificationsService.html",[437,1.266,592,2.451]],["body/injectables/NotificationsService.html",[0,0.252,2,0.246,3,0.255,9,0.161,11,0.545,24,2.53,25,0.007,30,1.396,32,1.241,37,0.492,38,0.761,43,1.21,44,1.673,49,0.937,60,0.823,65,0.283,69,0.726,71,1.054,75,1.557,76,1.589,77,2.257,79,1.826,81,1.159,82,1.131,91,1.088,92,0.801,93,0.721,98,4.077,118,1.095,121,2.607,137,0.413,143,4.221,146,1.787,147,1.489,148,0.154,149,0.169,320,0.004,321,0.004,322,1.398,346,1.621,358,1.463,393,3.106,408,4.077,437,2.161,445,2.446,447,3.541,455,2.037,509,3.434,512,3.657,520,2.997,538,4.849,583,2.979,586,2.764,591,4.601,592,3.156,597,4.894,598,3.335,603,3.127,627,2.997,649,5.309,650,4.077,676,6.577,707,2.979,756,3.251,804,3.335,874,3.106,948,3.177,1012,2.979,1024,4.682,1053,2.437,1058,3.251,1113,4.682,1251,3.434,1258,3.195,1410,4.089,1679,2.979,1728,3.106,1845,3.106,2366,7.035,2393,4.682,3208,4.221,3252,4.221,3260,4.221,3261,5.777,3262,4.221,3272,7.659,3273,4.739,3274,6.486,3275,4.96,3276,9.427,3277,7.952,3278,6.486,3279,7.952,3280,4.739,3281,6.486,3282,6.486,3283,4.739,3284,7.952,3285,7.082,3286,8.6,3287,6.486,3288,4.739,3289,6.486,3290,4.739,3291,6.486,3292,4.739,3293,6.486,3294,4.739,3295,6.586,3296,4.739,3297,4.739,3298,4.739,3299,4.739,3300,4.739,3301,4.739,3302,4.739,3303,4.739,3304,4.739,3305,4.739,3306,4.739,3307,4.739,3308,4.739,3309,4.739,3310,4.739,3311,4.739,3312,4.739,3313,4.739]],["title/components/OutputComponent.html",[0,0.195,266,1.266]],["body/components/OutputComponent.html",[0,0.353,1,1.037,2,0.211,3,0.218,4,1.441,6,1.093,7,1.055,9,0.138,11,0.467,16,1.437,19,2.24,20,1.02,22,3.223,23,0.905,25,0.007,31,2.17,32,1.92,35,1.412,37,0.422,38,0.872,40,1.565,43,0.664,44,1.132,46,2.409,48,2.724,49,0.84,51,3.521,60,0.862,65,0.264,69,0.735,71,0.979,77,2.025,79,1.68,80,1.845,81,0.752,82,0.968,91,0.597,92,0.934,93,0.396,110,1.563,113,1.437,115,1.02,118,0.924,126,1.333,128,3.497,137,0.354,148,0.132,149,0.144,177,0.75,178,1.54,179,1.191,181,1.966,182,1.093,183,1.093,184,1.002,185,1.831,186,1.002,187,1.055,188,0.936,189,1.037,190,1.02,191,2.27,192,1.037,193,1.516,194,2,195,1.055,196,1.436,197,2.322,198,1.055,199,1.055,200,1.093,201,1.037,202,1.567,203,1.055,204,1.093,205,1.037,206,1.093,207,1.02,208,1.02,209,1.585,210,1.831,211,1.976,212,1.037,213,2.155,214,2.021,215,1.093,216,1.055,217,2.118,218,1.055,219,1.037,220,1.055,221,1.055,222,1.055,223,1.037,224,1.093,225,1.037,226,1.055,227,1.093,228,1.037,229,1.093,230,1.037,231,1.002,232,1.132,233,1.093,234,1.037,235,1.093,236,1.02,237,1.037,238,1.093,239,1.037,240,1.093,241,0.952,242,1.093,243,1.037,244,1.596,245,1.093,246,1.02,247,1.093,248,1.037,249,1.093,250,1.002,251,1.093,252,1.037,253,1.002,254,1.037,255,0.968,256,1.093,257,1.037,258,1.093,259,1.093,260,1.037,261,1.093,262,1.037,263,1.093,264,1.002,265,1.093,266,1.866,267,1.037,268,1.093,269,1.037,270,1.055,271,1.093,272,1.02,273,1.037,274,1.922,275,1.037,276,1.055,277,0.905,278,1.055,279,1.055,280,1.037,281,1.055,282,1.055,283,1.055,284,1.093,285,1.02,286,1.037,287,1.093,288,1.037,289,1.055,290,1.037,291,1.093,292,1.037,293,1.093,294,1.055,295,0.968,296,1.037,297,1.093,298,1.037,299,1.093,300,1.037,301,1.093,302,1.037,303,0.985,304,1.002,305,1.093,306,1.02,307,1.093,308,1.02,309,1.093,310,1.02,311,1.093,312,1.02,313,1.093,314,1.02,315,1.074,316,1.093,317,1.709,318,1.074,319,1.093,320,0.004,321,0.004,341,2.444,350,1.173,425,3.518,428,2.733,435,2.497,457,3.813,686,2.288,875,3.991,919,3.933,942,1.412,968,1.923,1061,2.216,1172,2.659,1173,3.103,1386,3.322,1438,6.014,1446,5.201,1449,4.762,1450,6.081,1451,4.762,1453,3.322,1455,3.322,1457,3.322,1458,3.322,2084,3.657,2085,3.657,2104,2.551,2242,5.182,2257,3.614,2268,3.614,2269,3.614,2270,3.322,2271,5.182,3314,4.058,3315,4.058,3316,4.058,3317,4.058,3318,4.058]],["title/classes/Pagination.html",[149,0.179,2352,3.166]],["body/classes/Pagination.html",[2,0.314,3,0.177,8,1.196,9,0.112,11,0.38,24,1.47,25,0.007,30,1.385,37,0.343,38,0.586,43,0.987,44,1.478,45,2.431,48,2.391,49,0.722,50,2.646,60,0.765,65,0.178,69,0.751,71,1.117,76,1.335,77,1.739,79,1.234,80,1.783,81,1.252,82,2.109,89,2.28,91,1.161,92,0.855,93,0.811,118,0.899,126,2.87,147,0.665,148,0.107,149,0.239,164,2.6,232,1.308,320,0.003,321,0.003,341,2.099,346,1.665,349,4.491,354,2.738,358,0.653,363,1.394,391,1.997,405,3.141,426,1.172,428,3.587,445,3.67,447,2.728,453,1.299,455,2.592,475,4.604,478,4.54,491,5.453,495,2.148,514,1.606,519,3.031,520,3.919,538,4.285,582,2.368,585,2.435,588,2.368,597,3.944,598,1.698,601,2.321,603,2.371,682,3.295,686,1.965,753,3.607,869,1.606,907,4.091,975,1.748,1053,1.698,1054,4.451,1074,4.066,1075,2.431,1237,4.193,1239,6.306,1345,2.164,1469,5.989,1470,5.989,1471,5.989,1658,3.275,1664,2.164,1685,2.164,1813,2.525,1815,5.027,1816,2.525,2034,4.936,2307,4.451,2308,4.352,2352,5.841,2380,4.091,2413,5.37,2447,5.37,2464,2.941,2470,5.504,2867,5.989,2934,4.451,2948,4.091,3069,3.022,3285,6.768,3319,3.302,3320,9.138,3321,8.128,3322,5.504,3323,6.724,3324,4.451,3325,4.451,3326,4.998,3327,3.922,3328,3.302,3329,4.998,3330,3.302,3331,3.302,3332,3.302,3333,3.607,3334,3.302,3335,3.302,3336,3.302,3337,4.998,3338,3.302,3339,3.302,3340,3.302,3341,3.302,3342,4.998,3343,3.302,3344,3.302,3345,3.302,3346,3.302,3347,4.998,3348,5.989,3349,3.302,3350,4.998,3351,3.302,3352,4.998,3353,5.37,3354,4.998,3355,3.302,3356,4.998,3357,4.998,3358,3.302,3359,2.941,3360,3.302,3361,3.302,3362,3.302,3363,3.302,3364,3.302,3365,3.302,3366,3.302,3367,7.893,3368,3.302,3369,3.302,3370,8.736,3371,6.724,3372,7.223,3373,3.302,3374,3.302,3375,6.724,3376,4.998,3377,3.302,3378,3.302,3379,3.302,3380,3.302,3381,6.03,3382,3.302,3383,3.302]],["title/components/PaginationComponent.html",[0,0.195,267,1.288]],["body/components/PaginationComponent.html",[0,0.318,1,0.947,2,0.193,3,0.199,4,0.785,6,0.997,7,0.963,9,0.126,11,0.426,16,1.345,20,0.931,21,2.775,22,3.06,23,0.826,25,0.007,31,2.164,32,1.913,35,1.322,37,0.385,38,0.639,39,2.867,40,1.517,43,0.606,49,0.787,50,2.883,51,3.373,52,3.208,60,0.903,65,0.253,69,0.691,70,1.078,71,1.027,76,1.006,77,2.477,80,1.277,81,1.025,82,1.541,89,1.788,91,0.801,92,0.929,93,0.531,109,3.694,110,2.486,111,4.164,113,1.758,115,0.931,118,0.677,126,1.217,136,1.67,137,0.323,147,0.746,148,0.12,149,0.23,164,2.094,177,0.685,178,1.441,179,1.115,181,1.883,182,0.997,183,0.997,184,0.915,185,1.739,186,0.915,187,0.963,188,0.854,189,0.947,190,0.931,191,2.207,192,0.947,193,1.439,194,1.917,195,0.963,196,1.392,197,2.264,198,0.963,199,0.963,200,0.997,201,0.947,202,1.466,203,0.963,204,0.997,205,0.947,206,0.997,207,0.931,208,0.931,209,1.541,210,1.739,211,0.931,212,0.947,213,0.947,214,0.915,215,0.997,216,0.963,217,2.042,218,0.963,219,0.947,220,0.963,221,0.963,222,0.963,223,0.947,224,0.997,225,0.947,226,0.963,227,0.997,228,0.947,229,0.997,230,0.947,231,0.915,232,1.059,233,0.997,234,0.947,235,0.997,236,0.931,237,0.947,238,0.997,239,0.947,240,0.997,241,0.869,242,0.997,243,0.947,244,1.515,245,0.997,246,0.931,247,0.997,248,0.947,249,0.997,250,0.915,251,0.997,252,0.947,253,0.915,254,0.947,255,0.884,256,0.997,257,0.947,258,0.997,259,0.997,260,0.947,261,0.997,262,0.947,263,0.997,264,0.915,265,0.997,266,0.931,267,1.819,268,0.997,269,0.947,270,0.963,271,0.997,272,0.931,273,0.947,274,1.875,275,0.947,276,0.963,277,0.826,278,0.963,279,0.963,280,0.947,281,0.963,282,0.963,283,0.963,284,0.997,285,0.931,286,0.947,287,0.997,288,0.947,289,0.963,290,0.947,291,0.997,292,0.947,293,0.997,294,0.963,295,0.884,296,0.947,297,0.997,298,0.947,299,0.997,300,0.947,301,0.997,302,0.947,303,0.899,304,0.915,305,0.997,306,0.931,307,0.997,308,0.931,309,0.997,310,0.931,311,0.997,312,0.931,313,0.997,314,0.931,315,0.98,316,0.997,317,0.931,318,0.98,319,0.997,320,0.004,321,0.004,346,0.812,350,1.07,354,2.455,391,3.293,425,3.293,426,1.315,448,1.661,457,3.568,519,2.454,537,3.176,571,1.711,601,2.139,603,3.375,919,2.883,938,3.241,960,2.722,975,1.961,1237,2.649,1242,5.137,1815,3.176,2352,5.878,2353,4.938,2417,3.299,2534,5.826,2537,3.299,2570,3.299,3324,4.849,3384,3.704,3385,5.445,3386,7.118,3387,5.445,3388,3.704,3389,3.704,3390,5.445,3391,3.704,3392,3.704,3393,5.443,3394,3.704,3395,3.704,3396,3.704,3397,3.704,3398,5.445,3399,5.445,3400,3.704,3401,5.445,3402,5.445,3403,3.704,3404,5.445,3405,4.849,3406,5.445,3407,3.704,3408,3.704,3409,5.445,3410,5.445,3411,5.445,3412,5.445,3413,5.445,3414,5.445,3415,5.445,3416,5.445,3417,5.445,3418,5.445,3419,5.445,3420,5.445,3421,5.445,3422,5.445]],["title/classes/PaginationConfig.html",[149,0.179,2353,3.852]],["body/classes/PaginationConfig.html",[0,0.302,2,0.327,3,0.338,9,0.214,11,0.723,25,0.007,37,0.653,38,0.915,43,1.029,45,3.795,65,0.224,69,0.773,71,1.061,91,0.925,92,0.681,93,0.613,118,1.055,126,2.563,148,0.204,149,0.278,164,2.295,320,0.005,321,0.005,346,2.036,354,2.657,358,1.678,445,3.344,514,3.795,601,2.266,825,5.173,826,4.011,897,4.13,939,2.421,944,4.55,960,3.9,1006,4.203,1018,4.121,1134,4.717,1192,3.068,1225,3.952,1237,3.795,1239,5.63,1708,5.147,2352,4.903,2353,6.972,3325,6.948,3423,9.117,3424,8.868,3425,8.868,3426,9.519,3427,7.801,3428,6.288,3429,5.966,3430,6.288,3431,4.259,3432,7.801,3433,7.801,3434,7.801]],["title/components/PasswordResetComponent.html",[0,0.195,269,1.288]],["body/components/PasswordResetComponent.html",[0,0.294,1,0.946,2,0.193,3,0.199,4,0.784,6,0.997,7,0.963,8,1.34,9,0.126,11,0.426,16,1.344,20,0.93,23,0.825,25,0.007,30,1.133,31,2.164,32,1.913,35,1.321,37,0.385,38,0.639,40,1.516,43,0.606,44,1.475,46,1.391,49,0.786,60,0.902,65,0.253,69,0.733,70,1.277,71,1.044,76,0.684,77,1.894,81,0.478,82,0.883,91,0.544,92,0.91,93,0.629,110,1.425,113,1.344,115,0.93,117,2.252,118,0.803,136,1.668,137,0.323,139,1.15,147,0.745,148,0.12,149,0.132,167,2.881,177,0.684,178,1.44,179,1.114,180,1.555,181,1.883,182,0.997,183,0.997,184,0.914,185,1.738,186,0.914,187,0.963,188,1.828,189,0.946,190,0.93,191,2.207,192,0.946,193,1.439,194,1.916,195,0.963,196,1.391,197,2.264,198,0.963,199,0.963,200,0.997,201,0.946,202,1.465,203,0.963,204,0.997,205,0.946,206,0.997,207,0.93,208,0.93,209,1.541,210,1.738,211,0.93,212,0.946,213,0.946,214,0.914,215,0.997,216,0.963,217,2.041,218,0.963,219,0.946,220,0.963,221,0.963,222,0.963,223,0.946,224,0.997,225,0.946,226,0.963,227,0.997,228,0.946,229,0.997,230,0.946,231,0.914,232,1.059,233,0.997,234,0.946,235,0.997,236,0.93,237,0.946,238,0.997,239,0.946,240,0.997,241,1.277,242,0.997,243,0.946,244,1.514,245,0.997,246,0.93,247,0.997,248,0.946,249,0.997,250,0.914,251,0.997,252,0.946,253,0.914,254,0.946,255,0.883,256,0.997,257,0.946,258,0.997,259,0.997,260,0.946,261,0.997,262,0.946,263,0.997,264,0.914,265,0.997,266,0.93,267,0.946,268,0.997,269,1.819,270,2.187,271,0.997,272,0.93,273,0.946,274,1.874,275,0.946,276,0.963,277,0.825,278,0.963,279,0.963,280,0.946,281,0.963,282,0.963,283,0.963,284,0.997,285,0.93,286,0.946,287,0.997,288,0.946,289,0.963,290,0.946,291,0.997,292,0.946,293,0.997,294,0.963,295,0.883,296,0.946,297,0.997,298,0.946,299,0.997,300,0.946,301,0.997,302,0.946,303,0.899,304,0.914,305,0.997,306,0.93,307,0.997,308,0.93,309,0.997,310,0.93,311,0.997,312,0.93,313,0.997,314,0.93,315,0.98,316,0.997,317,0.93,318,0.98,319,0.997,320,0.004,321,0.004,330,3.159,344,2.235,346,1.414,358,0.733,419,1.71,422,2.672,435,2.171,438,4.455,439,4.229,448,1.969,449,2.338,470,2.426,497,3.699,519,2.453,558,3.79,583,4.472,585,1.97,586,2.159,591,3.884,592,3.857,605,4.455,612,3.297,624,5.084,626,4.765,637,2.831,639,7.878,690,5.284,923,3.523,938,1.97,942,1.894,971,3.928,1012,3.421,1258,2.187,2049,4.455,2133,7.141,2759,4.983,2762,3.297,2782,3.03,2785,3.03,2811,5.824,2864,3.03,3227,3.297,3435,8.846,3436,3.701,3437,7.928,3438,5.442,3439,5.442,3440,5.442,3441,7.115,3442,5.442,3443,3.701,3444,5.442,3445,3.701,3446,3.701,3447,3.701,3448,5.442,3449,3.701,3450,3.701,3451,4.847,3452,5.442,3453,4.847,3454,3.701,3455,3.701,3456,3.701,3457,3.701,3458,3.701,3459,3.701,3460,3.701,3461,3.701,3462,3.701,3463,3.701,3464,3.701,3465,3.701,3466,3.701,3467,3.701,3468,5.442]],["title/components/PopComponent.html",[0,0.195,272,1.266]],["body/components/PopComponent.html",[0,0.28,1,0.846,2,0.172,3,0.178,4,0.701,5,1.568,6,1.626,7,0.86,8,1.198,9,0.113,11,0.381,20,0.831,21,1.422,23,0.737,25,0.007,30,1.534,31,2.155,32,1.908,35,1.215,37,0.344,38,0.587,39,1.644,40,1.511,43,0.819,44,1.7,49,0.872,60,0.917,61,2.056,65,0.178,69,0.74,70,0.99,71,1.058,76,0.611,79,2.008,80,1.174,81,0.934,82,1.441,91,0.99,92,0.934,93,0.656,107,3.461,109,3.939,113,2.096,115,0.831,118,0.899,137,0.288,148,0.107,149,0.178,167,3.564,177,0.611,178,1.324,179,1.025,180,1.39,181,1.781,182,0.891,183,0.891,184,0.817,185,1.626,186,0.817,187,0.86,188,0.763,189,0.846,190,0.831,191,2.127,192,0.846,193,1.346,194,1.812,195,0.86,196,1.335,197,2.19,198,0.86,199,0.86,200,0.891,201,0.846,202,1.348,203,0.86,204,0.891,205,0.846,206,0.891,207,0.831,208,0.831,209,1.485,210,1.626,211,0.831,212,0.846,213,0.846,214,0.817,215,0.891,216,0.86,217,1.947,218,0.86,219,0.846,220,0.86,221,0.86,222,0.86,223,0.846,224,0.891,225,0.846,226,0.86,227,0.891,228,0.846,229,0.891,230,0.846,231,0.817,232,0.974,233,0.891,234,0.846,235,0.891,236,0.831,237,0.846,238,0.891,239,0.846,240,0.891,241,0.776,242,0.891,243,0.846,244,1.416,245,0.891,246,0.831,247,0.891,248,0.846,249,0.891,250,0.817,251,0.891,252,0.846,253,0.817,254,0.846,255,0.789,256,0.891,257,0.846,258,0.891,259,0.891,260,0.846,261,0.891,262,0.846,263,0.891,264,0.817,265,0.891,266,0.831,267,0.846,268,0.891,269,0.846,270,0.86,271,0.891,272,1.691,273,0.846,274,1.813,275,0.846,276,0.86,277,0.737,278,0.86,279,0.86,280,0.846,281,0.86,282,0.86,283,0.86,284,0.891,285,0.831,286,0.846,287,0.891,288,0.846,289,0.86,290,0.846,291,0.891,292,0.846,293,0.891,294,0.86,295,0.789,296,0.846,297,0.891,298,0.846,299,0.891,300,0.846,301,0.891,302,0.846,303,0.803,304,0.817,305,0.891,306,0.831,307,0.891,308,0.831,309,0.891,310,0.831,311,0.891,312,0.831,313,0.891,314,0.831,315,0.875,316,0.891,317,0.831,318,0.875,319,0.891,320,0.003,321,0.003,346,1.584,347,3.675,358,0.655,359,3.296,363,2.268,426,1.174,435,2.053,442,2.388,448,2.32,449,2.211,455,2.151,491,2.168,520,1.528,572,1.708,582,4.383,601,0.776,817,2.502,820,4.436,948,1.222,949,3.296,954,2.919,960,2.502,967,4.403,988,3.827,1006,4.19,1043,1.568,1067,1.93,1084,2.822,1237,2.435,1258,3.465,1396,2.388,1398,4.141,1410,2.573,1411,2.168,1414,2.919,1419,2.946,1424,6.438,1544,3.827,1546,4.599,1548,4.858,1550,3.612,1551,4.858,1552,4.858,1558,3.433,1560,3.027,1566,3.433,1568,2.388,1570,3.28,1577,4.858,1578,3.612,1580,3.146,1581,3.612,1582,3.612,1584,3.612,1593,3.28,1647,2.708,1649,2.946,1679,2.079,1685,2.168,1864,2.708,2042,2.53,2048,1.609,2082,3.651,2084,3.146,2085,3.146,2104,2.079,2170,2.708,2175,5.147,2196,4.097,2337,2.388,2410,2.946,2613,2.079,2822,2.388,2846,2.946,3013,2.53,3015,2.53,3022,2.946,3191,2.168,3451,2.946,3469,3.308,3470,5.005,3471,5.005,3472,5.005,3473,5.005,3474,3.308,3475,3.308,3476,3.308,3477,3.308,3478,3.308,3479,3.308,3480,3.308,3481,3.308,3482,3.308,3483,3.308,3484,3.308,3485,3.308,3486,3.308,3487,3.308,3488,3.308,3489,2.946,3490,3.308,3491,3.308,3492,3.308,3493,3.308,3494,5.005,3495,6.037,3496,3.308,3497,3.308,3498,3.308,3499,3.308,3500,3.308,3501,3.308,3502,3.308,3503,3.308,3504,3.308,3505,3.308]],["title/modules/PopModule.html",[322,1.085,1887,3.301]],["body/modules/PopModule.html",[2,0.34,3,0.352,9,0.223,24,2.54,25,0.007,63,2.191,65,0.341,137,0.57,146,3.256,147,1.317,148,0.299,149,0.233,177,1.209,260,2.507,272,2.464,320,0.005,321,0.005,322,1.723,324,2.688,329,3.359,330,2.369,331,2.191,334,2.277,628,3.789,629,2.95,979,4.289,1546,5.674,1887,6.469,1888,5.674,1900,4.723,3489,5.828,3506,5.828,3507,5.828,3508,6.544,3509,5.828,3510,5.828,3511,6.544,3512,6.544,3513,6.544,3514,6.544]],["title/injectables/PopService.html",[437,1.266,1546,3.046]],["body/injectables/PopService.html",[2,0.326,3,0.337,9,0.213,11,0.721,25,0.007,37,0.651,38,0.913,43,1.45,65,0.301,69,0.678,71,1.013,76,1.438,118,1.102,126,2.557,137,0.546,147,1.261,148,0.203,149,0.223,164,1.843,272,1.574,320,0.005,321,0.005,350,1.81,358,1.676,401,4.121,437,2.127,445,2.935,448,2.583,809,5.835,817,3.891,903,3.787,967,4.506,979,4.106,1006,3.688,1039,5.614,1064,4.54,1546,4.707,1570,5.804,1770,5.618,2042,5.952,2598,6.624,3515,6.265,3516,9.108,3517,7.783,3518,8.857,3519,8.857,3520,7.783,3521,6.265,3522,6.265,3523,6.265,3524,6.265,3525,6.265,3526,6.265,3527,6.265,3528,6.265,3529,6.265,3530,6.265]],["title/interfaces/ResourceActionbarState.html",[338,1.43,3531,4.486]],["body/interfaces/ResourceActionbarState.html",[0,0.238,2,0.228,3,0.235,4,0.929,9,0.149,16,1.083,19,1.688,21,2.641,25,0.007,30,0.769,31,0.944,32,0.838,37,0.737,38,0.721,40,1.175,44,1.575,48,2.263,52,1.976,65,0.313,69,0.706,70,1.706,75,1.44,76,1.311,81,1.114,93,0.9,98,2.755,109,3.198,121,1.761,137,0.382,139,1.909,147,1.823,148,0.199,149,0.156,184,2.073,188,2.111,232,1.38,236,1.544,273,1.12,274,1.714,295,1.046,320,0.004,321,0.004,338,1.744,339,5.708,341,2.581,342,3.939,343,4.583,344,3.72,345,6.419,346,0.961,347,3.355,350,1.267,351,7.413,355,2.981,356,3.465,358,0.867,359,3.355,360,3.588,363,1.979,369,3.588,391,2.651,412,1.841,414,2.524,417,1.976,428,3.09,435,2.165,449,2.66,477,3.007,489,3.874,496,5.03,499,3.727,505,3.837,520,2.839,572,2.422,585,2.225,592,2.99,601,1.665,686,2.79,704,2.873,705,2.873,706,2.133,736,3.904,869,2.133,880,2.321,937,2.471,957,2.873,1005,2.651,1074,4.897,1217,3.007,1499,3.904,1508,3.904,1510,3.164,2452,6.192,2598,4.215,2637,3.904,3182,3.904,3531,6.849,3532,3.007,3533,3.904,3534,4.384,3535,6.145,3536,7.69,3537,4.384,3538,4.384,3539,4.384,3540,4.384,3541,4.384,3542,6.145,3543,4.384,3544,4.384,3545,4.384,3546,4.384,3547,4.384,3548,3.904,3549,4.384,3550,4.384,3551,4.384,3552,4.384,3553,4.384,3554,4.384,3555,4.384,3556,8.097,3557,4.384,3558,4.384,3559,4.384,3560,6.145,3561,4.384,3562,4.384,3563,4.384,3564,4.384,3565,4.384,3566,4.384,3567,4.384,3568,4.384,3569,4.384,3570,4.384,3571,4.384,3572,4.384,3573,4.384,3574,4.384,3575,4.384,3576,4.384,3577,4.384,3578,4.384,3579,4.384,3580,4.384,3581,4.384,3582,4.384,3583,4.384,3584,4.384,3585,4.384]],["title/injectables/ResourceConfig.html",[437,1.266,489,2.75]],["body/injectables/ResourceConfig.html",[2,0.112,3,0.116,4,0.755,9,0.18,11,0.41,25,0.007,30,1.711,32,0.412,37,0.224,39,0.708,40,0.682,43,1.436,44,0.886,46,2.324,47,3.113,49,0.765,60,0.452,65,0.225,69,0.667,70,1.862,71,0.893,75,2.9,76,0.398,79,0.532,80,0.836,81,1.223,91,0.862,92,0.901,93,0.571,99,1.649,108,1.344,117,2.662,118,0.658,119,1.177,123,2.575,135,1.258,137,0.188,139,0.67,148,0.07,149,0.077,186,1.125,190,0.895,193,1.407,196,1.596,209,0.67,231,1.125,274,1.489,277,1.18,295,2.093,320,0.002,321,0.002,344,3.272,346,1.746,354,2.59,355,4.114,356,4.834,358,0.427,363,2.653,399,1.649,402,2.01,406,3.63,407,1.765,432,5.042,437,1.145,445,1.344,489,1.946,493,4.51,499,2.081,519,0.972,524,1.479,556,2.986,559,3.968,571,0.996,583,1.355,584,1.216,602,0.765,603,0.848,651,1.649,654,2.572,676,5.342,682,1.718,690,3.326,705,5.016,706,1.049,707,4.199,719,4.047,741,3.2,742,4.137,774,1.304,786,1.258,803,2.657,869,2.575,880,1.142,897,1.142,903,1.049,908,1.177,910,1.833,938,2.122,939,2.572,941,4.075,975,1.142,1074,1.304,1095,6.24,1116,2.079,1158,3.2,1171,1.304,1180,1.556,1192,3.341,1217,2.445,1250,1.765,1251,5.133,1596,1.479,1609,1.479,1628,3.63,1629,1.556,1633,6.557,1679,1.355,1689,3.174,1703,2.726,1729,1.649,1754,1.556,1755,3.125,1768,2.726,1769,1.765,1770,1.556,1792,1.556,2130,4.058,2153,4.058,2175,1.649,2225,5.387,2326,6.808,2329,5.622,2461,2.155,2466,1.649,2473,1.92,2479,1.92,2610,1.556,3106,4.713,3120,4.058,3123,3.174,3124,3.174,3136,1.92,3165,5.622,3166,1.92,3167,1.92,3168,5.342,3217,2.336,3353,1.92,3532,5.25,3586,5.292,3587,7.243,3588,3.564,3589,3.564,3590,6.986,3591,3.174,3592,2.156,3593,2.156,3594,5.622,3595,3.564,3596,3.564,3597,2.156,3598,2.156,3599,3.564,3600,2.156,3601,2.156,3602,2.156,3603,3.564,3604,2.156,3605,3.564,3606,2.156,3607,2.156,3608,2.156,3609,1.649,3610,2.156,3611,3.564,3612,2.156,3613,2.156,3614,2.156,3615,2.156,3616,2.156,3617,2.156,3618,2.156,3619,3.564,3620,2.156,3621,2.156,3622,2.156,3623,8.212,3624,4.556,3625,2.156,3626,2.156,3627,4.556,3628,2.156,3629,3.564,3630,5.292,3631,2.156,3632,2.156,3633,2.156,3634,2.156,3635,2.156,3636,2.156,3637,8.212,3638,8.212,3639,2.156,3640,2.156,3641,2.156,3642,2.156,3643,2.156,3644,2.156,3645,2.156,3646,2.156,3647,2.156,3648,2.156,3649,5.292,3650,2.156,3651,2.156,3652,2.156,3653,4.556,3654,3.564,3655,3.564,3656,2.156,3657,2.156,3658,3.564,3659,2.156,3660,2.156,3661,2.156,3662,2.156,3663,2.156,3664,2.156,3665,2.156,3666,2.156,3667,2.156,3668,2.156,3669,2.156,3670,5.292,3671,2.156,3672,2.156,3673,2.156,3674,1.92,3675,2.156,3676,2.156,3677,2.156,3678,2.156,3679,2.156,3680,1.078,3681,2.156,3682,2.156,3683,2.156,3684,2.156,3685,2.156,3686,2.156,3687,2.156,3688,2.156,3689,2.156,3690,2.156,3691,2.156,3692,1.304,3693,2.156,3694,2.156,3695,4.556,3696,5.292,3697,3.564,3698,3.564,3699,3.564,3700,2.156,3701,2.156,3702,2.156,3703,2.156,3704,2.156,3705,2.156,3706,2.156,3707,2.156,3708,2.156,3709,2.156,3710,2.156,3711,2.156,3712,2.156,3713,2.156,3714,2.156,3715,3.564,3716,2.156,3717,2.156,3718,2.156,3719,2.156,3720,1.92,3721,2.156,3722,2.156,3723,2.156,3724,2.156,3725,2.156,3726,2.156,3727,2.156,3728,2.156,3729,2.156,3730,2.156,3731,2.156,3732,2.156,3733,2.156,3734,2.156,3735,2.156,3736,2.156,3737,3.564,3738,2.156,3739,2.156,3740,1.92,3741,2.156,3742,2.156,3743,2.156,3744,2.156,3745,2.156,3746,3.564,3747,2.156,3748,3.564,3749,2.156,3750,3.564,3751,2.156,3752,2.156,3753,2.156,3754,2.156,3755,2.156]],["title/components/ResourceCrudComponent.html",[0,0.195,275,1.288]],["body/components/ResourceCrudComponent.html",[0,0.269,1,0.774,2,0.158,3,0.163,4,1.472,6,0.816,7,0.788,9,0.103,11,0.349,16,1.155,20,0.761,21,2.457,23,0.675,25,0.007,30,0.821,31,2.147,32,1.896,35,1.136,37,0.315,38,0.549,40,1.513,43,0.496,44,1.579,48,1.377,49,1.237,52,2.898,60,0.815,65,0.309,69,0.765,70,1.375,71,1.085,75,2.599,76,1.057,80,1.508,81,1.091,82,1.534,89,1.176,91,0.841,92,0.95,93,0.771,110,2.676,113,1.588,115,0.761,118,0.865,136,1.365,137,0.264,139,1.998,148,0.098,149,0.108,164,0.891,177,0.56,178,1.513,179,0.958,181,1.701,182,0.816,183,0.816,184,0.748,185,1.539,186,0.748,187,0.788,188,1.872,189,0.774,190,0.761,191,2.062,192,0.774,193,1.274,194,1.731,195,0.788,196,1.61,197,2.13,198,0.788,199,0.788,200,0.816,201,0.774,202,1.26,203,0.788,204,0.816,205,0.774,206,0.816,207,0.761,208,0.761,209,1.44,210,1.539,211,0.761,212,0.774,213,0.774,214,0.748,215,0.816,216,0.788,217,1.871,218,0.788,219,0.774,220,0.788,221,0.788,222,0.788,223,0.774,224,0.816,225,0.774,226,0.788,227,0.816,228,0.774,229,0.816,230,0.774,231,0.748,232,1.752,233,0.816,234,0.774,235,0.816,236,0.761,237,0.774,238,0.816,239,0.774,240,0.816,241,1.63,242,0.816,243,0.774,244,1.341,245,0.816,246,0.761,247,0.816,248,0.774,249,0.816,250,0.748,251,0.816,252,0.774,253,0.748,254,0.774,255,0.723,256,0.816,257,0.774,258,0.816,259,0.816,260,0.774,261,0.816,262,0.774,263,0.816,264,0.748,265,0.816,266,0.761,267,0.774,268,0.816,269,0.774,270,0.788,271,0.816,272,0.761,273,0.774,274,2.066,275,1.878,276,0.788,277,0.675,278,0.788,279,1.991,280,0.774,281,1.807,282,0.788,283,0.788,284,0.816,285,0.761,286,0.774,287,0.816,288,0.774,289,0.788,290,0.774,291,0.816,292,0.774,293,0.816,294,0.788,295,0.723,296,0.774,297,0.816,298,0.774,299,0.816,300,0.774,301,0.816,302,0.774,303,0.735,304,0.748,305,0.816,306,0.761,307,0.816,308,0.761,309,0.816,310,0.761,311,0.816,312,0.761,313,0.816,314,0.761,315,0.802,316,0.816,317,0.761,318,0.802,319,0.816,320,0.003,321,0.003,331,1.567,346,0.664,350,0.875,354,1.713,358,0.6,412,2.401,413,1.654,414,2.641,417,1.365,428,1.88,435,2.413,448,1.744,449,2.724,453,1.84,490,4.01,496,3.83,497,3.232,499,2.733,501,6.189,502,4.167,503,1.694,504,4.167,505,2.709,516,2.477,517,4.167,520,2.162,532,2.162,545,5.618,547,1.985,548,1.767,571,1.4,592,3.128,595,1.654,596,1.767,602,1.075,603,2.248,624,3.888,626,3.593,682,2.425,704,1.985,918,3.578,919,2.477,920,3.83,921,3.578,923,3.121,925,2.555,926,4.167,928,5.614,929,4.167,933,4.368,934,4.631,937,3.223,941,4.054,942,1.628,943,4.167,944,2.729,948,2.375,949,2.555,952,4.167,954,2.729,967,3.654,968,3.047,971,3.377,975,1.604,977,2.698,979,1.985,986,5.091,987,2.698,989,2.698,1013,2.078,1014,2.078,1016,4.167,1039,2.829,1042,4.411,1574,3.578,1596,2.078,2330,4.167,3069,2.829,3199,2.078,3532,6.26,3756,8.127,3757,3.029,3758,6.43,3759,5.717,3760,4.679,3761,3.029,3762,3.029,3763,3.029,3764,3.029,3765,3.029,3766,6.43,3767,3.029,3768,3.029,3769,3.029,3770,3.029,3771,3.029,3772,3.029,3773,4.679,3774,3.029,3775,3.029,3776,4.679,3777,3.029,3778,3.029,3779,3.029,3780,2.48,3781,3.029,3782,2.698,3783,3.029,3784,3.029,3785,3.029,3786,3.029,3787,3.029,3788,3.029,3789,3.029,3790,3.029]],["title/components/ResourceListPopComponent.html",[0,0.195,280,1.288]],["body/components/ResourceListPopComponent.html",[0,0.272,1,0.791,2,0.161,3,0.166,4,0.655,6,1.28,7,0.804,9,0.105,16,1.174,19,1.831,20,0.777,22,2.745,23,0.69,25,0.007,30,1.354,31,2.149,32,1.9,35,1.154,37,0.321,38,0.558,39,1.016,40,1.523,43,0.948,44,1.791,48,1.399,49,0.687,51,3.081,60,0.734,65,0.264,66,2.377,67,2.445,69,0.81,70,1.146,71,1.135,76,0.879,79,1.829,80,0.726,81,0.957,82,1.674,91,1.032,92,0.932,93,0.684,107,2.445,109,4.102,110,1.191,113,1.829,115,0.777,118,0.873,128,4.426,136,1.394,137,0.27,139,0.961,148,0.1,149,0.275,167,2.518,177,0.572,178,1.258,179,0.974,181,1.72,182,0.833,183,0.833,184,0.764,185,1.56,186,0.764,187,0.804,188,1.499,189,0.791,190,0.777,191,2.077,192,0.791,193,1.291,194,1.751,195,0.804,196,1.713,197,2.144,198,0.804,199,0.804,200,0.833,201,0.791,202,1.28,203,0.804,204,0.833,205,0.791,206,0.833,207,0.777,208,0.777,209,1.451,210,1.56,211,0.777,212,0.791,213,0.791,214,0.764,215,0.833,216,0.804,217,1.889,218,0.804,219,0.791,220,0.804,221,0.804,222,0.804,223,0.791,224,0.833,225,0.791,226,0.804,227,0.833,228,0.791,229,0.833,230,0.791,231,0.764,232,1.675,233,0.833,234,0.791,235,0.833,236,0.777,237,0.791,238,0.833,239,0.791,240,0.833,241,0.726,242,0.833,243,0.791,244,1.359,245,0.833,246,0.777,247,0.833,248,0.791,249,0.833,250,0.764,251,0.833,252,0.791,253,0.764,254,0.791,255,0.738,256,0.833,257,0.791,258,0.833,259,0.833,260,0.791,261,0.833,262,0.791,263,0.833,264,0.764,265,0.833,266,0.777,267,0.791,268,0.833,269,0.791,270,0.804,271,0.833,272,2.254,273,0.791,274,1.964,275,0.791,276,0.804,277,0.69,278,0.804,279,0.804,280,1.662,281,0.804,282,0.804,283,1.825,284,0.833,285,0.777,286,0.791,287,0.833,288,0.791,289,0.804,290,0.791,291,0.833,292,0.791,293,0.833,294,0.804,295,0.738,296,0.791,297,0.833,298,0.791,299,0.833,300,0.791,301,0.833,302,0.791,303,0.751,304,0.764,305,0.833,306,0.777,307,0.833,308,0.777,309,0.833,310,0.777,311,0.833,312,0.777,313,0.833,314,0.777,315,0.819,316,0.833,317,0.777,318,0.819,319,0.833,320,0.003,321,0.003,346,1.042,347,4.044,349,3.067,350,0.894,354,1.735,358,0.941,359,4.212,363,1.615,379,1.871,391,4.243,435,2.14,448,2.26,449,2.616,455,2.044,489,4.631,499,2.278,505,2.745,538,2.681,572,1.056,582,3.951,671,2.755,704,2.027,705,2.027,706,1.505,817,1.546,820,4.321,908,2.596,933,4.41,948,1.757,949,1.689,954,1.804,967,3.919,1006,3.656,1013,2.122,1014,2.122,1084,1.744,1237,1.505,1258,2.819,1396,4.18,1398,3.262,1410,2.978,1411,2.027,1414,1.804,1543,2.532,1544,3.636,1545,5.79,1546,5.206,1547,4.26,1548,4.18,1550,3.432,1551,3.432,1552,4.18,1555,2.532,1556,2.755,1557,2.755,1558,2.122,1559,2.365,1560,1.871,1561,2.365,1562,2.365,1563,2.532,1564,2.365,1565,3.892,1566,3.973,1567,2.755,1568,2.233,1569,2.365,1570,2.027,1574,3.636,1576,2.365,1577,3.432,1578,2.233,1579,2.365,1580,1.944,1581,2.233,1582,2.233,1583,2.365,1584,2.233,1585,2.365,1586,2.532,1587,2.755,1590,4.235,1591,2.755,1592,2.365,1593,2.027,1594,2.365,1595,2.365,1597,2.532,1598,2.365,1601,2.532,1602,2.532,1603,2.365,1604,2.755,2174,2.755,2180,4.235,2181,2.755,2182,2.755,3532,6.201,3609,2.365,3780,7.399,3782,2.755,3791,5.792,3792,3.093,3793,3.093,3794,3.093,3795,3.093]],["title/modules/ResourceModule.html",[322,1.085,1155,3.455]],["body/modules/ResourceModule.html",[2,0.263,3,0.272,9,0.172,24,2.25,25,0.007,63,1.695,65,0.347,137,0.441,138,2.034,139,1.573,146,2.884,148,0.265,149,0.18,177,0.935,187,2.461,196,1.19,273,2.418,274,2.094,275,2.418,276,2.461,277,1.512,278,2.461,279,2.489,280,2.418,281,2.461,282,2.461,320,0.005,321,0.005,322,1.461,324,2.079,329,2.849,330,1.833,331,1.695,333,3.824,334,2.36,489,4.787,547,3.317,548,2.952,622,5.519,628,3.214,629,2.281,632,4.652,705,3.317,706,2.462,979,5.012,1077,5.303,1106,3.653,1155,6.875,1156,6.201,1175,3.653,1177,3.871,1183,4.143,1843,3.871,1844,3.653,1845,3.317,3533,4.508,3756,4.508,3780,6.26,3796,4.508,3797,4.508,3798,5.061,3799,4.508,3800,4.508,3801,5.061,3802,5.061,3803,5.061,3804,5.061,3805,6.782,3806,5.061]],["title/injectables/ResourceService.html",[437,1.266,1077,3.046]],["body/injectables/ResourceService.html",[0,0.198,2,0.177,3,0.182,9,0.116,11,0.391,25,0.007,30,1.523,37,0.353,38,0.935,43,1.575,44,1.494,46,1.305,48,2.151,49,0.737,60,0.927,61,1.395,65,0.298,69,0.795,70,1.805,71,1.038,75,2.85,76,1.473,77,1.182,80,2.188,81,1.238,84,2.134,89,2.363,91,1.234,92,0.908,93,0.817,117,1.075,118,0.635,119,1.854,121,3.086,131,2.097,137,0.296,147,1.235,148,0.166,149,0.121,164,0.999,188,1.838,196,1.076,209,1.282,274,2.174,277,1.904,320,0.003,321,0.005,338,0.964,339,2.977,342,1.652,346,1.495,350,0.981,354,2.301,356,2.878,358,0.672,363,1.902,405,3.855,412,2.865,413,1.854,414,2.801,417,1.531,437,1.837,447,4.193,448,1.557,449,1.116,455,1.46,489,4.193,493,4.57,495,4.136,499,3.53,505,3.776,524,3.501,537,3.577,538,4.122,547,2.225,550,2.451,587,3.208,597,4.193,598,1.746,602,1.205,627,2.358,648,2.329,686,3.586,704,2.225,706,1.652,727,3.855,741,3.087,742,3.345,817,2.552,851,1.798,880,3.611,903,3.557,925,2.787,948,2.944,957,2.225,1043,2.419,1051,4.421,1055,2.329,1056,2.225,1070,2.053,1072,3.345,1073,3.684,1074,3.087,1075,2.483,1076,3.501,1077,3.087,1078,4.546,1079,4.546,1080,4.546,1082,4.178,1084,2.878,1085,4.178,1087,3.208,1093,4.178,1095,3.684,1096,4.019,1099,3.087,1116,2.977,1127,5.02,1128,2.78,1129,2.78,1130,2.78,1133,4.178,1134,2.053,1138,2.78,1139,2.78,1140,2.78,1141,2.78,1142,5.985,1143,1.981,1144,2.78,1246,2.329,1524,2.78,1560,2.053,1651,2.597,1728,2.225,1740,3.903,3070,2.78,3532,6.03,3609,2.597,3807,3.024,3808,5.104,3809,3.396,3810,6.074,3811,6.074,3812,3.396,3813,4.546,3814,3.396,3815,4.546,3816,3.396,3817,3.396,3818,4.546,3819,3.396,3820,3.903,3821,4.546,3822,4.546,3823,3.396,3824,4.546,3825,4.546,3826,3.396,3827,3.396,3828,3.024,3829,3.024,3830,3.024,3831,3.024,3832,4.178,3833,3.024,3834,6.074,3835,3.024,3836,3.024,3837,3.024,3838,3.024,3839,3.024,3840,3.024,3841,3.024,3842,3.024,3843,3.024,3844,3.024,3845,3.024,3846,3.024,3847,3.024,3848,3.024,3849,3.024,3850,3.024,3851,5.462,3852,3.024,3853,4.546,3854,3.024,3855,3.024,3856,3.024,3857,3.024]],["title/interfaces/SdkField.html",[338,1.43,3858,4.486]],["body/interfaces/SdkField.html",[2,0.445,3,0.305,9,0.193,11,1.06,16,1.807,25,0.007,30,1.589,37,0.59,38,0.859,43,1.527,46,2.537,60,0.928,63,2.45,69,0.861,70,1.929,75,2.808,81,0.946,89,1.838,93,0.713,118,1.126,148,0.184,209,1.607,320,0.005,321,0.005,338,2.077,341,2.387,344,3.719,346,2.136,354,2.759,402,5.105,503,2.058,558,3.658,559,5.372,658,3.315,686,3.183,833,6.401,1064,4.268,1075,3.56,1096,5.601,1116,4.268,1634,4.943,1643,5.282,1664,4.796,3067,4.102,3084,5.061,3096,5.061,3151,7.612,3152,7.612,3199,5.02,3858,6.517,3859,5.683,3860,5.683,3861,5.683,3862,7.318,3863,7.318]],["title/modules/SdkModule.html",[322,1.085,1156,3.301]],["body/modules/SdkModule.html",[2,0.371,3,0.383,9,0.242,24,2.634,25,0.007,63,2.386,65,0.329,137,0.621,146,3.173,148,0.291,149,0.254,177,1.317,320,0.006,321,0.006,322,1.813,324,2.927,329,3.535,330,2.58,331,2.386,333,4.017,334,2.928,414,3.93,1156,6.271,1843,5.448,1844,5.142,1845,4.669,3864,6.345,3865,6.345,3866,7.125,3867,7.125]],["title/injectables/SdkService.html",[414,2.069,437,1.266]],["body/injectables/SdkService.html",[2,0.309,3,0.174,9,0.11,11,0.372,24,2.217,25,0.007,30,1.375,37,0.336,38,0.577,39,1.615,42,5.439,43,1.322,44,1.867,49,0.961,50,4.787,60,1.103,65,0.294,69,0.775,70,1.416,71,1.109,75,1.615,76,1.492,77,3.147,78,3.372,79,2.083,80,1.56,81,1.213,82,1.173,89,1.235,91,1.152,92,0.848,93,0.874,108,2.698,110,1.244,118,1.049,121,3.446,123,2.392,124,1.885,126,2.921,137,0.282,148,0.105,149,0.115,156,3.76,171,2.645,188,2.218,193,1.096,320,0.003,321,0.003,342,2.895,346,1.304,358,0.639,363,2.102,381,4.824,404,2.645,406,6.036,412,2.065,414,2.732,418,2.645,425,2.973,437,1.671,439,5.42,453,3.081,457,3.222,470,2.118,478,4.18,499,2.615,503,2.408,505,3.151,514,3.235,583,5.198,585,1.78,597,4.114,598,1.661,603,2.34,626,3.09,646,3.76,647,3.222,648,6.555,649,4.024,650,3.09,651,5.472,652,4.378,653,4.024,654,4.8,655,4.024,656,3.548,657,5.443,658,2.868,659,4.378,660,4.378,661,4.378,663,4.378,666,2.878,673,4.378,677,3.372,678,4.378,686,1.933,704,2.118,707,2.031,713,5.923,725,2.878,727,2.031,756,2.217,774,5.376,786,2.868,809,3.09,880,1.711,901,4.378,948,1.816,961,2.868,1242,3.548,1414,2.868,1705,4.358,2061,2.878,2133,4.871,2228,2.973,2595,3.76,2776,5.443,2777,2.645,2779,2.645,3071,5.086,3115,3.76,3168,3.76,3591,4.378,3674,4.378,3868,3.231,3869,4.916,3870,4.916,3871,4.916,3872,4.916,3873,6.65,3874,5.923,3875,6.65,3876,8.435,3877,4.916,3878,4.916,3879,5.951,3880,3.231,3881,4.916,3882,3.231,3883,5.951,3884,4.916,3885,3.231,3886,4.916,3887,8.074,3888,4.916,3889,3.231,3890,7.536,3891,4.916,3892,3.231,3893,4.916,3894,3.231,3895,4.378,3896,3.231,3897,3.231,3898,3.231,3899,3.231,3900,5.3,3901,3.231,3902,3.231,3903,3.231,3904,4.916,3905,3.231,3906,3.231,3907,3.231,3908,3.231,3909,3.231,3910,3.231,3911,3.231,3912,3.231,3913,3.231,3914,3.231,3915,3.231,3916,3.231,3917,5.951,3918,3.231,3919,3.231,3920,4.916,3921,3.231,3922,3.231,3923,3.231,3924,5.951,3925,3.231,3926,3.231,3927,3.231,3928,3.231,3929,3.231,3930,3.231,3931,4.916,3932,3.231,3933,3.231,3934,3.231,3935,3.231,3936,3.231,3937,4.916,3938,3.231,3939,3.231,3940,3.231,3941,3.231,3942,3.231,3943,3.231,3944,6.65,3945,3.231,3946,4.916,3947,3.231,3948,3.231,3949,3.231,3950,3.231,3951,3.231]],["title/modules/SelectModule.html",[322,1.085,3952,3.636]],["body/modules/SelectModule.html",[2,0.317,3,0.327,9,0.207,24,2.657,25,0.007,26,4.563,27,4.563,28,4.563,29,4.93,30,1.585,63,2.038,65,0.34,137,0.531,146,3.152,147,1.225,148,0.293,149,0.217,177,1.125,184,2.399,285,2.491,320,0.005,321,0.005,322,1.647,324,2.5,329,3.211,330,2.204,331,2.038,334,2.118,628,3.623,629,2.743,634,4.655,1164,7.443,1165,4.393,1166,4.393,1177,4.655,1889,6.04,1899,4.982,2575,6.665,3952,7.09,3953,5.421,3954,5.421,3955,5.421,3956,6.087,3957,5.421,3958,6.087,3959,5.421,3960,6.087,3961,6.087,3962,6.087]],["title/components/SignupComponent.html",[0,0.195,286,1.288]],["body/components/SignupComponent.html",[0,0.287,1,0.896,2,0.182,3,0.188,4,0.743,6,0.944,7,0.912,8,1.27,9,0.119,11,0.403,16,1.291,19,2.013,20,0.881,23,0.782,25,0.007,30,0.615,31,2.159,32,1.909,35,1.269,37,0.364,38,0.614,40,1.487,43,1.023,44,1.512,46,1.337,49,0.755,60,1.021,65,0.264,69,0.762,71,1.089,76,0.648,77,2.176,79,1.291,81,0.676,82,1.248,91,0.769,92,0.916,93,0.722,98,3.93,110,2.013,113,1.291,115,0.881,117,1.655,118,1.03,128,4.35,131,2.568,136,1.581,137,0.306,139,1.09,147,0.706,148,0.114,149,0.125,177,0.648,178,1.384,179,1.071,180,1.473,181,1.834,182,0.944,183,0.944,184,0.866,185,1.684,186,0.866,187,0.912,188,1.793,189,0.896,190,0.881,191,2.169,192,0.896,193,1.394,194,1.866,195,0.912,196,1.364,197,2.229,198,0.912,199,0.912,200,0.944,201,0.896,202,1.408,203,0.912,204,0.944,205,0.896,206,0.944,207,0.881,208,0.881,209,1.514,210,1.684,211,0.881,212,0.896,213,0.896,214,0.866,215,0.944,216,0.912,217,1.996,218,0.912,219,0.896,220,0.912,221,0.912,222,0.912,223,0.896,224,0.944,225,0.896,226,0.912,227,0.944,228,0.896,229,0.944,230,0.896,231,0.866,232,1.017,233,0.944,234,0.896,235,0.944,236,0.881,237,0.896,238,0.944,239,0.896,240,0.944,241,1.227,242,0.944,243,0.896,244,1.467,245,0.944,246,0.881,247,0.944,248,0.896,249,0.944,250,2.209,251,0.944,252,1.598,253,2.127,254,0.896,255,0.837,256,0.944,257,0.896,258,0.944,259,0.944,260,0.896,261,0.944,262,0.896,263,0.944,264,0.866,265,0.944,266,0.881,267,0.896,268,0.944,269,0.896,270,1.626,271,0.944,272,0.881,273,0.896,274,1.845,275,0.896,276,0.912,277,0.782,278,0.912,279,0.912,280,0.896,281,0.912,282,0.912,283,0.912,284,0.944,285,0.881,286,1.771,287,0.944,288,0.896,289,2.094,290,0.896,291,0.944,292,0.896,293,0.944,294,0.912,295,0.837,296,0.896,297,0.944,298,0.896,299,0.944,300,0.896,301,0.944,302,0.896,303,0.851,304,0.866,305,0.944,306,0.881,307,0.944,308,0.881,309,0.944,310,0.881,311,0.944,312,0.881,313,0.944,314,0.881,315,0.928,316,0.944,317,0.881,318,0.928,319,0.944,320,0.004,321,0.004,344,2.148,422,2.531,435,2.114,439,5.278,448,1.907,449,2.554,470,2.298,497,3.936,520,3.591,585,3.063,588,2.478,589,4.513,591,4.347,592,2.544,597,4.619,600,4.289,601,1.467,624,4.87,626,3.93,638,3.123,690,3.287,691,2.871,701,1.977,702,3.123,719,6.469,923,3.413,924,3.93,937,3.525,938,2.264,939,2.013,942,1.221,971,4.513,1005,3.162,1006,2.478,1007,4.513,1012,2.204,1258,2.101,1630,3.162,1657,4.781,1730,3.781,1921,3.647,2758,4.657,2759,5.762,2764,5.568,2766,2.871,2767,3.123,2771,4.781,2776,2.871,2777,2.871,2779,2.871,2781,3.123,2782,2.871,2784,3.123,2785,2.871,3963,3.507,3964,5.229,3965,5.229,3966,3.507,3967,3.774,3968,3.507,3969,3.507,3970,3.507,3971,3.507,3972,3.507,3973,3.507,3974,3.507,3975,3.507,3976,3.507,3977,3.507,3978,3.507,3979,3.507,3980,3.507,3981,3.507,3982,3.507,3983,3.507,3984,3.507,3985,3.507,3986,3.507]],["title/components/SignupFormComponent.html",[0,0.195,288,1.288]],["body/components/SignupFormComponent.html",[0,0.301,1,0.806,2,0.164,3,0.169,4,0.668,6,0.849,7,0.82,8,1.142,9,0.107,11,0.363,16,1.192,19,1.858,20,0.792,21,2.52,23,0.703,25,0.007,30,1.153,31,2.15,32,1.9,35,1.172,37,0.328,38,0.566,39,1.036,40,1.486,43,1.415,44,1.452,46,2.099,47,1.356,49,1.022,52,3.501,60,0.612,65,0.252,69,0.698,70,0.955,71,1.128,79,1.192,80,1.375,81,1.062,82,1.567,91,0.862,92,0.908,93,0.571,113,1.192,115,0.792,117,2.906,118,1.111,124,3.419,128,4.721,131,2.698,132,2.919,137,0.275,138,1.267,147,0.635,148,0.102,149,0.172,177,0.583,178,1.277,179,0.988,180,1.325,181,1.738,182,0.849,183,0.849,184,0.779,185,1.579,186,0.779,187,0.82,188,1.515,189,0.806,190,0.792,191,2.092,192,0.806,193,1.307,194,1.768,195,0.82,196,1.31,197,2.158,198,0.82,199,0.82,200,0.849,201,0.806,202,1.3,203,0.82,204,0.849,205,0.806,206,0.849,207,0.792,208,0.792,209,1.461,210,1.579,211,0.792,212,0.806,213,0.806,214,0.779,215,0.849,216,0.82,217,1.906,218,0.82,219,0.806,220,0.82,221,0.82,222,0.82,223,0.806,224,0.849,225,0.806,226,0.82,227,0.849,228,0.806,229,0.849,230,0.806,231,0.779,232,0.939,233,0.849,234,0.806,235,0.849,236,0.792,237,0.806,238,0.849,239,0.806,240,0.849,241,1.132,242,0.849,243,0.806,244,1.375,245,0.849,246,0.792,247,0.849,248,0.806,249,0.849,250,0.779,251,0.849,252,2.391,253,2.205,254,0.806,255,0.753,256,0.849,257,0.806,258,0.849,259,0.849,260,0.806,261,0.849,262,0.806,263,0.849,264,0.779,265,0.849,266,0.792,267,0.806,268,0.849,269,0.806,270,1.941,271,0.849,272,0.792,273,0.806,274,1.786,275,0.806,276,0.82,277,1.076,278,0.82,279,0.82,280,0.806,281,0.82,282,0.82,283,0.82,284,0.849,285,0.792,286,0.806,287,0.849,288,1.679,289,2.136,290,0.806,291,0.849,292,0.806,293,0.849,294,0.82,295,0.753,296,0.806,297,0.849,298,0.806,299,0.849,300,0.806,301,0.849,302,0.806,303,0.766,304,0.779,305,0.849,306,0.792,307,0.849,308,0.792,309,0.849,310,0.792,311,0.849,312,0.792,313,0.849,314,0.792,315,0.835,316,0.849,317,0.792,318,0.835,319,0.849,320,0.003,321,0.003,330,2.123,346,1.058,355,3.136,435,1.472,447,2.635,448,2.37,449,1.586,453,3.055,475,1.84,491,3.163,497,2.58,509,1.67,558,3.283,585,2.703,586,1.84,591,3.449,690,3.033,719,6.127,724,2.582,923,3.201,938,2.123,939,1.858,948,2.166,1010,2.164,1042,4.505,1050,4.483,1059,1.84,1143,1.84,1175,2.276,1258,1.267,1414,1.84,1630,2.919,1634,3.585,1876,6.694,2048,1.534,2759,4.128,2771,4.483,2786,2.582,2788,2.582,2789,2.809,2790,5.221,2791,4.298,2792,4.298,2793,6.304,2794,6.919,2795,5.221,2796,4.298,2797,6.919,2798,5.849,2799,4.298,2800,4.298,2801,4.298,2802,4.298,2807,1.036,2809,2.809,2811,5.376,2812,2.809,2814,2.809,2816,2.809,2817,2.809,2818,2.809,2820,2.809,2822,2.276,2825,2.809,2827,2.809,2829,4.483,2830,5.221,2833,2.809,2837,2.809,2838,2.412,2842,2.809,2843,2.809,2844,2.809,2847,2.809,2848,2.809,2849,5.221,2850,2.809,2851,2.809,2852,2.809,2857,2.809,2858,2.809,2859,2.809,2860,2.809,2862,2.809,2863,2.809,2864,3.951,3967,3.483,3987,7.768,3988,6.919,3989,5.862,3990,4.826,3991,3.154,3992,3.154,3993,4.826,3994,3.154,3995,3.154,3996,3.154,3997,3.154,3998,3.154,3999,3.154,4000,3.154,4001,3.154,4002,3.154,4003,3.154,4004,3.154,4005,3.154,4006,4.826,4007,3.154,4008,3.154,4009,3.154,4010,3.154,4011,3.154,4012,3.154,4013,3.154,4014,3.154,4015,3.154,4016,3.154,4017,3.154,4018,3.154,4019,3.154,4020,3.154]],["title/directives/SlotHostDirective.html",[179,1.031,317,1.266]],["body/directives/SlotHostDirective.html",[0,0.367,2,0.352,3,0.364,9,0.231,11,0.78,23,1.511,25,0.007,31,1.76,37,0.704,38,0.958,39,2.683,44,1.589,46,2.087,60,1.036,65,0.241,69,0.712,71,0.977,91,0.997,92,0.734,93,0.66,107,4.199,137,0.591,148,0.22,149,0.241,179,1.795,317,2.052,318,2.161,320,0.005,321,0.005,358,1.735,419,3.131,428,3.657,497,3.593,503,2.957,646,6.245,968,3.87,1251,4.324,1410,4.199,1440,8.033,1484,6.685,4021,8.766,4022,6.777,4023,8.167,4024,6.777,4025,6.777,4026,8.167,4027,6.777]],["title/classes/Sorter.html",[149,0.179,4028,4.486]],["body/classes/Sorter.html",[2,0.252,3,0.26,8,1.752,9,0.165,11,0.757,25,0.007,30,1.154,37,0.776,38,1.141,39,2.635,43,1.223,48,2.812,49,1.159,60,0.613,65,0.172,69,0.805,70,1.828,71,0.894,76,0.894,80,2.077,81,1.235,91,0.968,92,0.712,93,0.863,118,0.602,123,3.2,147,1.504,148,0.26,149,0.266,164,2.199,320,0.005,321,0.004,346,1.896,405,3.041,426,1.717,445,3.163,455,3.212,503,1.752,512,3.709,527,4.311,532,3.705,584,2.727,603,2.939,646,3.699,682,3.586,686,3.299,753,6.389,783,6.666,891,4.308,909,3.17,954,2.822,961,4.359,1062,2.925,1087,3.041,1404,3.699,1484,3.96,1503,6.118,1672,3.318,1685,3.17,1691,6.143,1766,3.041,1877,3.96,1921,3.837,1985,5.384,2082,3.978,2335,3.699,2448,7.471,2456,5.858,2610,4.748,3322,6.565,3359,5.858,4028,7.706,4029,4.308,4030,6.578,4031,8.02,4032,6.578,4033,5.858,4034,5.858,4035,5.858,4036,4.837,4037,6.578,4038,4.837,4039,8.388,4040,6.578,4041,4.837,4042,3.96,4043,5.858,4044,4.837,4045,4.837,4046,4.837,4047,4.837,4048,4.308,4049,4.837,4050,4.308,4051,4.308,4052,4.837,4053,6.578,4054,4.837,4055,4.837,4056,4.837,4057,4.837,4058,4.837,4059,6.578,4060,4.837,4061,4.837,4062,4.837,4063,4.837,4064,4.837,4065,4.837,4066,4.837,4067,4.837]],["title/interfaces/Symbol.html",[338,1.43,938,1.824]],["body/interfaces/Symbol.html",[2,0.365,3,0.377,9,0.239,11,0.807,25,0.007,37,0.729,38,0.979,61,3.425,69,0.727,70,1.907,79,2.059,92,1.058,93,0.867,98,4.411,144,5.241,148,0.228,320,0.006,321,0.006,338,2.367,833,4.814,938,3.489,1046,5.043,1391,5.72,1634,4.553,2053,6.826,2082,5.826,3099,6.826,4068,7.018,4069,8.339,4070,8.339]],["title/modules/SymbolModule.html",[322,1.085,1890,3.301]],["body/modules/SymbolModule.html",[0,0.343,2,0.325,3,0.417,4,1.646,9,0.213,11,0.719,24,2.488,25,0.007,35,1.517,60,0.986,63,2.093,65,0.33,92,0.677,118,0.777,137,0.545,144,3.928,146,3.19,148,0.295,149,0.277,177,1.155,320,0.005,321,0.005,322,1.674,324,2.567,329,3.265,330,2.263,331,2.093,334,2.705,356,3.524,381,3.645,426,2.218,461,4.096,499,3.056,588,2.962,602,2.218,627,3.59,628,3.683,629,2.817,682,2.357,803,3.645,809,4.885,833,4.287,938,3.443,939,3.661,1043,2.962,1214,3.213,1404,4.779,1730,3.779,1829,4.287,1890,6.283,1911,3.309,2048,3.04,2111,3.645,2461,5.504,2613,3.928,2628,5.116,3191,4.096,3393,4.779,4071,5.566,4072,5.566,4073,5.566,4074,5.566,4075,7.456,4076,6.249,4077,3.645,4078,6.468,4079,5.116,4080,5.116,4081,5.566,4082,5.566,4083,5.566,4084,5.566,4085,5.566,4086,5.566,4087,6.921,4088,6.361,4089,4.779,4090,5.566,4091,6.249]],["title/injectables/SymbolPipe.html",[437,1.266,4075,3.852]],["body/injectables/SymbolPipe.html",[2,0.448,3,0.35,9,0.221,11,0.749,16,1.608,25,0.007,37,0.676,49,1.151,63,2.18,65,0.307,69,0.568,70,1.822,71,0.779,80,1.87,81,1.113,91,0.958,92,1.037,93,0.635,137,0.568,148,0.211,149,0.232,178,1.723,320,0.005,321,0.005,358,1.288,437,2.164,453,3.135,503,2.886,602,2.311,658,4.649,686,2.561,938,3.534,939,3.546,1122,7.098,1214,4.615,1218,4.649,1224,5.753,2082,4.82,3393,6.095,4075,6.095,4090,5.799,4092,6.511,4093,7.97,4094,6.511,4095,7.97,4096,5.799,4097,6.511]],["title/injectables/SymbolService.html",[437,1.266,939,1.939]],["body/injectables/SymbolService.html",[2,0.215,3,0.222,8,1.495,9,0.14,11,0.475,25,0.007,37,0.713,38,0.691,43,1.387,44,1.685,49,0.851,60,1.159,65,0.267,69,0.819,70,1.91,71,1.103,76,0.763,79,2.395,80,2.032,81,1.191,82,1.787,88,5.137,91,1.274,92,1.032,93,0.844,98,4.707,118,1.097,123,4.214,126,2.705,137,0.36,147,1.382,148,0.134,149,0.147,164,1.215,180,1.735,320,0.004,321,0.004,358,1.359,437,1.725,478,2.596,627,3.46,701,3.322,783,6.746,786,4.368,880,2.187,903,4.122,938,3.616,939,2.268,1099,2.497,1593,4.908,1729,5.727,2081,8.036,2082,3.563,2461,3.563,3034,6.13,3072,6.669,4078,6.296,4089,6.625,4096,3.678,4098,4.13,4099,5.891,4100,5.891,4101,4.13,4102,7.488,4103,4.13,4104,5.727,4105,8.232,4106,4.13,4107,7.488,4108,4.13,4109,4.13,4110,7.488,4111,4.13,4112,7.488,4113,4.13,4114,5.891,4115,4.13,4116,5.891,4117,4.13,4118,5.891,4119,5.891,4120,4.13,4121,4.13,4122,4.13,4123,4.13,4124,4.13,4125,4.13,4126,4.13,4127,4.13,4128,4.13,4129,5.891,4130,4.13,4131,4.13,4132,4.13,4133,4.13,4134,4.13,4135,7.918,4136,4.13,4137,4.13,4138,4.13,4139,4.13,4140,4.13,4141,4.13,4142,4.13]],["title/components/TabComponent.html",[0,0.195,290,1.288]],["body/components/TabComponent.html",[0,0.302,1,1.013,2,0.206,3,0.213,4,0.84,6,1.067,7,1.031,9,0.135,11,0.456,20,0.996,23,0.884,25,0.007,30,1.178,31,2.169,32,1.919,35,1.389,37,0.412,38,0.671,40,1.601,44,1.113,49,0.826,65,0.204,69,0.747,70,1.454,71,1.061,76,1.057,79,1.815,80,1.342,81,0.739,82,1.365,91,0.583,92,0.928,93,0.386,109,3.66,113,1.413,115,0.996,118,0.712,131,2.35,137,0.346,148,0.129,149,0.141,177,0.733,178,1.514,179,1.171,181,1.945,182,1.067,183,1.067,184,0.979,185,1.808,186,0.979,187,1.031,188,0.914,189,1.013,190,0.996,191,2.254,192,1.013,193,1.496,194,1.979,195,1.031,196,1.425,197,2.307,198,1.031,199,1.031,200,1.067,201,1.013,202,1.541,203,1.031,204,1.067,205,1.013,206,1.067,207,0.996,208,0.996,209,1.574,210,1.808,211,0.996,212,1.013,213,1.013,214,0.979,215,1.067,216,1.031,217,2.098,218,1.031,219,1.013,220,1.031,221,1.031,222,1.031,223,1.013,224,1.067,225,1.013,226,1.031,227,1.067,228,1.013,229,1.067,230,1.013,231,0.979,232,1.746,233,1.067,234,1.013,235,1.067,236,0.996,237,1.013,238,1.067,239,1.013,240,1.067,241,0.93,242,1.067,243,1.013,244,1.575,245,1.067,246,0.996,247,1.067,248,1.013,249,1.067,250,0.979,251,1.067,252,1.013,253,0.979,254,1.013,255,0.946,256,1.067,257,1.013,258,1.067,259,1.067,260,1.013,261,1.067,262,1.013,263,1.067,264,0.979,265,1.067,266,0.996,267,1.013,268,1.067,269,1.013,270,1.031,271,1.067,272,0.996,273,1.013,274,1.91,275,1.013,276,1.031,277,0.884,278,1.031,279,1.031,280,1.013,281,1.031,282,1.031,283,1.031,284,1.067,285,0.996,286,1.013,287,1.067,288,1.013,289,1.031,290,1.879,291,1.067,292,2.294,293,1.067,294,1.031,295,0.946,296,1.013,297,1.067,298,1.013,299,1.067,300,1.013,301,1.067,302,1.013,303,0.962,304,0.979,305,1.067,306,0.996,307,1.067,308,0.996,309,1.067,310,0.996,311,1.067,312,0.996,313,1.067,314,0.996,315,1.049,316,1.067,317,0.996,318,1.049,319,1.067,320,0.004,321,0.004,346,1.254,355,3.274,358,1.328,363,1.106,379,3.46,419,1.831,435,2.663,448,1.745,449,2.75,490,4.255,520,3.395,572,1.953,582,4.402,873,5.386,948,2.715,968,2.711,1193,3.46,1366,4.375,1401,3.245,1403,6.379,1580,3.596,2000,3.924,4143,3.964,4144,7.218,4145,5.721,4146,8.73,4147,5.721,4148,5.721,4149,3.964,4150,3.964,4151,3.964,4152,3.964,4153,3.964,4154,3.964,4155,3.964,4156,5.721,4157,3.964,4158,3.531,4159,3.964,4160,3.964]],["title/components/TabsComponent.html",[0,0.195,292,1.288]],["body/components/TabsComponent.html",[0,0.321,1,0.979,2,0.199,3,0.206,4,1.182,6,1.031,7,0.996,8,1.386,9,0.13,11,0.44,16,1.378,20,0.962,23,0.853,25,0.007,30,0.672,31,2.166,32,1.916,35,1.354,37,0.398,38,0.655,40,1.47,43,0.627,49,0.806,60,0.485,61,2.291,65,0.234,69,0.67,70,1.302,71,0.991,77,1.941,78,3.826,79,1.378,80,1.696,81,0.993,82,1.725,91,0.968,92,0.952,93,0.641,110,1.474,113,1.378,115,0.962,118,0.819,124,3.254,137,0.334,147,1.123,148,0.124,149,0.136,164,1.126,177,0.708,178,1.476,179,1.142,180,1.608,181,1.913,182,1.031,183,1.031,184,0.945,185,1.772,186,0.945,187,0.996,188,0.883,189,0.979,190,0.962,191,2.23,192,0.979,193,1.467,194,1.947,195,0.996,196,1.408,197,2.285,198,0.996,199,0.996,200,1.031,201,0.979,202,1.502,203,0.996,204,1.031,205,0.979,206,1.031,207,0.962,208,0.962,209,1.557,210,1.772,211,0.962,212,0.979,213,0.979,214,0.945,215,1.031,216,0.996,217,2.07,218,0.996,219,0.979,220,0.996,221,0.996,222,0.996,223,0.979,224,1.031,225,0.979,226,0.996,227,1.031,228,0.979,229,1.031,230,0.979,231,0.945,232,1.77,233,1.031,234,0.979,235,1.031,236,0.962,237,0.979,238,1.031,239,0.979,240,1.031,241,0.898,242,1.031,243,0.979,244,1.544,245,1.031,246,0.962,247,1.031,248,0.979,249,1.031,250,0.945,251,1.031,252,0.979,253,0.945,254,0.979,255,0.914,256,1.031,257,0.979,258,1.031,259,1.031,260,0.979,261,1.031,262,0.979,263,1.031,264,0.945,265,1.031,266,0.962,267,0.979,268,1.031,269,0.979,270,0.996,271,1.031,272,0.962,273,0.979,274,1.892,275,0.979,276,0.996,277,0.853,278,0.996,279,0.996,280,0.979,281,0.996,282,0.996,283,0.996,284,1.031,285,0.962,286,0.979,287,1.031,288,0.979,289,0.996,290,2.277,291,1.031,292,2.051,293,1.031,294,0.996,295,0.914,296,0.979,297,1.031,298,0.979,299,1.031,300,0.979,301,1.031,302,0.979,303,0.929,304,0.945,305,1.031,306,0.962,307,1.031,308,0.962,309,1.031,310,0.962,311,1.031,312,0.962,313,1.031,314,0.962,315,1.013,316,1.031,317,0.962,318,1.013,319,1.031,320,0.004,321,0.005,343,2.09,358,0.758,363,1.556,379,3.373,401,2.953,426,1.359,448,1.168,490,4.196,545,5.529,571,1.769,588,2.643,596,2.233,602,1.359,603,1.506,685,4.968,880,2.027,928,5.257,1048,4.077,1061,3.045,1264,2.233,1448,2.928,1558,2.626,1651,4.266,2048,2.714,2156,3.134,2534,5.918,2938,3.41,2981,3.41,3052,3.41,4144,7.217,4161,3.828,4162,4.266,4163,5.578,4164,6.581,4165,5.578,4166,7.23,4167,7.23,4168,5.578,4169,5.578,4170,3.828,4171,3.828,4172,5.578,4173,7.23,4174,3.828,4175,5.578,4176,3.828,4177,5.578,4178,3.828,4179,5.578,4180,3.41,4181,3.828,4182,3.828,4183,3.828,4184,3.828,4185,3.828,4186,3.828,4187,3.828,4188,3.828,4189,3.828,4190,3.828,4191,3.828,4192,3.828,4193,3.828,4194,3.828,4195,3.828,4196,3.828,4197,5.578,4198,3.828,4199,3.828,4200,5.578]],["title/components/TinymceComponent.html",[0,0.195,296,1.288]],["body/components/TinymceComponent.html",[0,0.263,1,0.737,2,0.15,3,0.155,4,0.61,5,1.366,6,0.776,7,0.749,8,1.043,9,0.098,11,0.332,12,2.538,14,4.415,16,1.111,17,3.481,20,0.724,23,0.642,24,1.842,25,0.007,26,3.023,27,2.457,28,3.023,29,2.457,30,1.099,31,2.142,32,1.891,33,2.95,35,1.093,37,0.299,38,0.528,39,2.364,40,1.529,41,3.934,42,4.518,43,1.499,44,1.4,45,3.045,49,0.65,50,4.119,53,2.95,54,3.934,57,2.722,60,0.913,65,0.324,69,0.726,70,1.488,71,1.09,76,1.255,77,2.178,79,1.974,81,1.057,82,1.856,84,1.811,86,2.829,89,2.156,91,0.921,92,0.902,93,0.61,94,2.829,104,2.829,106,3.087,107,2.314,108,1.697,109,2.821,110,1.11,111,3.442,113,1.111,115,0.724,118,1.067,119,2.457,121,2.728,123,2.19,124,3.651,126,2.056,135,1.681,136,1.299,137,0.251,138,1.158,147,0.58,148,0.094,149,0.103,154,5.891,156,2.204,162,2.95,167,1.526,171,2.359,173,1.811,177,0.533,178,1.191,179,0.922,180,1.21,181,1.656,182,0.776,183,0.776,184,0.712,185,1.491,186,0.712,187,0.749,188,0.665,189,0.737,190,0.724,191,2.025,192,0.737,193,1.234,194,1.686,195,0.749,196,1.263,197,2.095,198,0.749,199,0.749,200,0.776,201,0.737,202,1.212,203,0.749,204,0.776,205,0.737,206,0.776,207,0.724,208,0.724,209,1.414,210,1.491,211,0.724,212,0.737,213,0.737,214,0.712,215,0.776,216,0.749,217,1.828,218,0.749,219,0.737,220,0.749,221,0.749,222,0.749,223,0.737,224,0.776,225,0.737,226,0.749,227,0.776,228,0.737,229,0.776,230,0.737,231,1.368,232,0.876,233,0.776,234,0.737,235,0.776,236,0.724,237,0.737,238,0.776,239,0.737,240,0.776,241,0.676,242,0.776,243,0.737,244,1.299,245,0.776,246,0.724,247,0.776,248,0.737,249,0.776,250,0.712,251,0.776,252,0.737,253,0.712,254,0.737,255,0.688,256,0.776,257,0.737,258,0.776,259,0.776,260,0.737,261,0.776,262,0.737,263,0.776,264,0.712,265,0.776,266,0.724,267,0.737,268,0.776,269,0.737,270,0.749,271,0.776,272,0.724,273,0.737,274,1.734,275,0.737,276,0.749,277,1.003,278,0.749,279,0.749,280,0.737,281,0.749,282,0.749,283,0.749,284,0.776,285,0.724,286,0.737,287,0.776,288,0.737,289,0.749,290,0.737,291,0.776,292,0.737,293,0.776,294,0.749,295,0.688,296,1.839,297,0.776,298,0.737,299,0.776,300,0.737,301,0.776,302,0.737,303,0.7,304,0.712,305,0.776,306,0.724,307,0.776,308,0.724,309,0.776,310,0.724,311,0.776,312,0.724,313,0.776,314,0.724,315,1.191,316,0.776,317,0.724,318,0.763,319,0.776,320,0.003,321,0.003,358,0.57,363,1.545,393,1.888,435,2.439,445,1.697,448,1.373,449,2.47,453,2.83,495,2.69,520,2.079,537,2.625,572,1.536,583,2.829,597,4.247,598,1.482,602,1.023,804,2.314,908,3.023,919,2.383,942,1.566,948,2.313,967,2.079,968,2.133,1048,3.122,1206,3.248,1245,2.359,1246,1.977,1615,2.566,1815,3.23,1858,5.124,2014,2.359,2015,2.566,2048,2.19,2134,5.575,2239,6.047,2341,3.684,2342,3.684,2408,2.359,2743,4.932,2822,3.248,2878,6.047,2881,5.575,2889,6.928,2907,2.359,3217,2.95,3333,3.248,3720,4.932,4077,4.198,4144,3.442,4201,2.882,4202,5.139,4203,4.501,4204,5.538,4205,4.501,4206,4.501,4207,5.538,4208,2.882,4209,6.259,4210,4.501,4211,3.442,4212,4.501,4213,3.442,4214,4.501,4215,2.882,4216,4.501,4217,4.008,4218,2.882,4219,2.882,4220,2.882,4221,4.501,4222,4.501,4223,2.882,4224,4.501,4225,2.882,4226,2.882,4227,2.882,4228,2.882,4229,2.882,4230,2.882,4231,2.882,4232,2.882,4233,2.882,4234,2.882,4235,2.882,4236,2.882,4237,2.882,4238,2.882,4239,2.882,4240,2.882,4241,2.882,4242,2.882,4243,2.882,4244,2.882,4245,2.882,4246,2.882,4247,2.882,4248,2.882,4249,2.882,4250,2.882,4251,2.882,4252,2.882,4253,4.501,4254,2.882,4255,2.882,4256,2.882,4257,2.882,4258,2.882,4259,2.882,4260,2.882,4261,2.882,4262,2.882,4263,4.501,4264,2.882,4265,2.882,4266,2.882,4267,2.882,4268,2.882,4269,2.882,4270,2.882,4271,2.882,4272,4.501,4273,2.882,4274,2.882,4275,2.882,4276,2.882,4277,2.882,4278,2.882,4279,2.882,4280,2.882]],["title/modules/TinymceModule.html",[322,1.085,4281,3.636]],["body/modules/TinymceModule.html",[2,0.369,3,0.381,9,0.241,24,2.087,25,0.007,63,2.376,65,0.299,137,0.618,146,3.371,147,1.428,148,0.306,149,0.253,177,1.311,296,2.545,320,0.006,321,0.006,322,1.808,324,2.914,329,3.526,330,2.569,331,2.376,333,4.732,334,2.469,4281,6.969,4282,6.319,4283,6.319,4284,6.319,4285,7.095,4286,7.095,4287,7.095,4288,7.095]],["title/components/ToggleComponent.html",[0,0.195,298,1.288]],["body/components/ToggleComponent.html",[0,0.326,1,1.031,2,0.21,3,0.217,4,1.436,5,2.745,6,1.086,7,1.049,9,0.137,11,0.464,16,1.43,17,4.26,20,1.013,23,0.899,24,2.179,25,0.007,26,3.7,27,3.162,28,3.7,29,3.162,30,1.016,31,2.17,32,1.92,35,1.406,37,0.419,38,0.68,40,1.609,41,4.656,43,1.503,49,0.837,53,3.796,54,4.656,57,3.502,60,0.939,65,0.206,69,0.591,70,1.146,71,1.007,81,0.957,82,1.768,86,3.64,88,5.081,89,1.703,90,4.18,91,0.852,92,0.949,93,0.564,94,3.64,104,3.64,106,3.973,113,1.43,115,1.013,118,1.047,119,3.162,126,2.434,137,0.351,138,1.62,148,0.131,149,0.144,162,4.441,173,2.535,177,0.745,178,1.533,179,1.186,181,1.96,182,1.086,183,1.086,184,0.996,185,1.825,186,0.996,187,1.049,188,0.93,189,1.031,190,1.013,191,2.266,192,1.031,193,1.511,194,1.995,195,1.049,196,1.433,197,2.318,198,1.049,199,1.049,200,1.086,201,1.031,202,1.56,203,1.049,204,1.086,205,1.031,206,1.086,207,1.013,208,1.013,209,1.582,210,1.825,211,1.013,212,1.031,213,1.031,214,0.996,215,1.086,216,1.049,217,2.113,218,1.049,219,1.031,220,1.049,221,1.049,222,1.049,223,1.031,224,1.086,225,1.031,226,1.049,227,1.086,228,1.031,229,1.086,230,1.031,231,0.996,232,1.127,233,1.086,234,1.031,235,1.086,236,1.013,237,1.031,238,1.086,239,1.031,240,1.086,241,0.946,242,1.086,243,1.031,244,1.59,245,1.086,246,1.013,247,1.086,248,1.031,249,1.086,250,0.996,251,1.086,252,1.031,253,0.996,254,1.031,255,0.962,256,1.086,257,1.031,258,1.086,259,1.086,260,1.031,261,1.086,262,1.031,263,1.086,264,0.996,265,1.086,266,1.013,267,1.031,268,1.086,269,1.031,270,1.049,271,1.086,272,1.013,273,1.031,274,1.919,275,1.031,276,1.049,277,0.899,278,1.049,279,1.049,280,1.031,281,1.049,282,1.049,283,1.049,284,1.086,285,1.013,286,1.031,287,1.086,288,1.031,289,1.049,290,1.031,291,1.086,292,1.031,293,1.086,294,1.049,295,0.962,296,1.031,297,1.086,298,2.088,299,1.086,300,1.031,301,1.086,302,1.031,303,0.979,304,0.996,305,1.086,306,1.013,307,1.086,308,1.013,309,1.086,310,1.013,311,1.086,312,1.013,313,1.086,314,1.013,315,1.067,316,1.086,317,1.013,318,1.067,319,1.086,320,0.004,321,0.004,346,1.887,558,3.922,820,5.396,1206,2.911,1251,3.067,2165,4.429,2458,4.429,2907,3.301,4289,4.033,4290,5.792,4291,5.792,4292,4.033,4293,4.033,4294,4.033,4295,5.792,4296,4.033,4297,4.033,4298,5.792,4299,4.033,4300,4.033]],["title/injectables/TypeConfigService.html",[437,1.266,1158,3.046]],["body/injectables/TypeConfigService.html",[2,0.144,3,0.149,4,0.925,9,0.094,11,0.319,20,1.098,25,0.007,30,1.67,32,1.604,37,0.288,38,1.031,40,1.741,43,1.595,46,1.117,47,1.878,49,0.886,60,0.554,61,1.795,65,0.281,69,0.808,70,1.6,71,0.968,76,0.807,79,1.079,80,1.438,81,1.188,82,0.662,89,1.098,91,0.902,92,0.831,93,0.597,118,0.922,137,0.242,139,0.862,147,0.879,148,0.09,149,0.099,186,1.647,193,1.869,196,1.076,207,2.227,208,1.985,209,1.789,211,1.779,232,1.738,244,1.025,295,1.463,320,0.003,321,0.003,342,2.125,346,0.957,350,0.802,354,2.512,355,1.835,358,0.549,363,1.218,399,2.122,401,2.313,406,4.205,407,3.576,434,2.746,435,2.594,437,1.358,445,2.312,493,4.653,532,3.272,558,2.184,571,1.282,595,1.515,602,0.985,603,2.785,690,2.746,707,3.853,788,2.271,795,3.576,797,3.576,799,3.576,803,4.131,804,3.642,825,2.548,897,2.861,925,2.385,938,2.564,939,2.36,941,3.576,975,1.469,1048,2.463,1061,2.385,1067,1.618,1075,2.982,1091,1.818,1099,1.678,1105,1.818,1134,2.642,1158,2.642,1171,2.642,1172,2.863,1173,2.122,1180,5.702,1187,3.153,1192,3.685,1210,2.746,1211,2.002,1217,5.548,1228,4.813,1251,5.049,1391,2.997,1596,1.903,1609,1.903,1627,4.859,1628,6.029,1629,6.569,1633,6.185,1634,2.385,1672,4.205,1675,2.746,1696,2.997,1717,4.641,1755,2.997,1792,6.052,1815,2.548,1816,5.872,2048,2.125,2203,7.048,2225,5.837,2325,3.891,2466,2.122,2475,2.271,2488,3.891,3034,2.271,3067,5.702,3069,2.642,3740,3.891,4301,4.369,4302,4.369,4303,7.679,4304,6.13,4305,4.369,4306,6.13,4307,2.774,4308,2.774,4309,4.369,4310,2.774,4311,4.369,4312,4.369,4313,2.774,4314,2.774,4315,4.369,4316,2.774,4317,2.774,4318,4.369,4319,4.369,4320,4.369,4321,7.679,4322,7.679,4323,7.083,4324,7.083,4325,4.369,4326,4.369,4327,4.369,4328,4.369,4329,4.369,4330,4.369,4331,8.385,4332,4.369,4333,4.369,4334,4.369,4335,6.668,4336,6.13,4337,4.369,4338,4.369,4339,4.369,4340,2.271,4341,4.369,4342,2.774,4343,2.774,4344,2.774,4345,2.774,4346,2.774,4347,2.471,4348,2.774,4349,2.774,4350,2.774,4351,2.774,4352,2.774]],["title/modules/UiModule.html",[322,1.085,622,2.938]],["body/modules/UiModule.html",[2,0.3,3,0.309,9,0.196,24,1.694,25,0.007,63,1.928,65,0.343,137,0.502,146,2.172,147,1.159,148,0.288,149,0.205,177,1.064,320,0.005,321,0.005,322,1.59,324,2.366,329,3.101,330,2.085,331,1.928,334,2.004,622,5.845,1878,6.615,1887,6.32,1888,5.832,1889,6.32,1890,6.32,1893,4.714,1899,4.714,1900,4.157,1903,4.714,2575,6.615,2581,6.615,2583,5.129,2584,5.129,3264,6.96,3952,6.96,3959,5.129,4353,5.129,4354,5.759,4355,5.129,4356,5.759,4357,5.759,4358,5.759,4359,5.759,4360,5.759]],["title/interfaces/Update.html",[338,1.43,495,2.165]],["body/interfaces/Update.html",[0,0.155,2,0.207,3,0.214,9,0.136,11,0.459,25,0.007,30,1.506,37,0.414,38,0.917,43,1.531,44,1.118,46,1.02,48,1.691,60,0.935,61,2.36,65,0.311,69,0.81,70,1.827,75,2.567,76,1.362,77,2,80,2.082,81,1.226,84,2.507,89,2.23,93,0.865,117,1.262,119,2.178,121,2.707,131,1.638,137,0.348,147,1.356,148,0.186,149,0.142,164,1.174,188,1.553,196,1.472,209,1.08,274,2.176,277,1.949,320,0.004,321,0.005,338,1.631,339,2.327,342,1.941,346,1.615,350,1.153,354,1.195,356,4.588,363,2.056,405,4.234,412,2.414,414,2.36,417,1.798,437,1.692,447,3.677,448,1.217,449,1.888,489,3.137,493,4.495,495,4.121,499,3.571,505,3.192,524,5.056,537,3.929,538,3.798,547,2.614,550,2.879,587,2.507,597,3.677,598,2.051,602,1.416,627,1.843,648,2.736,686,3.2,704,2.614,706,1.941,727,4.234,741,4.457,742,4.83,817,1.994,851,2.112,880,3.566,903,3.277,925,2.178,948,2.886,957,3.766,1043,1.89,1051,3.475,1055,2.736,1056,2.614,1070,3.475,1072,2.614,1073,2.879,1074,2.412,1075,1.941,1076,2.736,1077,2.412,1082,3.265,1084,2.249,1085,3.265,1087,2.507,1093,3.265,1095,2.879,1096,3.766,1099,2.412,1116,3.352,1127,5.514,1128,3.265,1129,3.265,1130,3.265,1133,4.704,1134,2.412,1138,3.265,1139,3.265,1140,3.265,1141,3.265,1142,6.394,1143,2.327,1144,3.265,1246,2.736,1524,4.704,1560,3.475,1651,4.395,1728,3.766,1740,3.05,3070,4.704,3532,2.736,3609,3.05,3807,3.552,3810,5.118,3811,5.118,3813,3.552,3815,3.552,3818,3.552,3820,3.05,3821,3.552,3822,3.552,3824,3.552,3825,3.552,3828,3.552,3829,5.118,3830,5.118,3831,5.118,3832,6.394,3833,3.552,3834,6.564,3835,3.552,3836,3.552,3837,3.552,3838,3.552,3839,3.552,3840,3.552,3841,3.552,3842,3.552,3843,3.552,3844,3.552,3845,3.552,3846,3.552,3847,3.552,3848,3.552,3849,3.552,3850,3.552,3851,5.999,3852,3.552,3853,5.118,3854,3.552,3855,3.552,3856,3.552,3857,3.552]],["title/interfaces/Upload.html",[303,1.223,338,1.43]],["body/interfaces/Upload.html",[0,0.13,2,0.174,3,0.18,9,0.247,11,0.385,25,0.007,30,1.392,37,0.348,38,0.592,44,1.741,46,0.856,48,2.739,49,0.484,60,0.859,65,0.308,69,0.754,70,1.569,71,0.401,75,1.659,76,1.638,77,1.757,80,1.426,81,1.247,84,2.104,89,1.826,92,0.362,93,0.903,108,1.262,117,1.598,118,0.416,121,3.186,123,3.294,131,1.375,137,0.292,147,1.643,148,0.197,149,0.119,164,1.789,188,0.772,193,2.183,196,1.432,209,1.143,231,0.827,232,1.317,274,1.355,277,0.746,303,2.26,320,0.003,321,0.005,338,1.922,339,1.952,341,2.844,342,2.456,343,1.827,346,1.484,350,0.967,354,2.028,363,2.027,405,4.567,408,2.104,412,2.554,414,2.074,417,1.509,432,4.887,437,1.527,447,1.827,448,1.021,449,2.387,453,1.316,468,6.029,469,2.416,477,2.296,482,2.74,489,3.319,495,2.91,499,2.391,503,1.212,519,2.74,524,4.645,537,1.952,547,2.193,555,2.104,556,5.667,577,2.74,587,2.104,595,1.827,601,0.785,602,1.188,603,2.391,627,1.546,682,2.74,705,2.193,706,2.456,741,3.677,749,2.74,756,2.296,851,1.772,869,2.456,903,1.628,908,3.967,910,1.721,925,1.827,942,1.757,948,2.246,1030,4.645,1040,2.74,1043,1.586,1053,1.721,1059,1.952,1062,3.053,1070,3.053,1072,2.193,1073,2.416,1074,2.024,1075,1.628,1076,2.296,1077,3.677,1084,2.847,1106,2.416,1111,2.74,1116,4.456,1136,4.649,1158,3.053,1180,2.416,1476,2.296,1560,3.053,1634,2.757,1720,2.981,1721,5.415,1722,4.497,1723,5.415,1724,4.497,1725,4.497,1726,4.497,1727,2.74,1728,2.193,1729,2.56,1730,2.024,1731,2.981,1732,4.497,1733,2.981,1734,4.649,1735,2.56,1736,2.981,1737,2.981,1738,2.981,1739,2.981,1740,2.56,1741,2.981,1742,2.981,1743,5.415,1744,2.981,1745,5.415,1746,2.981,1747,2.981,1748,2.981,1749,2.981,1750,2.981,1751,2.981,1752,1.772,1753,2.981,1754,4.887,1755,2.296,1756,2.981,1757,4.497,1758,2.981,1759,4.497,1760,4.497,1761,2.981,1762,2.981,1763,2.981,1764,2.981,1765,4.497,1766,3.821,1767,2.981,1768,2.56,1769,2.74,1770,2.416,1771,2.981,1772,6.803,1773,2.981,1774,2.981,1775,2.981,1776,2.981,1777,2.981,1778,5.415,1779,2.74,1780,2.981,1781,2.981,1782,4.497,1783,2.981,1784,4.497,1785,4.497,1786,4.497,1787,4.497,1788,4.497,1789,4.497,1790,4.497,1791,4.497,1792,2.416,1793,2.74,1794,3.861,1795,2.981,1796,2.981,1797,2.981,1798,4.497,1799,2.981,1800,2.981,1801,2.981,1802,2.981,1803,2.981,1804,2.416,1805,2.981,1806,5.415,1807,2.981,1808,2.981,1809,4.497,1810,2.981,1811,2.981,1812,2.981,1813,2.56,1814,2.981,1815,1.952,1816,2.56,1817,2.981,1818,2.981,1819,2.981,1820,2.981,1821,2.981,1822,2.981,1823,2.981,1824,2.981,1825,2.981,1826,2.981,1827,2.981,1828,2.981,1829,2.296,1830,2.981,1831,2.981,1832,2.981,1833,2.74,1834,2.981,1835,2.981,1836,2.981]],["title/components/UploadComponent.html",[0,0.195,300,1.288]],["body/components/UploadComponent.html",[0,0.291,1,0.73,2,0.149,3,0.153,4,0.605,6,0.769,7,0.743,9,0.307,11,0.329,16,1.104,20,0.718,23,0.637,25,0.007,30,0.966,31,2.141,32,1.89,35,1.085,37,0.297,38,0.524,40,1.757,43,1.107,44,1.071,46,1.142,47,3.333,49,0.646,60,0.909,65,0.241,69,0.77,70,1.338,71,1.105,76,1.151,79,1.538,81,1.12,82,1.314,89,1.383,91,1.055,92,0.938,93,0.835,109,2.808,110,1.721,113,1.67,115,0.718,118,0.992,121,2.213,126,1.468,136,1.287,137,0.249,139,0.887,148,0.093,149,0.102,167,4.106,177,0.528,178,1.183,179,0.915,181,1.648,182,0.769,183,0.769,184,0.705,185,1.483,186,0.705,187,0.743,188,2.071,189,0.73,190,0.718,191,2.018,192,0.73,193,1.853,194,1.677,195,0.743,196,1.258,197,2.088,198,0.743,199,0.743,200,0.769,201,0.73,202,1.204,203,0.743,204,0.769,205,0.73,206,0.769,207,0.718,208,0.718,209,1.409,210,1.483,211,0.718,212,0.73,213,0.73,214,0.705,215,0.769,216,0.743,217,1.821,218,0.743,219,0.73,220,0.743,221,0.743,222,0.743,223,0.73,224,0.769,225,0.73,226,0.743,227,0.769,228,0.73,229,0.769,230,0.73,231,0.705,232,1.212,233,0.769,234,0.73,235,0.769,236,0.718,237,0.73,238,0.769,239,0.73,240,0.769,241,1.461,242,0.769,243,0.73,244,1.292,245,0.769,246,0.718,247,0.769,248,0.73,249,0.769,250,0.705,251,0.769,252,0.73,253,0.705,254,0.73,255,0.682,256,0.769,257,0.73,258,0.769,259,0.769,260,0.73,261,0.769,262,0.73,263,0.769,264,0.705,265,0.769,266,0.718,267,0.73,268,0.769,269,0.73,270,0.743,271,0.769,272,1.699,273,0.73,274,1.729,275,0.73,276,0.743,277,1.227,278,0.743,279,0.743,280,0.73,281,0.743,282,0.743,283,0.743,284,0.769,285,0.718,286,0.73,287,0.769,288,0.73,289,0.743,290,0.73,291,0.769,292,0.73,293,0.769,294,0.743,295,0.682,296,0.73,297,0.769,298,0.73,299,0.769,300,1.592,301,0.769,302,0.73,303,2.312,304,0.705,305,0.769,306,0.718,307,0.769,308,0.718,309,0.769,310,0.718,311,0.769,312,0.718,313,0.769,314,0.718,315,0.756,316,0.769,317,0.718,318,0.756,319,0.769,320,0.003,321,0.003,344,1.836,346,0.979,358,0.565,412,1.878,413,1.559,414,2.559,417,1.287,435,2.063,438,3.658,439,3.609,448,2.366,449,2.462,470,1.872,475,1.666,477,4.918,497,3.297,512,2.52,514,2.174,555,4.71,556,3.609,558,3.38,560,4.507,570,2.061,571,2.065,573,2.703,584,1.61,585,1.994,591,3.902,592,3.03,602,1.014,603,2.45,727,1.795,756,1.959,774,2.703,828,1.872,908,2.44,919,2.366,923,3.006,924,3.461,934,4.531,937,3.105,938,3.1,939,2.398,942,2.353,948,2.301,967,3.768,1005,2.703,1006,2.118,1007,3.974,1010,1.959,1012,1.795,1030,3.777,1039,2.703,1048,2.52,1096,2.929,1116,2.607,1143,4.371,1303,2.338,1423,2.338,1476,1.959,1507,2.338,1647,3.658,1766,1.795,1779,2.338,1793,3.658,1921,2.607,2184,2.544,2204,5.099,2259,2.607,2337,3.226,2372,5.931,2759,3.915,2971,3.98,3295,3.98,4347,2.544,4361,2.856,4362,4.469,4363,6.229,4364,6.229,4365,6.229,4366,3.98,4367,4.469,4368,4.469,4369,2.856,4370,2.856,4371,2.856,4372,2.856,4373,3.98,4374,2.856,4375,2.856,4376,2.856,4377,3.98,4378,2.856,4379,4.469,4380,2.856,4381,2.856,4382,3.98,4383,2.856,4384,4.469,4385,2.856,4386,4.469,4387,2.856,4388,2.856,4389,2.856,4390,4.469,4391,2.856,4392,4.469,4393,2.856,4394,4.469,4395,2.856,4396,2.856,4397,4.469,4398,2.856,4399,2.856,4400,2.544,4401,2.856,4402,2.856,4403,2.856,4404,2.856,4405,2.856,4406,2.856,4407,2.856,4408,2.856,4409,2.856,4410,2.856,4411,2.856,4412,2.856,4413,5.506,4414,2.856,4415,2.856,4416,2.856,4417,2.856,4418,2.856,4419,2.856,4420,2.856,4421,2.856,4422,2.856,4423,2.856,4424,2.856,4425,2.856,4426,4.469,4427,4.469,4428,4.469,4429,4.469,4430,4.469,4431,4.469]],["title/components/UploadSelectComponent.html",[0,0.195,302,1.288]],["body/components/UploadSelectComponent.html",[0,0.305,1,0.833,2,0.169,3,0.175,4,0.69,6,0.877,7,0.847,9,0.111,16,1.222,20,0.819,21,2.571,23,0.726,25,0.007,31,2.153,32,1.903,35,1.201,37,0.338,38,0.581,40,1.718,43,1.093,44,1.575,47,3.249,49,0.715,52,3.01,65,0.288,69,0.789,70,1.322,71,1.12,76,1.327,79,1.649,81,0.928,82,1.714,91,0.982,92,0.93,93,0.766,110,1.254,113,1.222,115,0.819,118,0.941,136,1.468,137,0.284,139,1.537,148,0.106,149,0.116,167,3.536,177,0.602,178,1.309,179,1.013,181,1.767,182,0.877,183,0.877,184,0.805,185,1.61,186,0.805,187,0.847,188,0.751,189,0.833,190,0.819,191,2.116,192,0.833,193,1.601,194,1.798,195,0.847,196,1.327,197,2.18,198,0.847,199,0.847,200,0.877,201,0.833,202,1.332,203,0.847,204,0.877,205,0.833,206,0.877,207,0.819,208,0.819,209,1.477,210,1.61,211,0.819,212,0.833,213,0.833,214,0.805,215,0.877,216,0.847,217,1.934,218,0.847,219,0.833,220,0.847,221,0.847,222,0.847,223,0.833,224,0.877,225,0.833,226,0.847,227,0.877,228,0.833,229,0.877,230,0.833,231,0.805,232,1.299,233,0.877,234,0.833,235,0.877,236,0.819,237,0.833,238,0.877,239,0.833,240,0.877,241,1.567,242,0.877,243,0.833,244,1.403,245,0.877,246,0.819,247,0.877,248,0.833,249,0.877,250,0.805,251,0.877,252,0.833,253,0.805,254,0.833,255,0.777,256,0.877,257,0.833,258,0.877,259,0.877,260,0.833,261,0.877,262,0.833,263,0.877,264,0.805,265,0.877,266,0.819,267,0.833,268,0.877,269,0.833,270,0.847,271,0.877,272,0.819,273,0.833,274,1.804,275,0.833,276,0.847,277,0.726,278,0.847,279,0.847,280,0.833,281,0.847,282,0.847,283,0.847,284,0.877,285,0.819,286,0.833,287,0.877,288,0.833,289,0.847,290,0.833,291,0.877,292,0.833,293,0.877,294,0.847,295,0.777,296,0.833,297,0.877,298,0.833,299,0.877,300,1.835,301,0.877,302,1.707,303,2.296,304,0.805,305,0.877,306,0.819,307,0.877,308,0.819,309,0.877,310,0.819,311,0.877,312,0.819,313,0.877,314,0.819,315,0.862,316,0.877,317,0.819,318,0.862,319,0.877,320,0.003,321,0.003,346,1.657,354,1.792,358,0.645,363,1.668,393,2.135,419,1.505,435,2.306,448,2.191,449,2.952,468,2.351,469,2.351,497,2.632,553,2.902,554,4.406,555,5.475,556,3.919,559,3.759,560,4.895,562,2.902,567,2.902,568,2.902,569,2.902,570,2.351,908,2.701,938,3.302,939,2.911,941,3.488,942,2.081,948,2.467,960,2.473,967,2.286,975,1.725,1030,4.103,1048,4.43,1061,2.701,1166,3.571,1596,2.235,1609,2.235,1646,4.049,1734,2.491,1735,2.491,1851,2.902,1852,8.366,1857,5.948,2204,2.667,2356,4.049,4366,4.406,4373,4.406,4377,4.406,4382,4.406,4400,2.902,4432,9.394,4433,6.678,4434,6.678,4435,6.678,4436,4.947,4437,4.947,4438,5.981,4439,5.326,4440,4.947,4441,3.258,4442,3.258,4443,3.258,4444,3.258,4445,3.258,4446,3.258,4447,3.258,4448,3.258,4449,3.258,4450,4.947,4451,3.258,4452,4.947,4453,3.258,4454,4.947,4455,3.258,4456,4.947,4457,3.258,4458,3.258,4459,5.981,4460,3.258,4461,3.258,4462,3.258,4463,3.258,4464,3.258,4465,4.947,4466,6.678,4467,4.947,4468,4.947,4469,4.947]],["title/modules/UtilityModule.html",[322,1.085,2581,3.455]],["body/modules/UtilityModule.html",[2,0.303,3,0.313,9,0.198,24,2.189,25,0.007,63,1.952,65,0.345,137,0.508,138,2.343,146,3.09,147,1.174,148,0.289,149,0.208,177,1.078,252,2.469,253,1.44,257,2.469,288,2.469,289,1.516,290,2.469,292,2.469,312,2.427,320,0.005,321,0.005,322,1.603,324,2.395,329,3.125,330,2.111,331,1.952,333,3.288,334,2.029,596,3.401,628,3.526,629,2.628,631,5.913,632,5.62,1163,7.297,1175,5.37,1886,6.356,1896,5.193,2581,6.831,2788,4.773,3988,5.193,4158,5.193,4180,5.193,4470,5.193,4471,5.193,4472,5.831,4473,5.193,4474,5.831,4475,5.831,4476,5.831,4477,5.831,4478,5.831]],["title/pipes/VisibleFieldsPipe.html",[1214,2.59,1885,3.852]],["body/pipes/VisibleFieldsPipe.html",[2,0.342,3,0.353,9,0.224,11,0.757,16,1.624,23,1.466,25,0.007,38,0.772,44,1.28,46,2.401,49,0.95,65,0.308,69,0.699,71,0.96,79,1.981,81,1.037,91,0.968,92,0.937,93,0.641,117,3.106,137,0.573,148,0.213,149,0.234,320,0.005,321,0.005,331,2.685,350,1.901,363,2.237,419,3.039,493,4.632,519,3.615,682,3.483,1056,5.256,1192,3.154,1214,4.449,1218,3.837,1224,5.789,1885,6.889,1891,6.864,1894,5.858,3820,6.133,4479,8.653,4480,6.577,4481,8.02,4482,8.02,4483,6.577,4484,8.02,4485,6.577,4486,6.577,4487,6.577,4488,6.577]],["title/interfaces/WithLoader.html",[338,1.43,923,2.75]],["body/interfaces/WithLoader.html",[0,0.329,2,0.376,3,0.389,9,0.246,11,0.832,25,0.007,37,0.752,38,0.996,60,1.179,65,0.258,69,0.631,148,0.235,241,2.181,320,0.006,321,0.006,338,2.639,428,3.412,497,4.295,527,5.564,923,4.635,2610,6.128,2646,5.922,4489,7.235,4490,7.235,4491,8.491]],["title/interfaces/WithNotifications.html",[338,1.43,924,3.166]],["body/interfaces/WithNotifications.html",[0,0.321,2,0.361,3,0.372,9,0.236,11,0.798,25,0.007,30,1.453,37,0.72,38,0.971,60,1.163,61,3.401,65,0.247,69,0.722,93,0.894,148,0.225,320,0.006,321,0.006,338,2.603,346,1.94,585,2.997,591,4.599,924,5.203,948,3.059,1046,5.006,1441,7.505,1630,5.006,2052,6.29,2057,7.373,3348,8.166,4492,6.932,4493,6.932]],["title/changelog.html",[1193,2.579,3195,2.925,4494,1.677]],["body/changelog.html",[14,3.628,25,0.006,89,1.923,139,2.378,320,0.006,321,0.006,350,2.212,1075,3.724,1212,4.316,2095,4.053,4494,3.011,4495,2.887,4496,4.629,4497,4.812,4498,5.017,4499,5.017,4500,4.812,4501,5.017]],["title/dependencies.html",[63,2.018,4495,1.608]],["body/dependencies.html",[13,4.418,14,3.858,25,0.007,63,2.257,137,0.588,138,2.709,139,2.094,214,1.665,255,1.609,320,0.005,321,0.005,350,1.948,505,3.195,596,3.932,598,3.466,629,3.039,634,6.226,635,6.004,647,4.418,1165,4.866,1166,4.866,1210,4.237,1211,4.866,1212,3.801,1844,5.876,1845,5.335,1993,5.518,2752,6.004,3692,4.077,4202,4.237,4496,4.077,4497,4.237,4498,4.418,4499,4.418,4500,4.237,4501,4.418,4502,8.141,4503,6.741,4504,6.004,4505,8.587,4506,6.004,4507,6.004,4508,5.518,4509,6.004,4510,6.004,4511,6.004,4512,6.004,4513,6.004,4514,6.004,4515,6.004,4516,6.741,4517,6.741,4518,6.741,4519,6.741,4520,6.741,4521,5.518,4522,6.741,4523,6.741,4524,6.741,4525,6.741,4526,6.741,4527,6.741,4528,6.741,4529,6.741,4530,6.741,4531,6.741]],["title/miscellaneous/functions.html",[532,2.784,4532,3.261]],["body/miscellaneous/functions.html",[25,0.006,37,0.758,70,1.444,91,1.33,92,0.979,93,0.881,320,0.006,321,0.006,346,1.599,428,2.932,445,2.752,532,3.371,623,7.403,625,6.498,633,6.498,753,6.943,1691,5.684,4029,6.498,4033,7.599,4034,7.599,4035,7.599,4043,6.498,4048,6.498,4050,6.498,4051,6.498,4532,5.58,4533,7.297,4534,9.044]],["title/index.html",[37,0.443,1193,2.579,3195,2.925]],["body/index.html",[0,0.363,2,0.283,3,0.293,5,2.582,9,0.185,12,4.742,13,3.57,14,3.986,15,4.136,25,0.006,39,2.941,60,1.186,61,2.238,63,1.824,66,3.559,67,3.661,75,2.339,76,1.613,89,1.369,92,0.59,93,0.531,118,0.678,139,1.693,149,0.194,232,1.06,244,1.278,255,1.3,320,0.005,321,0.005,331,1.824,341,3.533,350,1.574,410,3.932,426,2.527,495,2.342,503,1.972,505,3.986,512,3.071,514,2.65,516,4.453,572,1.86,573,4.306,588,3.374,595,2.974,647,3.57,658,4.153,739,3.294,774,4.306,782,3.294,804,2.801,835,2.974,874,3.57,910,2.801,944,4.906,957,3.57,968,2.582,1024,5.139,1043,2.582,1120,5.828,1193,3.294,1210,3.424,1212,3.071,1237,2.65,1262,6.885,1675,3.424,1680,5.658,1691,3.424,1705,3.57,1752,3.77,1911,2.884,1969,3.737,2052,3.737,2260,6.492,2393,5.139,2598,3.737,3014,4.166,3115,4.166,3195,3.737,3199,3.737,3215,4.166,3217,3.57,3680,3.559,3692,5.413,3967,5.139,4042,7.144,4077,4.626,4104,4.166,4162,5.445,4202,3.424,4211,5.445,4494,2.142,4495,3.488,4496,3.294,4497,3.424,4498,3.57,4499,3.57,4500,3.424,4501,3.57,4521,6.492,4535,3.965,4536,4.852,4537,4.852,4538,6.341,4539,4.852,4540,4.852,4541,6.341,4542,4.852,4543,4.166,4544,4.852,4545,6.432,4546,6.341,4547,4.852,4548,4.852,4549,4.852,4550,4.166,4551,5.828,4552,4.852,4553,7.064,4554,4.852,4555,6.885,4556,4.852,4557,4.852,4558,4.852,4559,2.974,4560,4.453,4561,4.852,4562,4.459,4563,4.459,4564,4.852,4565,4.852,4566,5.828,4567,4.852,4568,3.071,4569,3.071,4570,4.852,4571,6.065,4572,4.459,4573,6.256,4574,3.932,4575,4.459,4576,4.852,4577,4.852,4578,4.852,4579,4.852,4580,4.459,4581,4.459,4582,4.459,4583,6.341,4584,6.341,4585,4.852,4586,4.852,4587,4.852,4588,4.166,4589,4.852,4590,4.852]],["title/modules.html",[322,1.456]],["body/modules.html",[25,0.005,320,0.005,321,0.005,322,1.453,323,4.866,616,4.866,622,3.932,776,4.418,1058,6.876,1148,4.625,1154,4.866,1155,4.625,1156,4.418,1845,6.569,1878,4.625,1886,4.625,1887,4.418,1888,4.077,1889,4.418,1890,4.418,2575,4.625,2581,4.625,2683,4.866,2912,4.866,3264,4.866,3952,4.866,4281,4.866,4439,8.927,4591,10.023]],["title/overview.html",[4592,3.811]],["body/overview.html",[0,0.089,1,2.105,20,1.198,24,2.245,25,0.007,26,4.05,27,4.05,28,4.05,29,4.557,30,1.465,63,0.771,115,1.727,146,0.868,148,0.075,149,0.082,164,0.677,177,0.425,179,0.471,184,1.697,186,1.178,187,1.788,189,1.757,192,1.757,195,1.788,198,1.788,199,1.788,201,1.757,203,1.788,205,1.757,207,1.198,208,1.198,211,1.198,212,1.757,213,1.757,216,1.788,218,1.788,219,1.757,220,1.788,221,1.788,222,1.788,223,1.757,225,1.757,226,1.788,228,1.757,230,1.757,234,1.757,236,1.727,237,1.757,239,1.757,241,1.612,243,1.757,246,1.727,248,1.757,250,1.697,252,1.757,254,2.105,257,1.757,260,1.757,262,1.757,264,1.697,266,1.727,267,1.757,269,1.757,272,1.727,273,1.757,275,1.757,276,1.788,278,1.788,279,1.788,280,1.757,281,1.788,282,1.788,283,1.788,285,2.069,286,1.757,288,1.757,290,1.757,292,1.757,294,1.788,296,1.757,298,1.757,300,1.757,302,1.757,304,1.697,306,1.727,308,1.727,310,1.727,312,1.727,314,1.727,317,1.727,320,0.003,321,0.003,322,0.81,323,4.381,324,0.946,325,2.05,326,2.05,327,2.05,328,2.05,329,1.58,330,0.833,331,0.771,338,0.653,414,1.959,437,0.578,489,2.604,542,3.125,555,2.997,578,1.884,592,2.32,616,6.407,617,2.05,618,2.05,619,2.05,620,2.05,621,2.05,622,5.515,623,3.904,624,2.884,776,5.646,777,2.05,778,2.05,779,2.05,780,5.256,841,1.447,934,2.884,936,2.782,939,1.836,1070,2.884,1077,2.884,1148,6.65,1149,2.05,1150,2.05,1151,2.05,1152,2.05,1153,2.05,1154,6.926,1155,6.544,1156,5.47,1157,3.647,1158,2.884,1214,1.184,1216,4.961,1546,2.884,1696,1.579,1837,2.05,1838,2.05,1840,2.05,1841,2.05,1878,6.544,1879,2.05,1880,2.05,1881,2.05,1882,2.05,1883,2.05,1884,5.256,1885,5.256,1886,6.219,1887,5.78,1888,5.107,1889,5.398,1890,5.398,1891,3.442,1967,3.271,2088,3.442,2115,2.05,2116,2.05,2117,2.05,2118,2.05,2316,2.05,2317,2.05,2318,2.05,2402,2.05,2575,6.473,2576,2.05,2577,2.05,2578,2.05,2579,2.05,2580,2.05,2581,6.272,2641,2.05,2642,2.05,2643,2.05,2644,2.05,2683,6.024,2684,2.05,2685,2.05,2687,2.05,2688,2.05,2912,4.381,2913,2.05,2914,2.05,2915,2.05,2916,2.05,3264,6.272,3265,2.05,3266,2.05,3268,2.05,3269,2.05,3506,2.05,3507,2.05,3509,2.05,3510,2.05,3796,2.05,3797,2.05,3799,2.05,3800,2.05,3864,2.05,3865,2.05,3952,6.219,3953,2.05,3954,2.05,3955,2.05,3957,2.05,4071,2.05,4072,2.05,4073,2.05,4074,2.05,4075,5.256,4281,4.381,4282,2.05,4283,2.05,4284,2.05,4353,2.05,4355,2.05,4470,2.05,4471,2.05,4473,2.05,4592,1.298,4593,1.343,4594,2.302,4595,2.302,4596,2.302]],["title/miscellaneous/typealiases.html",[4532,3.261,4597,6.027]],["body/miscellaneous/typealiases.html",[25,0.006,37,0.801,69,0.672,320,0.006,321,0.006,340,6.313,345,7.074,532,3.563,4532,5.898,4598,7.713,4599,7.713]],["title/additional-documentation/angular-7-upgrade-guide.html",[15,1.384,601,0.685,841,1.835,2807,0.959,4543,2.233,4600,2.92]],["body/additional-documentation/angular-7-upgrade-guide.html",[0,0.22,2,0.296,9,0.249,15,4.62,25,0.007,38,0.667,39,1.867,40,1.087,60,1.148,65,0.328,66,3.658,67,2.922,75,1.867,76,1.05,89,2.275,93,0.713,123,3.938,147,1.144,164,1.672,320,0.005,321,0.005,322,1.744,343,3.995,354,1.702,381,4.268,457,3.724,495,3.674,572,1.94,584,4.819,585,3.335,595,3.103,658,4.268,701,4.126,739,3.436,782,3.436,803,3.315,825,3.315,841,5.372,851,4.526,942,2.817,1051,3.436,1067,4.721,1099,3.436,1116,4.268,1174,5.061,1187,4.102,1212,3.204,1214,2.922,1642,5.282,1680,3.315,1703,4.346,1911,3.009,2111,5.159,2127,4.346,2227,3.436,2228,3.436,2337,4.102,2613,3.572,2708,5.061,2838,4.346,2912,4.102,3025,3.724,3195,3.898,3234,4.346,3594,5.061,3680,4.046,3692,4.425,4162,5.596,4217,6.517,4495,2.76,4496,3.436,4500,3.572,4505,5.061,4543,6.19,4550,4.346,4560,3.009,4572,4.652,4574,4.102,4580,4.652,4588,4.346,4601,5.683,4602,5.683,4603,5.683,4604,5.683,4605,5.683,4606,5.683,4607,5.683,4608,5.683,4609,5.683,4610,5.683,4611,5.683,4612,4.652,4613,7.318,4614,5.683,4615,5.683,4616,5.683,4617,5.683,4618,5.683,4619,5.683,4620,5.683,4621,5.683,4622,5.683,4623,5.683,4624,5.061,4625,5.683,4626,5.683,4627,5.061,4628,7.318,4629,8.547,4630,7.612,4631,7.318,4632,5.683,4633,5.683,4634,5.683,4635,5.683,4636,5.683,4637,8.094,4638,5.683,4639,8.547,4640,8.094,4641,8.094,4642,7.318,4643,5.683,4644,5.683,4645,4.652,4646,5.683,4647,5.683,4648,7.318,4649,5.683,4650,5.683,4651,5.683,4652,5.683,4653,5.683,4654,5.683,4655,5.683,4656,5.683,4657,5.683,4658,5.061,4659,5.061,4660,5.683]],["title/additional-documentation/project-setup-tutorial.html",[601,0.765,2807,1.072,4077,1.903,4535,1.631,4661,2.355]],["body/additional-documentation/project-setup-tutorial.html",[0,0.3,2,0.269,5,4.067,9,0.176,15,2.452,24,2.025,25,0.007,30,1.208,32,1.641,39,1.7,49,0.994,60,1.088,61,2.125,63,1.732,65,0.338,67,2.66,76,1.586,79,1.699,90,3.734,92,0.56,93,0.504,107,2.66,108,1.951,118,0.644,137,0.451,138,2.079,146,1.951,147,1.385,148,0.251,149,0.184,164,1.522,214,1.278,320,0.005,321,0.005,322,1.115,324,2.125,334,1.801,341,2.891,363,1.443,410,4.967,490,3.757,499,2.035,505,2.452,512,3.88,516,2.739,572,3.192,586,3.018,591,3.179,596,3.018,627,2.39,629,2.332,648,6.584,651,5.263,653,5.633,654,5.949,656,5.581,657,5.633,658,4.51,677,3.549,701,2.917,773,6.887,774,4.676,825,3.018,826,2.66,840,3.956,841,3.252,874,3.39,938,1.873,944,4.014,961,3.018,968,2.452,1009,3.129,1043,3.261,1048,2.917,1051,3.129,1099,3.129,1114,5.633,1148,5.654,1160,4.608,1192,2.035,1193,4.161,1258,2.079,1658,3.39,1679,3.252,1680,4.808,1704,4.608,1770,3.734,1843,3.956,1844,4.967,1845,4.51,1911,3.644,1987,4.235,2049,4.235,2111,4.014,2228,3.129,2400,4.235,2532,3.734,2611,5.263,2613,4.325,3025,3.39,3086,4.608,3092,3.39,3168,5.263,3191,4.51,3217,3.39,3453,4.608,3680,3.865,3692,3.129,4077,3.018,4080,5.633,4104,3.956,4495,2.916,4496,4.676,4497,3.252,4504,4.608,4506,6.129,4535,4.572,4545,5.263,4555,6.747,4559,4.5,4560,3.644,4562,4.235,4571,5.263,4573,5.654,4574,3.734,4575,4.235,4581,6.33,4582,6.33,4588,3.956,4612,4.235,4630,4.608,4661,5.581,4662,5.174,4663,4.608,4664,5.174,4665,6.882,4666,6.882,4667,9.428,4668,5.174,4669,5.174,4670,5.174,4671,5.174,4672,5.174,4673,5.174,4674,4.608,4675,5.174,4676,5.174,4677,5.174,4678,5.174,4679,5.174,4680,5.174,4681,5.174,4682,5.174,4683,5.174,4684,6.882,4685,5.174,4686,5.174,4687,5.174,4688,5.174,4689,5.174,4690,5.174,4691,5.174,4692,4.014,4693,5.174,4694,6.882,4695,5.174,4696,3.956,4697,5.174,4698,5.174,4699,5.174,4700,5.174,4701,5.174,4702,5.174,4703,5.174,4704,5.174,4705,5.174]],["title/additional-documentation/project-setup-tutorial/routes.html",[490,2.328,601,1,2807,1.401]],["body/additional-documentation/project-setup-tutorial/routes.html",[0,0.366,4,1.513,25,0.007,65,0.254,75,2.769,76,1.558,147,1.438,164,2.102,320,0.006,321,0.006,343,4.601,453,2.81,490,5.279,516,4.747,572,2.439,825,4.167,826,3.673,835,3.901,925,3.901,1046,4.32,1680,4.167,2111,4.167,2228,4.32,2259,4.167,3092,5.523,3895,6.363,4573,4.901,4661,6.083,4706,7.144,4707,7.144,4708,7.144,4709,7.144,4710,7.144,4711,7.144,4712,7.506,4713,7.144,4714,7.144,4715,7.144]],["title/additional-documentation/project-setup-tutorial/authorization.html",[601,1,2807,1.401,4696,3.261]],["body/additional-documentation/project-setup-tutorial/authorization.html",[0,0.282,4,1.805,25,0.006,60,0.923,66,3.637,67,3.741,75,2.799,76,1.345,79,1.797,164,2.141,250,1.797,253,2.231,320,0.006,321,0.006,419,3.361,453,2.861,490,5.085,572,2.908,589,6.148,825,4.244,826,3.741,928,5.583,1043,3.448,1258,2.924,1680,4.244,1911,3.852,2111,4.244,2259,4.244,2761,5.956,4077,4.244,4535,3.637,4661,6.52,4696,6.515,4716,6.48,4717,6.48,4718,6.48,4719,6.48]],["title/additional-documentation/project-setup-tutorial/localization.html",[601,1,2461,2.579,2807,1.401]],["body/additional-documentation/project-setup-tutorial/localization.html",[0,0.325,3,0.381,4,1.777,25,0.006,35,1.72,60,1.064,65,0.252,92,0.767,118,0.881,144,4.453,148,0.23,149,0.252,320,0.006,321,0.006,356,3.995,381,4.133,461,4.643,588,3.358,602,2.515,682,2.672,803,4.133,833,4.86,938,3.522,939,3.229,1043,3.358,1214,3.643,1404,5.418,1730,4.285,1829,4.86,1911,3.751,2048,3.447,2111,4.133,2461,5.402,2613,4.453,2628,5.8,3191,4.643,3393,5.418,4077,4.133,4078,6.832,4079,5.8,4080,5.8,4081,6.31,4082,6.31,4083,6.31,4084,6.31,4085,6.31,4086,6.31,4087,7.469,4088,6.865,4089,5.418]],["title/additional-documentation/project-setup-tutorial/custom-fields-config.html",[46,0.834,354,0.977,601,0.765,942,1.135,2807,1.072]],["body/additional-documentation/project-setup-tutorial/custom-fields-config.html",[0,0.234,8,2.186,25,0.007,30,1.059,32,1.155,38,0.892,43,1.606,46,2.351,47,3.757,48,1.776,60,0.766,61,2.48,69,0.526,76,1.116,79,1.878,81,1.189,92,0.901,108,2.868,117,2.911,118,0.946,148,0.196,149,0.215,196,1.461,209,1.135,320,0.005,321,0.005,349,3.196,354,2.494,355,3.784,363,1.684,402,4.288,435,1.841,445,2.276,499,2.991,503,2.753,509,3.196,532,2.789,574,5.456,602,2.143,873,4.78,897,4.408,925,3.296,935,3.956,936,4.436,942,2.101,968,3.604,1006,2.861,1046,3.65,1051,3.65,1053,3.104,1059,4.856,1061,3.296,1096,3.956,1192,2.374,1210,3.794,1218,3.521,1244,4.616,1248,5.376,1258,2.426,1264,4.436,1634,4.545,1658,5.456,1680,3.521,1691,3.794,1696,4.141,1699,4.616,1766,3.794,1873,3.794,2308,4.357,2457,5.376,2461,3.65,2948,6.225,3069,3.65,3092,3.956,3121,5.376,3234,4.616,3429,4.616,4712,5.376,4720,6.037,4721,4.941,4722,6.037,4723,6.037,4724,6.037,4725,6.037,4726,6.037,4727,5.376,4728,4.941,4729,6.037,4730,6.037,4731,7.605,4732,6.037,4733,6.037,4734,6.037]],["title/additional-documentation/project-setup-tutorial/custom-entry-list.html",[196,0.573,209,0.613,601,0.765,942,1.135,2807,1.072]],["body/additional-documentation/project-setup-tutorial/custom-entry-list.html",[0,0.322,4,0.999,19,1.816,25,0.007,31,1.016,32,1.237,38,1.079,39,1.55,40,0.902,43,1.466,46,2.372,47,3.574,48,2.587,49,1.201,60,1.136,69,0.692,71,0.774,75,1.55,79,1.822,80,1.107,81,1.157,89,1.994,108,2.438,117,2.335,118,1.068,123,4.045,126,1.55,128,2.426,148,0.153,149,0.168,164,1.388,196,1.543,209,1.492,266,1.624,320,0.005,321,0.004,331,1.58,341,1.982,349,2.498,354,2.78,355,1.982,363,1.316,402,3.646,408,2.965,428,2.965,435,2.683,453,2.543,493,4.843,497,2.076,499,1.855,503,2.341,516,2.498,519,2.126,527,4.237,548,2.752,559,4.064,574,4.237,584,2.66,585,1.708,587,2.965,588,3.761,591,2.18,686,1.855,828,3.092,841,4.064,869,2.295,873,2.965,905,4.201,933,4.064,936,2.752,942,3.256,949,4.028,957,3.092,961,2.752,967,2.987,968,3.064,1039,2.853,1046,2.853,1052,3.862,1055,3.236,1056,3.092,1058,4.436,1059,2.752,1062,3.91,1064,3.772,1067,2.752,1075,2.295,1099,2.853,1134,2.853,1192,3.573,1218,4.85,1244,6.567,1258,2.965,1264,3.772,1410,2.426,1574,3.608,1628,4.436,1631,4.945,1642,4.667,1643,3.405,1658,3.092,1675,2.965,1679,4.064,1685,3.092,1691,4.637,1699,3.608,1705,3.092,1829,3.236,1873,2.965,2048,3.589,2111,2.752,2207,4.201,2228,3.91,2261,6.001,2308,3.405,2352,4.064,2661,4.201,3015,5.642,3069,2.853,3071,3.608,3092,5.449,3191,3.092,3215,3.608,3217,3.092,3322,3.862,3429,4.945,3431,4.028,3820,3.608,4213,3.608,4721,7.03,4727,7.648,4728,7.33,4735,6.466,4736,4.718,4737,4.718,4738,4.718,4739,5.759,4740,4.718,4741,6.466,4742,6.466,4743,4.718,4744,4.718,4745,4.718,4746,4.718,4747,4.718,4748,4.718,4749,4.718,4750,7.377,4751,4.718,4752,4.718,4753,4.718,4754,4.945,4755,6.466,4756,4.718,4757,4.718,4758,4.718,4759,4.718,4760,4.718,4761,4.718,4762,4.718,4763,4.718]],["title/additional-documentation/project-setup-tutorial/custom-entry-forms.html",[117,1.033,209,0.613,601,0.765,942,1.135,2807,1.072]],["body/additional-documentation/project-setup-tutorial/custom-entry-forms.html",[0,0.361,4,1.664,12,3.273,15,1.917,16,1.677,17,4.937,19,2.856,21,1.739,24,1.997,25,0.007,26,3.169,27,2.209,28,3.169,29,2.209,30,0.71,31,1.463,32,1.782,33,3.804,35,1.648,38,0.922,39,1.907,40,1.842,41,4.267,43,1.41,45,3.303,46,2.348,48,1.19,49,0.584,54,2.543,57,3.51,58,3.094,60,1.112,61,1.662,63,1.355,65,0.307,66,4.087,67,4.039,69,0.592,75,2.767,76,1.073,78,2.775,80,0.949,86,2.543,89,1.973,92,0.438,93,0.394,94,2.543,104,2.543,107,2.08,108,2.189,113,1.434,115,2.164,117,2.995,118,0.923,119,2.209,126,1.329,127,3.386,137,0.592,138,2.333,139,2.109,144,2.543,145,4.752,146,1.526,148,0.22,149,0.242,162,3.804,164,1.19,173,3.649,209,1.537,214,1.677,295,0.965,320,0.004,321,0.004,322,0.872,331,1.355,333,3.828,334,1.408,342,1.968,344,2.384,349,2.142,354,2.7,355,3.3,381,2.36,400,3.094,408,2.543,411,4.439,425,2.446,428,1.626,435,2.071,445,1.526,447,2.209,453,2.67,461,3.804,497,2.554,499,1.591,503,2.458,512,3.273,516,3.928,572,2.791,574,3.804,585,2.458,587,3.649,588,2.751,591,2.682,600,3.982,658,3.96,739,2.446,804,2.08,817,2.022,825,2.36,826,2.08,835,2.209,851,3.074,869,1.968,873,2.543,897,3.074,908,2.209,909,2.651,919,3.595,921,3.094,935,2.651,936,2.36,942,3.32,949,3.169,1009,4.486,1038,3.094,1039,4.106,1042,2.775,1046,4.106,1047,4.439,1048,3.273,1053,2.985,1058,2.775,1059,3.96,1067,4.582,1100,3.603,1113,4.19,1171,2.446,1220,3.094,1251,3.928,1258,1.626,1391,2.775,1497,3.603,1566,2.775,1634,2.209,1643,2.92,1664,2.651,1672,3.982,1696,2.775,1699,4.439,1700,5.17,1813,3.094,1873,2.543,1876,5.673,1921,4.582,1933,4.752,2000,3.982,2048,2.824,2082,2.446,2165,3.094,2228,5.093,2261,4.19,2267,3.311,2301,3.603,2308,4.19,2336,3.603,2461,2.446,2532,4.19,2595,3.094,2766,3.311,2822,2.92,3015,6.252,3025,2.651,3040,3.311,3069,2.446,3071,3.094,3092,2.651,3099,3.311,3198,3.603,3199,2.775,3233,4.439,3234,3.094,3275,3.094,3405,3.603,3431,3.707,3967,2.92,4088,3.311,4211,3.094,4213,4.439,4573,2.775,4574,2.92,4659,3.603,4663,3.603,4692,2.36,4721,3.311,4728,4.752,4764,4.045,4765,4.045,4766,4.045,4767,4.045,4768,4.045,4769,4.045,4770,5.805,4771,4.045,4772,4.045,4773,4.045,4774,5.805,4775,4.045,4776,4.045,4777,4.045,4778,4.045,4779,5.805,4780,4.045,4781,4.045,4782,4.045,4783,4.045,4784,4.045,4785,4.045,4786,8.176,4787,4.045,4788,4.045,4789,4.045,4790,4.045,4791,5.805,4792,4.045,4793,4.045,4794,4.045,4795,4.045,4796,4.045,4797,4.045,4798,4.045,4799,4.045,4800,4.045,4801,4.045,4802,4.045,4803,4.045,4804,4.045,4805,4.045,4806,4.045,4807,4.045,4808,4.045,4809,4.045,4810,4.045,4811,4.045]],["title/additional-documentation/readme.html",[426,1.513,601,1,2807,1.401]],["body/additional-documentation/readme.html",[0,0.363,2,0.283,3,0.293,5,2.582,9,0.185,12,4.742,13,3.57,14,3.986,15,4.136,25,0.006,39,2.941,60,1.186,61,2.238,63,1.824,66,3.559,67,3.661,75,2.339,76,1.613,89,1.369,92,0.59,93,0.531,118,0.678,139,1.693,149,0.194,232,1.06,244,1.278,255,1.3,320,0.005,321,0.005,331,1.824,341,3.533,350,1.574,410,3.932,426,2.527,495,2.342,503,1.972,505,3.986,512,3.071,514,2.65,516,4.453,572,1.86,573,4.306,588,3.374,595,2.974,647,3.57,658,4.153,739,3.294,774,4.306,782,3.294,804,2.801,835,2.974,874,3.57,910,2.801,944,4.906,957,3.57,968,2.582,1024,5.139,1043,2.582,1120,5.828,1193,3.294,1210,3.424,1212,3.071,1237,2.65,1262,6.885,1675,3.424,1680,5.658,1691,3.424,1705,3.57,1752,3.77,1911,2.884,1969,3.737,2052,3.737,2260,6.492,2393,5.139,2598,3.737,3014,4.166,3115,4.166,3195,3.737,3199,3.737,3215,4.166,3217,3.57,3680,3.559,3692,5.413,3967,5.139,4042,7.144,4077,4.626,4104,4.166,4162,5.445,4202,3.424,4211,5.445,4494,2.142,4495,3.488,4496,3.294,4497,3.424,4498,3.57,4499,3.57,4500,3.424,4501,3.57,4521,6.492,4535,3.965,4536,4.852,4537,4.852,4538,6.341,4539,4.852,4540,4.852,4541,6.341,4542,4.852,4543,4.166,4544,4.852,4545,6.432,4546,6.341,4547,4.852,4548,4.852,4549,4.852,4550,4.166,4551,5.828,4552,4.852,4553,7.064,4554,4.852,4555,6.885,4556,4.852,4557,4.852,4558,4.852,4559,2.974,4560,4.453,4561,4.852,4562,4.459,4563,4.459,4564,4.852,4565,4.852,4566,5.828,4567,4.852,4568,3.071,4569,3.071,4570,4.852,4571,6.065,4572,4.459,4573,6.256,4574,3.932,4575,4.459,4576,4.852,4577,4.852,4578,4.852,4579,4.852,4580,4.459,4581,4.459,4582,4.459,4583,6.341,4584,6.341,4585,4.852,4586,4.852,4587,4.852,4588,4.166,4589,4.852,4590,4.852]],["title/additional-documentation/readme/data-readme.html",[341,1.553,426,1.312,601,0.867,2807,1.215]],["body/additional-documentation/readme/data-readme.html",[0,0.328,7,1.874,19,2.774,25,0.007,39,2.367,60,0.914,65,0.301,75,2.367,148,0.234,149,0.32,164,2.12,320,0.006,321,0.006,322,1.938,334,2.507,499,2.833,505,3.414,572,2.459,601,1.69,774,4.357,909,4.721,1148,5.81,1646,5.897,1675,4.528,2398,6.416,3333,5.2,4494,2.833,4495,3.194,4496,5.44,4559,4.911,4560,3.815,4592,4.775,4692,4.202,4754,5.51,4812,5.897,4813,5.897,4814,6.933,4815,7.205,4816,4.721]],["title/additional-documentation/readme/ui-readme.html",[426,1.312,601,0.867,944,2.156,2807,1.215]],["body/additional-documentation/readme/ui-readme.html",[0,0.281,7,1.887,15,3.438,25,0.007,39,2.384,65,0.303,139,2.803,148,0.235,149,0.303,164,2.135,320,0.006,321,0.006,322,1.832,334,2.525,350,2.097,572,2.477,601,1.702,622,4.961,909,4.755,2259,4.232,3095,6.462,3275,5.548,3333,5.237,4340,5.939,4494,2.853,4495,3.402,4559,4.926,4560,3.842,4592,4.795,4692,4.232,4754,5.548,4812,5.939,4813,5.939,4814,6.961,4816,4.755,4817,7.255]],["title/additional-documentation/readme/core-readme.html",[426,1.312,505,1.752,601,0.867,2807,1.215]],["body/additional-documentation/readme/core-readme.html",[15,3.528,25,0.006,39,2.836,48,2.19,76,1.376,147,1.499,149,0.307,320,0.006,321,0.006,350,2.495,505,3.528,739,4.502,874,4.879,909,4.879,1829,5.107,2259,4.342,2333,6.63,2335,5.693,3275,5.693,4494,2.928,4495,2.807,4559,4.064,4560,3.942,4592,4.197,4754,5.693,4812,6.094,4813,6.094,4814,6.094,4818,7.445,4819,7.445,4820,7.445]],["title/additional-documentation/readme/style-readme.html",[5,1.752,426,1.312,601,0.867,2807,1.215]],["body/additional-documentation/readme/style-readme.html",[5,4.582,25,0.006,39,2.347,49,1.217,60,1.137,65,0.33,164,2.102,320,0.006,321,0.006,354,2.525,426,2.536,572,3.06,584,4.028,753,5.157,826,3.673,942,2.486,1053,3.673,1911,3.783,2097,5.464,2261,6.083,3014,7.081,3692,4.32,4077,4.167,4494,2.81,4495,3.381,4497,5.297,4559,5.055,4560,3.783,4592,4.028,4624,8.247,4674,6.363,4821,7.144,4822,8.428,4823,7.144,4824,7.144,4825,7.144,4826,7.144]],["title/additional-documentation/readme/calendar-readme.html",[426,1.312,601,0.867,782,2.235,2807,1.215]],["body/additional-documentation/readme/calendar-readme.html",[0,0.286,24,2.171,25,0.007,60,0.936,65,0.306,148,0.24,149,0.263,164,2.171,320,0.006,321,0.006,322,1.851,334,2.569,572,2.519,601,1.731,776,5.629,782,4.463,803,4.305,826,3.795,954,4.305,1212,5.123,1911,3.908,4494,2.903,4495,3.239,4559,4.961,4560,3.908,4592,4.843,4692,4.305,4816,4.837]],["title/additional-documentation/readme/location-readme.html",[244,0.867,426,1.312,601,0.867,2807,1.215]],["body/additional-documentation/readme/location-readme.html",[12,4.085,15,3.433,25,0.007,40,1.625,46,1.852,60,0.919,65,0.302,117,2.293,118,0.901,148,0.235,149,0.258,164,2.132,244,1.7,246,1.82,320,0.006,321,0.006,322,1.831,334,2.522,572,2.473,601,1.7,602,2.572,826,3.725,910,3.725,1158,4.381,1683,6.453,1755,4.97,1969,4.97,2683,6.133,4494,2.849,4495,3.204,4499,5.909,4559,4.923,4560,3.836,4592,4.791,4692,4.226,4816,4.748,4827,7.245]],["title/additional-documentation/readme/ace-readme.html",[13,2.423,426,1.312,601,0.867,2807,1.215]],["body/additional-documentation/readme/ace-readme.html",[0,0.278,12,4.039,13,5.882,14,3.395,15,3.395,25,0.007,60,1.071,65,0.341,140,6.381,148,0.233,149,0.255,164,2.108,320,0.006,321,0.006,322,1.819,323,6.093,334,2.493,572,3.064,601,1.681,826,3.684,1067,4.179,2097,5.479,2127,5.479,2261,5.171,3025,4.695,3692,4.332,4213,5.479,4494,2.818,4495,3.183,4498,5.882,4559,4.9,4560,3.793,4592,4.76,4692,4.179,4816,4.695,4828,8.442,4829,7.164,4830,7.164,4831,7.164]],["title/additional-documentation/readme/medium-editor-readme.html",[14,1.546,255,0.779,426,1.158,601,0.765,2807,1.072]],["body/additional-documentation/readme/medium-editor-readme.html",[12,4.149,14,4.43,15,3.488,25,0.007,60,0.933,65,0.305,148,0.239,149,0.262,164,2.165,179,1.507,255,1.756,320,0.006,321,0.006,322,1.848,334,2.561,572,2.512,601,1.726,826,3.784,4494,2.894,4495,3.234,4500,5.704,4559,4.955,4560,3.897,4592,4.835,4627,7.637,4692,4.293,4816,4.823]],["title/additional-documentation/readme/tinymce-readme.html",[426,1.312,601,0.867,2807,1.215,4202,2.324]],["body/additional-documentation/readme/tinymce-readme.html",[0,0.283,5,4.044,9,0.248,12,4.114,14,3.458,15,3.458,25,0.007,60,0.925,65,0.304,148,0.237,149,0.26,164,2.147,320,0.006,321,0.006,322,1.839,334,2.539,572,2.913,601,1.712,826,3.752,3025,4.782,4202,4.586,4281,6.159,4494,2.87,4495,3.218,4501,5.927,4559,4.937,4560,3.863,4592,4.811,4645,5.973,4692,4.256,4816,4.782,4832,7.297,4833,7.297]],["title/additional-documentation/changelog.html",[601,1,2807,1.401,4494,1.677]],["body/additional-documentation/changelog.html",[14,3.628,25,0.006,89,1.923,139,2.378,320,0.006,321,0.006,350,2.212,1075,3.724,1212,4.316,2095,4.053,4494,3.011,4495,2.887,4496,4.629,4497,4.812,4498,5.017,4499,5.017,4500,4.812,4501,5.017]],["title/additional-documentation/changelog/data-changelog.html",[341,1.553,601,0.867,2807,1.215,4494,1.454]],["body/additional-documentation/changelog/data-changelog.html",[0,0.266,9,0.234,14,2.444,25,0.006,32,0.987,37,0.536,43,0.844,46,1.318,47,3.319,49,0.745,60,0.871,65,0.184,69,0.673,71,0.617,75,2.256,76,0.953,79,1.274,81,0.667,89,2.068,99,3.944,117,2.174,118,0.642,148,0.167,190,1.296,193,2.006,196,1.505,209,1.757,232,1.778,274,1.721,303,1.252,320,0.005,321,0.005,343,2.816,354,2.568,412,2.167,428,2.073,448,1.573,453,2.029,495,2.217,499,2.029,503,1.868,514,2.509,516,2.731,519,2.325,520,2.383,548,4.006,571,2.383,572,1.761,573,3.119,582,2.444,585,1.868,595,2.816,601,1.21,627,2.383,637,3.944,654,4.957,686,2.029,804,2.652,817,3.433,828,3.38,835,2.816,851,2.731,936,3.009,941,3.009,942,2.39,967,3.803,1009,3.119,1047,3.944,1048,2.908,1053,2.652,1061,2.816,1062,3.119,1113,3.723,1143,3.009,1171,3.119,1237,2.509,1239,3.723,1366,3.944,1468,4.222,1473,4.594,1547,5.395,1628,3.538,1629,3.723,1752,2.731,1754,3.723,1804,3.723,1855,3.723,1861,4.222,1873,3.242,2048,2.509,2095,2.731,2225,4.957,2227,4.978,2228,4.153,2259,4.006,2452,3.944,2453,4.222,2829,3.944,3013,3.944,3233,3.944,3327,5,3431,5.103,3548,4.594,3680,4.672,3832,5.622,3874,4.594,3900,6.116,4340,4.222,4495,3.525,4496,5.652,4510,4.594,4535,2.578,4568,2.908,4569,4.353,4593,4.504,4739,4.594,4834,3.119,4835,3.119,4836,5.158,4837,5.772,4838,5.772,4839,5.184,4840,5.652,4841,5.158,4842,5.158,4843,5.158,4844,6.363,4845,4.594,4846,4.594,4847,5.158,4848,4.594,4849,5.158,4850,5.158,4851,5.158,4852,5.158,4853,5.158,4854,5.158,4855,5.158,4856,5.158,4857,4.594,4858,5.158,4859,4.594,4860,5.158,4861,5.158,4862,5.158,4863,5.158,4864,5.158,4865,5.158,4866,4.594,4867,4.594,4868,4.594,4869,5.158,4870,5.158,4871,5.158,4872,5.158,4873,5.158,4874,4.594,4875,4.594,4876,5.158,4877,5.158,4878,4.222,4879,5.158,4880,5.158,4881,4.594,4882,4.594,4883,5.158,4884,5.158,4885,5.158,4886,4.594,4887,5.158,4888,5.158,4889,5.158,4890,5.158,4891,5.158,4892,5.158,4893,5.158,4894,5.158,4895,4.594,4896,4.594,4897,4.222,4898,4.594,4899,4.594,4900,5.158,4901,5.158,4902,4.594]],["title/additional-documentation/changelog/ui-changelog.html",[601,0.867,944,2.156,2807,1.215,4494,1.454]],["body/additional-documentation/changelog/ui-changelog.html",[0,0.223,9,0.195,25,0.006,32,1.099,40,1.099,44,1.118,45,3.586,47,3.168,50,3.042,65,0.262,66,2.872,69,0.642,75,1.888,76,1.062,89,2.156,92,0.622,99,5.636,118,0.715,139,2.869,148,0.264,193,2.024,196,1.294,209,1.386,214,1.419,232,1.727,320,0.005,321,0.005,354,1.721,420,4.147,437,1.444,448,1.753,453,2.26,478,3.612,503,2.081,571,2.655,572,1.961,585,3.108,817,2.872,835,3.137,944,3.352,967,3.759,1061,3.137,1087,3.612,1143,3.352,1171,4.457,1237,2.796,1258,2.309,1448,4.394,1547,5.625,1628,3.942,1629,4.147,1752,3.042,1804,4.147,1815,3.352,1855,4.147,1861,4.704,2095,3.042,2227,5.491,2228,4.457,2452,4.394,2453,4.704,2829,4.394,3013,4.394,3233,4.394,3327,5.006,3333,4.147,3431,5.041,3680,4.616,4078,4.394,4089,4.394,4144,4.394,4495,3.527,4515,5.118,4535,2.872,4568,3.24,4569,4.155,4593,4.746,4658,5.118,4834,3.475,4835,3.475,4837,5.83,4838,5.83,4839,5.367,4840,5.584,4844,6.554,4845,5.118,4846,5.118,4848,5.118,4859,5.118,4866,5.118,4867,5.118,4868,5.118,4874,5.118,4875,5.118,4878,4.704,4881,5.118,4882,5.118,4886,5.118,4895,5.118,4896,5.118,4897,4.704,4899,5.118,4902,5.118,4903,5.746,4904,5.746,4905,5.746,4906,5.746,4907,5.746,4908,5.746,4909,5.746,4910,5.746,4911,5.746,4912,5.746,4913,5.746,4914,5.746,4915,5.746,4916,5.746,4917,5.746,4918,5.746,4919,5.746,4920,5.746,4921,5.746,4922,5.746,4923,5.746,4924,5.746,4925,5.118,4926,5.746,4927,5.118,4928,5.746,4929,5.746,4930,5.746]],["title/additional-documentation/changelog/core-changelog.html",[505,1.752,601,0.867,2807,1.215,4494,1.454]],["body/additional-documentation/changelog/core-changelog.html",[9,0.232,25,0.006,43,1.115,60,0.864,81,0.881,89,2.207,232,1.325,320,0.005,321,0.005,350,2.737,503,2.467,514,3.314,519,3.071,520,3.148,571,3.148,574,4.465,585,2.467,686,2.679,948,2.517,1752,3.607,2095,3.607,2225,5.913,2227,4.12,2259,3.974,2375,6.068,3327,3.974,3431,5.171,3680,4.735,4495,3.572,4509,6.068,4535,3.406,4568,3.841,4569,4.619,4593,4.779,4834,4.12,4835,4.12,4837,5.792,4838,5.792,4839,5.513,4840,5.728,4844,4.917,4857,6.068,4878,5.577,4897,5.577,4898,6.068,4927,6.068,4931,6.813,4932,6.813,4933,6.813,4934,6.813,4935,6.813,4936,6.813,4937,6.813,4938,6.813,4939,6.813]],["title/additional-documentation/changelog/style-changelog.html",[5,1.752,601,0.867,2807,1.215,4494,1.454]],["body/additional-documentation/changelog/style-changelog.html",[9,0.238,25,0.006,89,2.093,93,0.683,320,0.006,321,0.006,503,2.537,835,3.826,1752,3.711,1872,5.736,2095,3.711,2227,4.238,3327,4.088,3431,5.205,3680,4.765,4495,3.595,4497,5.992,4513,6.241,4535,3.503,4568,3.951,4569,4.698,4593,4.86,4834,4.238,4835,4.238,4837,5.825,4838,5.825,4839,5.564,4840,5.765,4844,5.058,4940,7.008,4941,7.008,4942,7.008,4943,7.008,4944,7.008,4945,7.008,4946,7.008,4947,7.008]],["title/additional-documentation/changelog/calendar-changelog.html",[601,0.867,782,2.235,2807,1.215,4494,1.454]],["body/additional-documentation/changelog/calendar-changelog.html",[9,0.238,25,0.006,89,2.09,320,0.006,321,0.006,503,2.531,1212,5.428,1752,3.7,2095,3.7,3327,4.077,3431,5.256,3680,4.812,4495,3.63,4508,5.721,4535,3.494,4568,3.94,4569,4.69,4593,5.181,4834,4.226,4835,4.226,4837,5.868,4838,5.868,4839,5.559,4840,5.822,4948,6.989,4949,6.989,4950,6.989,4951,6.989,4952,6.989,4953,6.989,4954,6.989]],["title/additional-documentation/changelog/location-changelog.html",[244,0.867,601,0.867,2807,1.215,4494,1.454]],["body/additional-documentation/changelog/location-changelog.html",[9,0.241,25,0.006,89,2.105,320,0.006,321,0.006,503,2.562,1752,3.746,2095,3.746,3327,4.127,3431,5.216,3680,4.776,4495,3.603,4499,6.261,4511,6.302,4535,3.537,4568,3.989,4569,4.725,4593,4.888,4834,4.279,4835,4.279,4837,5.836,4838,5.836,4839,5.582,4840,5.777,4955,7.076,4956,7.076,4957,7.076,4958,7.076,4959,7.076,4960,7.076]],["title/additional-documentation/changelog/ace-changelog.html",[13,2.423,601,0.867,2807,1.215,4494,1.454]],["body/additional-documentation/changelog/ace-changelog.html",[9,0.241,25,0.006,89,2.105,320,0.006,321,0.006,503,2.562,1752,3.746,2095,3.746,3327,4.127,3431,5.216,3680,4.776,4495,3.603,4498,6.261,4507,6.302,4535,3.537,4568,3.989,4569,4.725,4593,4.888,4834,4.279,4835,4.279,4837,5.836,4838,5.836,4839,5.582,4840,5.777,4961,7.076,4962,7.076,4963,7.076,4964,7.076,4965,7.076,4966,7.076]],["title/additional-documentation/changelog/medium-editor-changelog.html",[14,1.546,255,0.779,601,0.765,2807,1.072,4494,1.283]],["body/additional-documentation/changelog/medium-editor-changelog.html",[9,0.239,14,4.519,25,0.006,89,2.095,320,0.006,321,0.006,503,2.541,1752,3.716,2095,3.716,3327,4.093,3431,5.206,3680,4.767,4495,3.596,4500,5.994,4512,6.25,4535,3.508,4568,3.957,4569,4.702,4593,4.864,4834,4.244,4835,4.244,4837,5.826,4838,5.826,4839,5.567,4840,5.767,4967,7.018,4968,7.018,4969,7.018,4970,7.018,4971,7.018,4972,7.018]],["title/additional-documentation/changelog/tinymce-changelog.html",[601,0.867,2807,1.215,4202,2.324,4494,1.454]],["body/additional-documentation/changelog/tinymce-changelog.html",[0,0.265,9,0.233,15,3.242,25,0.006,50,3.622,57,4.136,89,2.063,121,2.749,320,0.006,321,0.006,503,2.477,514,3.328,585,2.477,1752,3.622,2095,3.622,2227,5.322,3327,4.79,3431,5.176,3680,4.792,4202,5.162,4495,3.575,4501,6.213,4514,6.092,4535,3.419,4568,3.857,4569,4.63,4593,4.79,4834,4.136,4835,4.136,4837,5.846,4838,5.846,4839,5.52,4840,5.733,4844,5.927,4973,6.84,4974,6.84,4975,6.84,4976,6.84,4977,6.84,4978,6.84,4979,6.84,4980,6.84,4981,6.84,4982,6.84,4983,6.84,4984,6.84,4985,6.84]],["title/additional-documentation/adding-new-packages.html",[76,0.603,601,0.765,835,1.781,2807,1.072,4495,1.23]],["body/additional-documentation/adding-new-packages.html",[8,2.291,9,0.215,25,0.007,43,1.036,61,2.599,63,2.622,65,0.336,66,3.162,67,3.253,75,2.079,76,1.688,89,1.589,92,0.848,164,1.861,320,0.005,321,0.005,341,3.733,343,3.454,381,4.961,503,2.291,516,4.503,572,3.118,585,2.291,591,3.618,597,4.275,598,3.253,601,1.484,647,4.146,693,5.634,701,4.415,816,5.634,825,3.69,826,3.253,835,3.454,840,4.838,841,3.976,924,4.922,1067,3.69,1114,6.41,1366,4.838,1658,5.132,1680,3.69,1696,4.34,1911,4.146,2053,5.179,2111,3.69,2127,4.838,2227,5.143,2524,6.41,2595,4.838,2704,7.574,3025,4.146,3163,6.974,3429,5.988,3680,3.162,3692,4.735,4494,2.488,4495,3.444,4545,4.838,4550,4.838,4551,5.179,4563,5.179,4571,4.838,4573,5.834,4612,6.962,4645,5.179,4925,5.634,4986,6.326,4987,6.326,4988,6.326,4989,6.326,4990,6.326,4991,6.326,4992,6.326,4993,6.326,4994,6.326,4995,6.326,4996,6.326,4997,6.326,4998,6.326,4999,6.326,5000,7.831,5001,7.831,5002,6.326,5003,6.326,5004,6.326,5005,6.326,5006,6.326,5007,6.326,5008,6.326,5009,6.326,5010,6.326,5011,7.831,5012,7.831,5013,6.326]],["title/additional-documentation/stackblitz.html",[601,1,2807,1.401,5014,3.798]],["body/additional-documentation/stackblitz.html",[0,0.285,5,3.478,15,3.478,25,0.007,60,0.931,65,0.332,75,2.411,148,0.238,149,0.261,320,0.006,321,0.006,322,1.581,334,2.554,572,2.505,573,4.438,776,5.611,1212,4.827,1911,3.885,2097,5.612,4079,6.007,4508,6.007,4692,4.28,5014,7.625,5015,7.338,5016,7.338,5017,7.338]],["title/additional-documentation/publishing.html",[601,1,2807,1.401,4566,3.49]],["body/additional-documentation/publishing.html",[0,0.282,4,1.805,25,0.006,60,0.923,66,3.637,67,3.741,75,2.799,76,1.345,79,1.797,164,2.141,250,1.797,253,2.231,320,0.006,321,0.006,419,3.361,453,2.861,490,5.085,572,2.908,589,6.148,825,4.244,826,3.741,928,5.583,1043,3.448,1258,2.924,1680,4.244,1911,3.852,2111,4.244,2259,4.244,2761,5.956,4077,4.244,4535,3.637,4661,6.52,4696,6.515,4716,6.48,4717,6.48,4718,6.48,4719,6.48]]],"invertedIndex":[["",{"_index":25,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"changelog.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"modules.html":{},"overview.html":{},"miscellaneous/typealiases.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["0",{"_index":869,"title":{},"body":{"classes/Collection.html":{},"interfaces/Day.html":{},"interfaces/FileOptions.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["0.12.3\",in",{"_index":4644,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["0.17.18",{"_index":4519,"title":{},"body":{"dependencies.html":{}}}],["0.18.3",{"_index":4960,"title":{},"body":{"additional-documentation/changelog/location-changelog.html":{}}}],["0.18.4",{"_index":4959,"title":{},"body":{"additional-documentation/changelog/location-changelog.html":{}}}],["0.18.5",{"_index":4511,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/location-changelog.html":{}}}],["0.18.6",{"_index":4958,"title":{},"body":{"additional-documentation/changelog/location-changelog.html":{}}}],["0.18.7",{"_index":4957,"title":{},"body":{"additional-documentation/changelog/location-changelog.html":{}}}],["0.18.8",{"_index":4956,"title":{},"body":{"additional-documentation/changelog/location-changelog.html":{}}}],["0.18.9",{"_index":4955,"title":{},"body":{"additional-documentation/changelog/location-changelog.html":{}}}],["0.19.10",{"_index":4933,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["0.19.11",{"_index":4932,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["0.19.12",{"_index":4931,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["0.19.6",{"_index":4936,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["0.19.7",{"_index":4935,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["0.19.8",{"_index":4509,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["0.19.9",{"_index":4934,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["0.2.10",{"_index":4948,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.2.3",{"_index":4954,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.2.4",{"_index":4953,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.2.5",{"_index":4952,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.2.6",{"_index":4508,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/stackblitz.html":{}}}],["0.2.7",{"_index":4951,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.2.8",{"_index":4950,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.2.9",{"_index":4949,"title":{},"body":{"additional-documentation/changelog/calendar-changelog.html":{}}}],["0.21.0",{"_index":4945,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["0.21.1",{"_index":4944,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["0.21.2",{"_index":4513,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/style-changelog.html":{}}}],["0.21.3",{"_index":4943,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["0.21.4",{"_index":4942,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["0.21.5",{"_index":4941,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["0.21.6",{"_index":4940,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["0.36.10",{"_index":4907,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.11",{"_index":4515,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.12",{"_index":4906,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.13",{"_index":4905,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.14",{"_index":4904,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.15",{"_index":4903,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.4",{"_index":4916,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.5",{"_index":4915,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.6",{"_index":4914,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.7",{"_index":4913,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.8",{"_index":4910,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.36.9",{"_index":4908,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["0.4.3",{"_index":4972,"title":{},"body":{"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.4.4",{"_index":4971,"title":{},"body":{"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.4.5",{"_index":4512,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.4.6",{"_index":4970,"title":{},"body":{"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.4.7",{"_index":4969,"title":{},"body":{"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.4.8",{"_index":4968,"title":{},"body":{"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.4.9",{"_index":4967,"title":{},"body":{"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["0.42.10",{"_index":4849,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.11",{"_index":4847,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.12",{"_index":4510,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.13",{"_index":4843,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.14",{"_index":4842,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.15",{"_index":4841,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.16",{"_index":4836,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.4",{"_index":4855,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.5",{"_index":4854,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.6",{"_index":4853,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.7",{"_index":4852,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.8",{"_index":4851,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.42.9",{"_index":4850,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0.5.10",{"_index":4973,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.3",{"_index":4983,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.4",{"_index":4982,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.5",{"_index":4981,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.6",{"_index":4514,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.7",{"_index":4976,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.8",{"_index":4975,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.5.9",{"_index":4974,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["0.6.3",{"_index":4966,"title":{},"body":{"additional-documentation/changelog/ace-changelog.html":{}}}],["0.6.4",{"_index":4965,"title":{},"body":{"additional-documentation/changelog/ace-changelog.html":{}}}],["0.6.5",{"_index":4507,"title":{},"body":{"dependencies.html":{},"additional-documentation/changelog/ace-changelog.html":{}}}],["0.6.6",{"_index":4964,"title":{},"body":{"additional-documentation/changelog/ace-changelog.html":{}}}],["0.6.7",{"_index":4963,"title":{},"body":{"additional-documentation/changelog/ace-changelog.html":{}}}],["0.6.8",{"_index":4962,"title":{},"body":{"additional-documentation/changelog/ace-changelog.html":{}}}],["0.6.9",{"_index":4961,"title":{},"body":{"additional-documentation/changelog/ace-changelog.html":{}}}],["0.8.26",{"_index":4531,"title":{},"body":{"dependencies.html":{}}}],["00a2e2",{"_index":4984,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["00dbf0",{"_index":2942,"title":{},"body":{"components/MenuComponent.html":{}}}],["01",{"_index":4838,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["020e689",{"_index":4877,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["04fffbd",{"_index":4882,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["06b615c",{"_index":4865,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["0b433be",{"_index":4863,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["1",{"_index":164,"title":{},"body":{"components/AceComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"interfaces/FileOptions.html":{},"components/ListComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"injectables/PopService.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"overview.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["1&&!pagination?.isfirst",{"_index":3409,"title":{},"body":{"components/PaginationComponent.html":{}}}],["1&&!pagination?.islast",{"_index":3413,"title":{},"body":{"components/PaginationComponent.html":{}}}],["1)[0",{"_index":895,"title":{},"body":{"classes/Collection.html":{}}}],["1.0.0",{"_index":4502,"title":{},"body":{"dependencies.html":{}}}],["1.1.0",{"_index":4525,"title":{},"body":{"dependencies.html":{}}}],["1.12.0",{"_index":4520,"title":{},"body":{"dependencies.html":{}}}],["1.3.2",{"_index":4666,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["1.4.2",{"_index":4516,"title":{},"body":{"dependencies.html":{}}}],["1.9.0",{"_index":4529,"title":{},"body":{"dependencies.html":{}}}],["10",{"_index":1658,"title":{},"body":{"classes/Field.html":{},"components/ListComponent.html":{},"classes/Pagination.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/adding-new-packages.html":{}}}],["100",{"_index":1816,"title":{},"body":{"interfaces/FileOptions.html":{},"classes/Pagination.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{}}}],["10004",{"_index":1389,"title":{},"body":{"components/DefaultOutputComponent.html":{}}}],["10m",{"_index":2406,"title":{},"body":{"components/ListComponent.html":{}}}],["11",{"_index":5011,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["12",{"_index":1715,"title":{},"body":{"classes/Field.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{}}}],["121566c",{"_index":4894,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["14",{"_index":4596,"title":{},"body":{"overview.html":{}}}],["18",{"_index":4595,"title":{},"body":{"overview.html":{}}}],["187",{"_index":4869,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["1].id",{"_index":383,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["1].indexof(tab.rout",{"_index":4187,"title":{},"body":{"components/TabsComponent.html":{}}}],["1c382d1",{"_index":4886,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["1cb8b1c",{"_index":4926,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["1cfc328",{"_index":4859,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["1d9e231",{"_index":4919,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["2",{"_index":825,"title":{},"body":{"classes/Collection.html":{},"classes/PaginationConfig.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["2.0.1",{"_index":4524,"title":{},"body":{"dependencies.html":{}}}],["2.4.2",{"_index":4670,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["2.5.4",{"_index":4518,"title":{},"body":{"dependencies.html":{}}}],["2.html",{"_index":4802,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["20",{"_index":2402,"title":{},"body":{"components/ListComponent.html":{},"overview.html":{}}}],["200",{"_index":2134,"title":{},"body":{"directives/ImageDirective.html":{},"components/TinymceComponent.html":{}}}],["2000",{"_index":2622,"title":{},"body":{"components/LoaderComponent.html":{}}}],["2019",{"_index":4837,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["21",{"_index":4593,"title":{},"body":{"overview.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["24868b9",{"_index":4875,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["25",{"_index":3327,"title":{},"body":{"classes/Pagination.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["27",{"_index":3524,"title":{},"body":{"injectables/PopService.html":{}}}],["28",{"_index":4839,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["2826ac4",{"_index":4891,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["29a9e1",{"_index":2941,"title":{},"body":{"components/MenuComponent.html":{}}}],["3",{"_index":826,"title":{},"body":{"classes/Collection.html":{},"classes/PaginationConfig.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["3.10.5",{"_index":4522,"title":{},"body":{"dependencies.html":{}}}],["300px",{"_index":2681,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["364482b",{"_index":4890,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["373bebf",{"_index":4947,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["39;muffin",{"_index":3111,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["3fb8f47",{"_index":4924,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["4",{"_index":3025,"title":{},"body":{"components/ModalComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["4.3.6",{"_index":4667,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["4.7.4",{"_index":4977,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["4.9.2",{"_index":4527,"title":{},"body":{"dependencies.html":{}}}],["400",{"_index":2172,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["42",{"_index":1344,"title":{},"body":{"interfaces/Day.html":{}}}],["431e3fd",{"_index":4872,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["43c7da5",{"_index":4861,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["47a7930",{"_index":4896,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["48.8093253",{"_index":2662,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["4[0",{"_index":3618,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["4a14246",{"_index":4864,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["4a5ea9",{"_index":2943,"title":{},"body":{"components/MenuComponent.html":{}}}],["5",{"_index":1696,"title":{},"body":{"classes/Field.html":{},"injectables/TypeConfigService.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/adding-new-packages.html":{}}}],["5.0.0",{"_index":1953,"title":{},"body":{"injectables/FormService.html":{}}}],["5.23.2",{"_index":4523,"title":{},"body":{"dependencies.html":{}}}],["50",{"_index":2948,"title":{},"body":{"components/MenuComponent.html":{},"classes/Pagination.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["500",{"_index":2955,"title":{},"body":{"components/MenuComponent.html":{}}}],["5000",{"_index":3291,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["500px",{"_index":176,"title":{},"body":{"components/AceComponent.html":{}}}],["50e2d98",{"_index":4920,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["5892365",{"_index":4876,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["5see",{"_index":3362,"title":{},"body":{"classes/Pagination.html":{}}}],["5the",{"_index":1698,"title":{},"body":{"classes/Field.html":{}}}],["6",{"_index":840,"title":{},"body":{"classes/Collection.html":{},"components/ImageSelectPopComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/adding-new-packages.html":{}}}],["6.3.3",{"_index":4526,"title":{},"body":{"dependencies.html":{}}}],["68",{"_index":4594,"title":{},"body":{"overview.html":{}}}],["6e961b8",{"_index":4848,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["7",{"_index":841,"title":{"additional-documentation/angular-7-upgrade-guide.html":{}},"body":{"classes/Collection.html":{},"interfaces/Day.html":{},"overview.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/adding-new-packages.html":{}}}],["7.2.0",{"_index":4505,"title":{},"body":{"dependencies.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["7.2.1",{"_index":4572,"title":{},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{}}}],["70d5e24",{"_index":4927,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["7580583",{"_index":4892,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["7733151",{"_index":4909,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["789e7ca",{"_index":4862,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["7a88da8",{"_index":4929,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["8",{"_index":2400,"title":{},"body":{"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["8236caf",{"_index":4902,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["83cc6374",{"_index":652,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["89ab][0",{"_index":3620,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["8fab72f",{"_index":4985,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["9",{"_index":1770,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["9.159388100000001",{"_index":2663,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["96a29d70d11b",{"_index":3018,"title":{},"body":{"components/ModalComponent.html":{}}}],["9776",{"_index":2545,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["9a",{"_index":3165,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["9bf067d",{"_index":4897,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["9e671b9",{"_index":4874,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["_",{"_index":119,"title":{},"body":{"components/AceComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["_'@ec.components/$1'_",{"_index":4623,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["_'@ec.components/(\\w+).*'_",{"_index":4622,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["_]{22",{"_index":3622,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["_]{22}$/.test(id",{"_index":1771,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["_]{7,14",{"_index":3167,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["_api",{"_index":713,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["_api.login(email",{"_index":717,"title":{},"body":{"injectables/AuthService.html":{}}}],["_api.resetpassword(email",{"_index":763,"title":{},"body":{"injectables/AuthService.html":{}}}],["_cre",{"_index":3107,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["_creat",{"_index":3121,"title":{},"body":{"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["_creator",{"_index":3128,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["_entri",{"_index":1126,"title":{},"body":{"injectables/CrudService.html":{}}}],["_entrytitl",{"_index":3169,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["_item",{"_index":4056,"title":{},"body":{"classes/Sorter.html":{}}}],["_item.id",{"_index":1518,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["_items.indexof(item",{"_index":4057,"title":{},"body":{"classes/Sorter.html":{}}}],["_method",{"_index":760,"title":{},"body":{"injectables/AuthService.html":{}}}],["_methods.filter(x",{"_index":758,"title":{},"body":{"injectables/AuthService.html":{}}}],["_modifi",{"_index":3126,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["_moment",{"_index":1356,"title":{},"body":{"interfaces/Day.html":{}}}],["_resourc",{"_index":3851,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["_toggl",{"_index":3491,"title":{},"body":{"components/PopComponent.html":{}}}],["_upload",{"_index":4421,"title":{},"body":{"components/UploadComponent.html":{}}}],["a.path",{"_index":3568,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["a.then(r",{"_index":754,"title":{},"body":{"injectables/AuthService.html":{}}}],["a08a9d6",{"_index":4885,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["a992381",{"_index":4868,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["abov",{"_index":1699,"title":{},"body":{"classes/Field.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["abstract",{"_index":909,"title":{},"body":{"classes/Config.html":{},"interfaces/ItemConfig.html":{},"classes/Sorter.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["abstractcontrol",{"_index":1939,"title":{},"body":{"injectables/FormService.html":{},"components/InputComponent.html":{}}}],["ac",{"_index":13,"title":{"additional-documentation/readme/ace-readme.html":{},"additional-documentation/changelog/ace-changelog.html":{}},"body":{"components/AceComponent.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/ace-readme.html":{}}}],["acc:edit",{"_index":3655,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["acc:list",{"_index":3654,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["accept",{"_index":3305,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["access",{"_index":1046,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"interfaces/Symbol.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["access=publ",{"_index":4567,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["accessor",{"_index":3591,"title":{},"body":{"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{}}}],["accord",{"_index":3356,"title":{},"body":{"classes/Pagination.html":{}}}],["account",{"_index":406,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/AuthService.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"injectables/TypeConfigService.html":{}}}],["accountid",{"_index":3653,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["accountresourc",{"_index":2776,"title":{},"body":{"components/LoginComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{}}}],["accounts(environment.environ",{"_index":3933,"title":{},"body":{"injectables/SdkService.html":{}}}],["ace'},{'nam",{"_index":183,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ace.compon",{"_index":335,"title":{},"body":{"modules/AceModule.html":{}}}],["ace.component.html",{"_index":36,"title":{},"body":{"components/AceComponent.html":{}}}],["ace.component.scss",{"_index":34,"title":{},"body":{"components/AceComponent.html":{}}}],["ace.edit(this.container.nativeel",{"_index":155,"title":{},"body":{"components/AceComponent.html":{}}}],["ace/mod",{"_index":100,"title":{},"body":{"components/AceComponent.html":{}}}],["ace/them",{"_index":103,"title":{},"body":{"components/AceComponent.html":{}}}],["acecompon",{"_index":1,"title":{"components/AceComponent.html":{}},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["acemodul",{"_index":323,"title":{"modules/AceModule.html":{}},"body":{"modules/AceModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/readme/ace-readme.html":{}}}],["acemoduleconfig",{"_index":336,"title":{},"body":{"modules/AceModule.html":{}}}],["act",{"_index":1404,"title":{},"body":{"directives/DropzoneDirective.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["action",{"_index":339,"title":{"interfaces/Action.html":{}},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"components/LoaderComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["action(item.getbody().data",{"_index":3543,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actionbar",{"_index":351,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/ResourceActionbarState.html":{}}}],["actionbar'},{'nam",{"_index":185,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["actionbar.compon",{"_index":3805,"title":{},"body":{"modules/ResourceModule.html":{}}}],["actionbar.component.t",{"_index":3534,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actionbar.dropdownload",{"_index":3562,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actionbar.dropdownloader.wait(load",{"_index":3563,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actionbar.loadactions(act",{"_index":3561,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actionbar/actionbar.compon",{"_index":3960,"title":{},"body":{"modules/SelectModule.html":{}}}],["actionbar/api",{"_index":3806,"title":{},"body":{"modules/ResourceModule.html":{}}}],["actionbar/resourc",{"_index":3533,"title":{},"body":{"interfaces/ResourceActionbarState.html":{},"modules/ResourceModule.html":{}}}],["actionbarcompon",{"_index":184,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["actionbarconfig",{"_index":352,"title":{"interfaces/ActionbarConfig.html":{}},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["actionfunct",{"_index":345,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/ResourceActionbarState.html":{},"miscellaneous/typealiases.html":{}}}],["actions.length",{"_index":3578,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actions.push",{"_index":3546,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["actionsbefor",{"_index":374,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["actionstack",{"_index":357,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["activ",{"_index":582,"title":{},"body":{"guards/AuthGuard.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ListConfig.html":{},"components/LoaderComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"components/TabComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["activatedrout",{"_index":545,"title":{},"body":{"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{},"components/TabsComponent.html":{}}}],["active>a",{"_index":3010,"title":{},"body":{"components/MenuComponent.html":{}}}],["activi",{"_index":2630,"title":{},"body":{"components/LoaderComponent.html":{}}}],["actual",{"_index":2548,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["actual_compon",{"_index":319,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ad",{"_index":835,"title":{"additional-documentation/adding-new-packages.html":{}},"body":{"classes/Collection.html":{},"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["ad58c68",{"_index":4901,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["add",{"_index":572,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"classes/Collection.html":{},"components/EntryListPopComponent.html":{},"injectables/FormService.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceListPopComponent.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["add(item",{"_index":832,"title":{},"body":{"classes/Collection.html":{}}}],["addal",{"_index":813,"title":{},"body":{"classes/Collection.html":{}}}],["addall(item",{"_index":837,"title":{},"body":{"classes/Collection.html":{}}}],["addfield",{"_index":1912,"title":{},"body":{"injectables/FormService.html":{}}}],["addfield(field",{"_index":1919,"title":{},"body":{"injectables/FormService.html":{}}}],["addimagebyurl",{"_index":4206,"title":{},"body":{"components/TinymceComponent.html":{}}}],["addimagebyurl(url",{"_index":4224,"title":{},"body":{"components/TinymceComponent.html":{}}}],["addit",{"_index":2807,"title":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}},"body":{"components/LoginFormComponent.html":{},"components/ModalComponent.html":{},"components/SignupFormComponent.html":{}}}],["addregist",{"_index":3741,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["address",{"_index":1986,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationPickerComponent.html":{}}}],["addtostack",{"_index":388,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["addunregist",{"_index":3743,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["admin",{"_index":410,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/AuthService.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["adminentryinputcompon",{"_index":186,"title":{"components/AdminEntryInputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["adress",{"_index":3444,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["advanc",{"_index":3228,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["advantag",{"_index":2625,"title":{},"body":{"components/LoaderComponent.html":{}}}],["affect",{"_index":4749,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["aftercontentinit",{"_index":4164,"title":{},"body":{"components/TabsComponent.html":{}}}],["afterviewinit",{"_index":2743,"title":{},"body":{"components/LocationSearchComponent.html":{},"components/TinymceComponent.html":{}}}],["afterward",{"_index":3037,"title":{},"body":{"components/ModalComponent.html":{}}}],["agm",{"_index":2682,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["agm/cor",{"_index":1993,"title":{},"body":{"injectables/GeocodeService.html":{},"modules/LocationModule.html":{},"dependencies.html":{}}}],["agmcoremodul",{"_index":2694,"title":{},"body":{"modules/LocationModule.html":{}}}],["agmcoremodule.forroot",{"_index":2700,"title":{},"body":{"modules/LocationModule.html":{}}}],["agnost",{"_index":4814,"title":{},"body":{"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["aizasyadgeue1yxo1f",{"_index":2702,"title":{},"body":{"modules/LocationModule.html":{}}}],["al",{"_index":4731,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["algorithm",{"_index":4039,"title":{},"body":{"classes/Sorter.html":{}}}],["algorithm(a.resolv",{"_index":4063,"title":{},"body":{"classes/Sorter.html":{}}}],["algorithm(a.sort(properti",{"_index":4065,"title":{},"body":{"classes/Sorter.html":{}}}],["alias",{"_index":4598,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["allow",{"_index":683,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/CrudConfig.html":{}}}],["along",{"_index":4693,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["alreadi",{"_index":3285,"title":{},"body":{"injectables/NotificationsService.html":{},"classes/Pagination.html":{}}}],["alt",{"_index":2189,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["alter",{"_index":3863,"title":{},"body":{"interfaces/SdkField.html":{}}}],["alter(valu",{"_index":1367,"title":{},"body":{"interfaces/Day.html":{}}}],["altern",{"_index":2165,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["alway",{"_index":1038,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"components/ListComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["alwaysloadentri",{"_index":1020,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["alwaysshowhead",{"_index":2446,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["amaz",{"_index":4728,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["amazement_factor",{"_index":4727,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["amazement_factor>=5",{"_index":4763,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["amount",{"_index":3203,"title":{},"body":{"classes/Notification.html":{}}}],["angezeigt",{"_index":610,"title":{},"body":{"guards/AuthGuard.html":{}}}],["angular",{"_index":15,"title":{"additional-documentation/angular-7-upgrade-guide.html":{}},"body":{"components/AceComponent.html":{},"injectables/FormService.html":{},"components/MenuComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/stackblitz.html":{}}}],["angular.json",{"_index":4645,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["angular/anim",{"_index":4504,"title":{},"body":{"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["angular/cli",{"_index":4665,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["angular/clith",{"_index":4664,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["angular/common",{"_index":629,"title":{},"body":{"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/UtilityModule.html":{},"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["angular/compil",{"_index":4506,"title":{},"body":{"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["angular/cor",{"_index":137,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["angular/core/src/metadata/lifecycle_hook",{"_index":2570,"title":{},"body":{"components/ListItemsComponent.html":{},"components/PaginationComponent.html":{}}}],["angular/datamanag",{"_index":4539,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["angular/form",{"_index":138,"title":{},"body":{"components/AceComponent.html":{},"modules/AuthModule.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultInputComponent.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"modules/ResourceModule.html":{},"components/SignupFormComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"modules/UtilityModule.html":{},"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["angular/http",{"_index":4668,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["angular/languag",{"_index":4669,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["angular/platform",{"_index":1844,"title":{},"body":{"modules/FilesModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["angular/rout",{"_index":596,"title":{},"body":{"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"injectables/HistoryService.html":{},"components/MenuComponent.html":{},"components/ResourceCrudComponent.html":{},"components/TabsComponent.html":{},"modules/UtilityModule.html":{},"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["angular7",{"_index":4601,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["anim",{"_index":3021,"title":{},"body":{"components/ModalComponent.html":{}}}],["anoth",{"_index":600,"title":{},"body":{"guards/AuthGuard.html":{},"components/IconComponent.html":{},"interfaces/ItemConfig.html":{},"components/LoginComponent.html":{},"components/SignupComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["anweisungen",{"_index":3461,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["anyth",{"_index":4617,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["anywher",{"_index":1649,"title":{},"body":{"classes/Field.html":{},"components/PopComponent.html":{}}}],["api",{"_index":188,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/GeocodeService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["api(api",{"_index":3922,"title":{},"body":{"injectables/SdkService.html":{}}}],["api.asset(this.assetid",{"_index":481,"title":{},"body":{"directives/AssetDirective.html":{}}}],["api.checkpermission(permiss",{"_index":731,"title":{},"body":{"injectables/AuthService.html":{}}}],["api.create(rel",{"_index":3855,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["api.createdmassets(assetgroupid",{"_index":1783,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["api.getschema(model",{"_index":3948,"title":{},"body":{"injectables/SdkService.html":{}}}],["api.logout",{"_index":764,"title":{},"body":{"injectables/AuthService.html":{}}}],["api.me().then((account",{"_index":725,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["api.resourcelist",{"_index":517,"title":{},"body":{"components/AssetListComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["api.resourcelist(rel",{"_index":3558,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["api.signup(email",{"_index":720,"title":{},"body":{"injectables/AuthService.html":{}}}],["apiactionbarcompon",{"_index":187,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["apikey",{"_index":2701,"title":{},"body":{"modules/LocationModule.html":{}}}],["apiresolv",{"_index":3873,"title":{},"body":{"injectables/SdkService.html":{}}}],["app",{"_index":3217,"title":{},"body":{"components/NotificationsComponent.html":{},"injectables/ResourceConfig.html":{},"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{}}}],["app.compon",{"_index":4705,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["app.component.html",{"_index":4079,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/stackblitz.html":{}}}],["app.modul",{"_index":4829,"title":{},"body":{"additional-documentation/readme/ace-readme.html":{}}}],["app::delet",{"_index":3683,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["app::edit",{"_index":3684,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["appcompon",{"_index":4080,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["appear",{"_index":1647,"title":{},"body":{"classes/Field.html":{},"components/PopComponent.html":{},"components/UploadComponent.html":{}}}],["append",{"_index":1476,"title":{},"body":{"directives/EntriesDirective.html":{},"interfaces/FileOptions.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["appid",{"_index":3682,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["appletre",{"_index":2397,"title":{},"body":{"components/ListComponent.html":{}}}],["appli",{"_index":1253,"title":{},"body":{"interfaces/Day.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ModalComponent.html":{}}}],["applic",{"_index":4211,"title":{},"body":{"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["applicationref",{"_index":4209,"title":{},"body":{"components/TinymceComponent.html":{}}}],["applyconfig",{"_index":2468,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["applyconfig(list",{"_index":2472,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["applyfilt",{"_index":2512,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["applyfilter(properti",{"_index":2520,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["appmodul",{"_index":4692,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["approutingmodul",{"_index":4690,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["arbitrari",{"_index":3359,"title":{},"body":{"classes/Pagination.html":{},"classes/Sorter.html":{}}}],["architect",{"_index":4646,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["area",{"_index":3470,"title":{},"body":{"components/PopComponent.html":{}}}],["argument",{"_index":1411,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["around",{"_index":3405,"title":{},"body":{"components/PaginationComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["array",{"_index":682,"title":{},"body":{"injectables/AuthService.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"interfaces/FileOptions.html":{},"pipes/GroupPipe.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MenuComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"interfaces/Upload.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["array(42",{"_index":1326,"title":{},"body":{"interfaces/Day.html":{}}}],["array(math.ceil(this.tot",{"_index":3377,"title":{},"body":{"classes/Pagination.html":{}}}],["array.from(new",{"_index":3364,"title":{},"body":{"classes/Pagination.html":{}}}],["array.isarray(asset",{"_index":1763,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["array.isarray(pattern",{"_index":1232,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["array.slice(start",{"_index":2871,"title":{},"body":{"pipes/MaxItemsPipe.html":{}}}],["artifact",{"_index":4579,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["ask",{"_index":3284,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["asobserv",{"_index":4254,"title":{},"body":{"components/TinymceComponent.html":{}}}],["asset",{"_index":193,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["asset.assetid",{"_index":1767,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["asset.file.resolut",{"_index":2213,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["asset.getfilevariant(this.s",{"_index":2157,"title":{},"body":{"directives/ImageDirective.html":{}}}],["asset.getimagethumburl(this.s",{"_index":2159,"title":{},"body":{"directives/ImageDirective.html":{}}}],["asset.getimageurl(200",{"_index":3697,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["asset.getimageurl(s",{"_index":2194,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["asset.getimageurl(this.s",{"_index":2160,"title":{},"body":{"directives/ImageDirective.html":{}}}],["asset.getoriginalfil",{"_index":2208,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["asset.id",{"_index":2155,"title":{},"body":{"directives/ImageDirective.html":{}}}],["asset.reduc",{"_index":1764,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["asset.thumbnail",{"_index":3716,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["asset.thumbnails.length",{"_index":3717,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["asset.thumbnails[0].url",{"_index":3718,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["asset.titl",{"_index":2211,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["asset.typ",{"_index":2153,"title":{},"body":{"directives/ImageDirective.html":{},"injectables/ResourceConfig.html":{}}}],["asset/asset.direct",{"_index":1848,"title":{},"body":{"modules/FilesModule.html":{},"directives/ImageDirective.html":{}}}],["assetdirect",{"_index":304,"title":{"directives/AssetDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["assetgroup",{"_index":190,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["assetgroup#definitions/condit",{"_index":3712,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["assetgroupid",{"_index":556,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"interfaces/FileOptions.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["assetgrouplist",{"_index":1738,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assetgrouplist(forcereload",{"_index":1824,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assetgrouplistpromis",{"_index":1739,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assetgroupselectcompon",{"_index":189,"title":{"components/AssetgroupSelectComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["assetid",{"_index":432,"title":{},"body":{"directives/AssetDirective.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{}}}],["assetlist.getallitem",{"_index":1785,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assetlistcompon",{"_index":192,"title":{"components/AssetListComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["assetlistpopcompon",{"_index":195,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["assets.map((asset",{"_index":1821,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assets.map(asset",{"_index":1788,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assets.reduce((id",{"_index":1807,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assets/asset",{"_index":429,"title":{},"body":{"directives/AssetDirective.html":{}}}],["assets[0",{"_index":1786,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["assetselectcompon",{"_index":198,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["assign",{"_index":1134,"title":{},"body":{"injectables/CrudService.html":{},"classes/Field.html":{},"directives/ImageDirective.html":{},"injectables/ModelConfigService.html":{},"classes/PaginationConfig.html":{},"injectables/ResourceService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["associ",{"_index":1651,"title":{},"body":{"classes/Field.html":{},"injectables/ResourceService.html":{},"components/TabsComponent.html":{},"interfaces/Update.html":{}}}],["assum",{"_index":4700,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["attempt",{"_index":3243,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["audio",{"_index":1750,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["auth",{"_index":626,"title":{},"body":{"modules/AuthModule.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{}}}],["auth.servic",{"_index":637,"title":{},"body":{"modules/AuthModule.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["auth/auth.modul",{"_index":1167,"title":{},"body":{"modules/DataModule.html":{}}}],["auth/auth.servic",{"_index":977,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["authent",{"_index":660,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["authguard",{"_index":579,"title":{"guards/AuthGuard.html":{}},"body":{"guards/AuthGuard.html":{},"modules/AuthModule.html":{}}}],["authmodul",{"_index":616,"title":{"modules/AuthModule.html":{}},"body":{"modules/AuthModule.html":{},"modules/DataModule.html":{},"modules.html":{},"overview.html":{}}}],["author",{"_index":4696,"title":{"additional-documentation/project-setup-tutorial/authorization.html":{}},"body":{"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["authservic",{"_index":624,"title":{"injectables/AuthService.html":{}},"body":{"modules/AuthModule.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"overview.html":{}}}],["auto",{"_index":2126,"title":{},"body":{"directives/ImageDirective.html":{},"injectables/ModelConfigService.html":{}}}],["autocomplet",{"_index":1982,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{}}}],["autocomplete.addlistener('place_chang",{"_index":1998,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["autocomplete.getplac",{"_index":2001,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["autocompleteaddress",{"_index":1971,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["autocompleteaddress(el",{"_index":1980,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["autofocusfirst",{"_index":2351,"title":{},"body":{"components/ListComponent.html":{}}}],["autoload",{"_index":433,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"directives/ImageDirective.html":{},"interfaces/ListConfig.html":{}}}],["autoload=fals",{"_index":454,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntryDirective.html":{}}}],["automat",{"_index":1705,"title":{},"body":{"classes/Field.html":{},"interfaces/ListConfig.html":{},"classes/Notification.html":{},"injectables/SdkService.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{}}}],["avail",{"_index":739,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/CrudConfig.html":{},"interfaces/ListConfig.html":{},"components/NotificationsComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["availab",{"_index":68,"title":{},"body":{"components/AceComponent.html":{}}}],["availables",{"_index":2447,"title":{},"body":{"interfaces/ListConfig.html":{},"classes/Pagination.html":{}}}],["avatar",{"_index":4321,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["b",{"_index":753,"title":{},"body":{"injectables/AuthService.html":{},"classes/Pagination.html":{},"classes/Sorter.html":{},"miscellaneous/functions.html":{},"additional-documentation/readme/style-readme.html":{}}}],["b(r",{"_index":755,"title":{},"body":{"injectables/AuthService.html":{}}}],["b.resolv",{"_index":4064,"title":{},"body":{"classes/Sorter.html":{}}}],["b.sort(properti",{"_index":4066,"title":{},"body":{"classes/Sorter.html":{}}}],["b365847",{"_index":4980,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["b3e8115",{"_index":4939,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["b4d03eb",{"_index":4879,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["b7460e6",{"_index":4918,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["b760780",{"_index":4930,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["back",{"_index":1056,"title":{},"body":{"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/ModalComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["backdrop",{"_index":1581,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["backend",{"_index":4754,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["background",{"_index":1254,"title":{},"body":{"interfaces/Day.html":{}}}],["bake",{"_index":3237,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["baken",{"_index":3239,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["bakery:bakeryservic",{"_index":3236,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["ball",{"_index":3229,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["bar",{"_index":3542,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["barrel",{"_index":4911,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["base",{"_index":1672,"title":{},"body":{"classes/Field.html":{},"injectables/FormService.html":{},"interfaces/ItemConfig.html":{},"classes/Sorter.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["base64",{"_index":3595,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["base64uuid",{"_index":3586,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["basi",{"_index":1359,"title":{},"body":{"interfaces/Day.html":{}}}],["basic",{"_index":1380,"title":{},"body":{"components/DefaultInputComponent.html":{},"components/ListComponent.html":{}}}],["bcbefd1",{"_index":4873,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["be",{"_index":3333,"title":{},"body":{"classes/Pagination.html":{},"components/TinymceComponent.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["befor",{"_index":514,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/CrudConfig.html":{},"classes/Field.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"components/MenuComponent.html":{},"classes/Pagination.html":{},"classes/PaginationConfig.html":{},"injectables/SdkService.html":{},"components/UploadComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["beforehand",{"_index":4746,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["begin",{"_index":1323,"title":{},"body":{"interfaces/Day.html":{}}}],["begin.clone().add(index",{"_index":1329,"title":{},"body":{"interfaces/Day.html":{}}}],["behaviour",{"_index":3069,"title":{},"body":{"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Pagination.html":{},"components/ResourceCrudComponent.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["beim",{"_index":3465,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["belong",{"_index":2242,"title":{},"body":{"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["below",{"_index":3198,"title":{},"body":{"classes/Notification.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["beneath",{"_index":2302,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["beschreibung",{"_index":3224,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["beta.3",{"_index":4503,"title":{},"body":{"dependencies.html":{}}}],["better",{"_index":2629,"title":{},"body":{"components/LoaderComponent.html":{}}}],["between",{"_index":1910,"title":{},"body":{"injectables/FormService.html":{}}}],["bilder",{"_index":4723,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["bind",{"_index":4658,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["birch",{"_index":2401,"title":{},"body":{"components/ListComponent.html":{}}}],["blur",{"_index":1952,"title":{},"body":{"injectables/FormService.html":{}}}],["bobbi",{"_index":1693,"title":{},"body":{"classes/Field.html":{}}}],["bodi",{"_index":1679,"title":{},"body":{"classes/Field.html":{},"interfaces/ItemConfig.html":{},"components/ModalComponent.html":{},"injectables/NotificationsService.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["body.accountid",{"_index":3672,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["body.amazement_factor",{"_index":4748,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["body.amazement_factor*body.flavour/body.pric",{"_index":4752,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["body.email",{"_index":3671,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["body.value.nam",{"_index":1687,"title":{},"body":{"classes/Field.html":{}}}],["boolean",{"_index":346,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"components/TabComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"interfaces/WithNotifications.html":{},"miscellaneous/functions.html":{}}}],["bootstrap",{"_index":324,"title":{},"body":{"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["both",{"_index":693,"title":{},"body":{"injectables/AuthService.html":{},"additional-documentation/adding-new-packages.html":{}}}],["bound",{"_index":1409,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["box",{"_index":921,"title":{},"body":{"components/CrudComponent.html":{},"components/ErrorComponent.html":{},"components/ResourceCrudComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["break",{"_index":4217,"title":{},"body":{"components/TinymceComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["broadcast",{"_index":3832,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["broken",{"_index":4893,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["brows",{"_index":4439,"title":{},"body":{"components/UploadSelectComponent.html":{},"modules.html":{}}}],["browser",{"_index":1845,"title":{},"body":{"modules/FilesModule.html":{},"injectables/NotificationsService.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"dependencies.html":{},"modules.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["browsermodul",{"_index":1843,"title":{},"body":{"modules/FilesModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["btn._clear",{"_index":4946,"title":{},"body":{"additional-documentation/changelog/style-changelog.html":{}}}],["bubbl",{"_index":4895,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["buchstaben",{"_index":1690,"title":{},"body":{"classes/Field.html":{}}}],["bug",{"_index":4844,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["build",{"_index":3692,"title":{},"body":{"injectables/ResourceConfig.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["builder",{"_index":4639,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["builders/custom",{"_index":4640,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["builders/dev",{"_index":4641,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["builds/blob/master/src/ext",{"_index":151,"title":{},"body":{"components/AceComponent.html":{}}}],["builds/src",{"_index":140,"title":{},"body":{"components/AceComponent.html":{},"additional-documentation/readme/ace-readme.html":{}}}],["builds/webpack",{"_index":142,"title":{},"body":{"components/AceComponent.html":{}}}],["built",{"_index":4540,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["bump",{"_index":4840,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["button",{"_index":1042,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/FormConfig.html":{},"components/LoginFormComponent.html":{},"components/ResourceCrudComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["buttonclass",{"_index":2796,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["buttonlabel",{"_index":2797,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["c",{"_index":4782,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["c89591a",{"_index":4898,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["c950461",{"_index":4912,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["c9c8d4",{"_index":2944,"title":{},"body":{"components/MenuComponent.html":{}}}],["cach",{"_index":3886,"title":{},"body":{"injectables/SdkService.html":{}}}],["calculc",{"_index":3352,"title":{},"body":{"classes/Pagination.html":{}}}],["calendar",{"_index":782,"title":{"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/changelog/calendar-changelog.html":{}},"body":{"modules/CalendarModule.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/calendar-readme.html":{}}}],["calendar'},{'nam",{"_index":200,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["calendar/calendar.compon",{"_index":790,"title":{},"body":{"modules/CalendarModule.html":{}}}],["calendar/month.compon",{"_index":793,"title":{},"body":{"modules/CalendarModule.html":{}}}],["calendarcompon",{"_index":199,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["calendarish",{"_index":1247,"title":{},"body":{"interfaces/Day.html":{}}}],["calendarmodul",{"_index":776,"title":{"modules/CalendarModule.html":{}},"body":{"modules/CalendarModule.html":{},"modules/FormModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["calendarmoduleconfig",{"_index":794,"title":{},"body":{"modules/CalendarModule.html":{}}}],["call",{"_index":453,"title":{},"body":{"directives/AssetDirective.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/LoaderComponent.html":{},"components/LoginFormComponent.html":{},"components/ModalComponent.html":{},"classes/Pagination.html":{},"components/ResourceCrudComponent.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"injectables/SymbolPipe.html":{},"components/TinymceComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/publishing.html":{}}}],["callback",{"_index":90,"title":{},"body":{"components/AceComponent.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["callbackurl",{"_index":3730,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["can't",{"_index":4629,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["canactiv",{"_index":590,"title":{},"body":{"guards/AuthGuard.html":{}}}],["canalter(valu",{"_index":1362,"title":{},"body":{"interfaces/Day.html":{}}}],["cancel",{"_index":2958,"title":{},"body":{"components/MenuComponent.html":{}}}],["canceltimeout",{"_index":2927,"title":{},"body":{"components/MenuComponent.html":{}}}],["cand",{"_index":2674,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["caption",{"_index":3720,"title":{},"body":{"injectables/ResourceConfig.html":{},"components/TinymceComponent.html":{}}}],["case",{"_index":2267,"title":{},"body":{"components/InputComponent.html":{},"components/NotificationsComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["catch",{"_index":722,"title":{},"body":{"injectables/AuthService.html":{},"components/LoaderComponent.html":{}}}],["catch((err",{"_index":727,"title":{},"body":{"injectables/AuthService.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/NotificationsComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{},"components/UploadComponent.html":{}}}],["catch((error",{"_index":2782,"title":{},"body":{"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"components/SignupComponent.html":{}}}],["catch(err",{"_index":751,"title":{},"body":{"injectables/AuthService.html":{}}}],["catch(error",{"_index":1510,"title":{},"body":{"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"components/NotificationsComponent.html":{},"interfaces/ResourceActionbarState.html":{}}}],["caution",{"_index":3831,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["ccc",{"_index":1260,"title":{},"body":{"interfaces/Day.html":{}}}],["cd",{"_index":4673,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["cdn",{"_index":4828,"title":{},"body":{"additional-documentation/readme/ace-readme.html":{}}}],["cdr",{"_index":359,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceListPopComponent.html":{}}}],["cell",{"_index":1244,"title":{},"body":{"interfaces/Day.html":{},"classes/Field.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["center",{"_index":2660,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["certain",{"_index":2325,"title":{},"body":{"interfaces/ItemConfig.html":{},"injectables/TypeConfigService.html":{}}}],["chang",{"_index":89,"title":{},"body":{"components/AceComponent.html":{},"components/AssetListComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"changelog.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["change(",{"_index":4379,"title":{},"body":{"components/UploadComponent.html":{}}}],["change(filt",{"_index":1082,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["change)=\"updatesize($event.target.valu",{"_index":3420,"title":{},"body":{"components/PaginationComponent.html":{}}}],["change.broadcast",{"_index":3835,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["change.color",{"_index":1318,"title":{},"body":{"interfaces/Day.html":{}}}],["change.d",{"_index":1315,"title":{},"body":{"interfaces/Day.html":{}}}],["change.heatmap",{"_index":1319,"title":{},"body":{"interfaces/Day.html":{}}}],["change.select",{"_index":1313,"title":{},"body":{"interfaces/Day.html":{}}}],["change.timespan",{"_index":1317,"title":{},"body":{"interfaces/Day.html":{}}}],["change[key",{"_index":3838,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["changedetect",{"_index":2084,"title":{},"body":{"components/IconComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/OutputComponent.html":{},"components/PopComponent.html":{}}}],["changedetectionstrategi",{"_index":2104,"title":{},"body":{"components/IconComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/OutputComponent.html":{},"components/PopComponent.html":{}}}],["changedetectionstrategy.onpush",{"_index":2085,"title":{},"body":{"components/IconComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/OutputComponent.html":{},"components/PopComponent.html":{}}}],["changedetectorref",{"_index":347,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceListPopComponent.html":{}}}],["changelog",{"_index":4494,"title":{"changelog.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}},"body":{"changelog.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["changelog.md",{"_index":5012,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["changesenviron",{"_index":3874,"title":{},"body":{"injectables/SdkService.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["changespan",{"_index":1268,"title":{},"body":{"interfaces/Day.html":{}}}],["check",{"_index":595,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"interfaces/FileOptions.html":{},"components/ListItemsComponent.html":{},"components/ResourceCrudComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["checkbox",{"_index":2458,"title":{},"body":{"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/ToggleComponent.html":{}}}],["checkpermiss",{"_index":662,"title":{},"body":{"injectables/AuthService.html":{}}}],["checkpermission(permiss",{"_index":674,"title":{},"body":{"injectables/AuthService.html":{}}}],["child",{"_index":2971,"title":{},"body":{"components/MenuComponent.html":{},"components/UploadComponent.html":{}}}],["child.data?.titl",{"_index":3007,"title":{},"body":{"components/MenuComponent.html":{}}}],["child.path",{"_index":3008,"title":{},"body":{"components/MenuComponent.html":{}}}],["children",{"_index":4714,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["class",{"_index":149,"title":{"classes/Collection.html":{},"classes/Config.html":{},"classes/Field.html":{},"classes/Notification.html":{},"classes/Pagination.html":{},"classes/PaginationConfig.html":{},"classes/Sorter.html":{}},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"directives/FocusDirective.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"index.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["class.i",{"_index":1397,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["class=\"input",{"_index":3421,"title":{},"body":{"components/PaginationComponent.html":{}}}],["clean",{"_index":1078,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{}}}],["clean(valu",{"_index":1085,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["clear",{"_index":1143,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/Day.html":{},"components/LocationSearchComponent.html":{},"components/LoginFormComponent.html":{},"injectables/ResourceService.html":{},"components/SignupFormComponent.html":{},"interfaces/Update.html":{},"components/UploadComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["clearer",{"_index":4743,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["clearselect",{"_index":1358,"title":{},"body":{"interfaces/Day.html":{}}}],["cleartimeout(this.timeout",{"_index":3002,"title":{},"body":{"components/MenuComponent.html":{}}}],["cli",{"_index":4571,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["cli/issues/11041",{"_index":4979,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["click",{"_index":949,"title":{},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["clickedoutside($ev",{"_index":3493,"title":{},"body":{"components/PopComponent.html":{}}}],["clickev",{"_index":1548,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["client",{"_index":773,"title":{},"body":{"injectables/AuthService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["clientid",{"_index":654,"title":{},"body":{"injectables/AuthService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["clone",{"_index":4557,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["close",{"_index":2042,"title":{},"body":{"injectables/HistoryService.html":{},"components/ListHeaderComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{}}}],["clubapp",{"_index":4784,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["clunki",{"_index":4760,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["cluster_acemodul",{"_index":325,"title":{},"body":{"modules/AceModule.html":{},"overview.html":{}}}],["cluster_acemodule_acecomponent_provid",{"_index":327,"title":{},"body":{"modules/AceModule.html":{},"overview.html":{}}}],["cluster_acemodule_declar",{"_index":326,"title":{},"body":{"modules/AceModule.html":{},"overview.html":{}}}],["cluster_acemodule_export",{"_index":328,"title":{},"body":{"modules/AceModule.html":{},"overview.html":{}}}],["cluster_authmodul",{"_index":617,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_declar",{"_index":618,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_export",{"_index":620,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_import",{"_index":619,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_authmodule_provid",{"_index":621,"title":{},"body":{"modules/AuthModule.html":{},"overview.html":{}}}],["cluster_calendarmodul",{"_index":777,"title":{},"body":{"modules/CalendarModule.html":{},"overview.html":{}}}],["cluster_calendarmodule_declar",{"_index":778,"title":{},"body":{"modules/CalendarModule.html":{},"overview.html":{}}}],["cluster_calendarmodule_export",{"_index":779,"title":{},"body":{"modules/CalendarModule.html":{},"overview.html":{}}}],["cluster_datamodul",{"_index":1149,"title":{},"body":{"modules/DataModule.html":{},"overview.html":{}}}],["cluster_datamodule_declar",{"_index":1150,"title":{},"body":{"modules/DataModule.html":{},"overview.html":{}}}],["cluster_datamodule_export",{"_index":1152,"title":{},"body":{"modules/DataModule.html":{},"overview.html":{}}}],["cluster_datamodule_import",{"_index":1151,"title":{},"body":{"modules/DataModule.html":{},"overview.html":{}}}],["cluster_datamodule_provid",{"_index":1153,"title":{},"body":{"modules/DataModule.html":{},"overview.html":{}}}],["cluster_filesmodul",{"_index":1837,"title":{},"body":{"modules/FilesModule.html":{},"overview.html":{}}}],["cluster_filesmodule_declar",{"_index":1838,"title":{},"body":{"modules/FilesModule.html":{},"overview.html":{}}}],["cluster_filesmodule_export",{"_index":1840,"title":{},"body":{"modules/FilesModule.html":{},"overview.html":{}}}],["cluster_filesmodule_import",{"_index":1839,"title":{},"body":{"modules/FilesModule.html":{}}}],["cluster_filesmodule_provid",{"_index":1841,"title":{},"body":{"modules/FilesModule.html":{},"overview.html":{}}}],["cluster_formmodul",{"_index":1879,"title":{},"body":{"modules/FormModule.html":{},"overview.html":{}}}],["cluster_formmodule_declar",{"_index":1880,"title":{},"body":{"modules/FormModule.html":{},"overview.html":{}}}],["cluster_formmodule_export",{"_index":1882,"title":{},"body":{"modules/FormModule.html":{},"overview.html":{}}}],["cluster_formmodule_import",{"_index":1881,"title":{},"body":{"modules/FormModule.html":{},"overview.html":{}}}],["cluster_formmodule_provid",{"_index":1883,"title":{},"body":{"modules/FormModule.html":{},"overview.html":{}}}],["cluster_iconmodul",{"_index":2115,"title":{},"body":{"modules/IconModule.html":{},"overview.html":{}}}],["cluster_iconmodule_declar",{"_index":2116,"title":{},"body":{"modules/IconModule.html":{},"overview.html":{}}}],["cluster_iconmodule_export",{"_index":2117,"title":{},"body":{"modules/IconModule.html":{},"overview.html":{}}}],["cluster_iconmodule_provid",{"_index":2118,"title":{},"body":{"modules/IconModule.html":{},"overview.html":{}}}],["cluster_iomodul",{"_index":2316,"title":{},"body":{"modules/IoModule.html":{},"overview.html":{}}}],["cluster_iomodule_declar",{"_index":2317,"title":{},"body":{"modules/IoModule.html":{},"overview.html":{}}}],["cluster_iomodule_export",{"_index":2318,"title":{},"body":{"modules/IoModule.html":{},"overview.html":{}}}],["cluster_listmodul",{"_index":2576,"title":{},"body":{"modules/ListModule.html":{},"overview.html":{}}}],["cluster_listmodule_declar",{"_index":2577,"title":{},"body":{"modules/ListModule.html":{},"overview.html":{}}}],["cluster_listmodule_export",{"_index":2579,"title":{},"body":{"modules/ListModule.html":{},"overview.html":{}}}],["cluster_listmodule_import",{"_index":2578,"title":{},"body":{"modules/ListModule.html":{},"overview.html":{}}}],["cluster_listmodule_provid",{"_index":2580,"title":{},"body":{"modules/ListModule.html":{},"overview.html":{}}}],["cluster_loadermodul",{"_index":2641,"title":{},"body":{"modules/LoaderModule.html":{},"overview.html":{}}}],["cluster_loadermodule_declar",{"_index":2642,"title":{},"body":{"modules/LoaderModule.html":{},"overview.html":{}}}],["cluster_loadermodule_export",{"_index":2643,"title":{},"body":{"modules/LoaderModule.html":{},"overview.html":{}}}],["cluster_loadermodule_provid",{"_index":2644,"title":{},"body":{"modules/LoaderModule.html":{},"overview.html":{}}}],["cluster_locationmodul",{"_index":2684,"title":{},"body":{"modules/LocationModule.html":{},"overview.html":{}}}],["cluster_locationmodule_declar",{"_index":2685,"title":{},"body":{"modules/LocationModule.html":{},"overview.html":{}}}],["cluster_locationmodule_export",{"_index":2687,"title":{},"body":{"modules/LocationModule.html":{},"overview.html":{}}}],["cluster_locationmodule_import",{"_index":2686,"title":{},"body":{"modules/LocationModule.html":{}}}],["cluster_locationmodule_provid",{"_index":2688,"title":{},"body":{"modules/LocationModule.html":{},"overview.html":{}}}],["cluster_mediumeditormodul",{"_index":2913,"title":{},"body":{"modules/MediumEditorModule.html":{},"overview.html":{}}}],["cluster_mediumeditormodule_declar",{"_index":2914,"title":{},"body":{"modules/MediumEditorModule.html":{},"overview.html":{}}}],["cluster_mediumeditormodule_export",{"_index":2916,"title":{},"body":{"modules/MediumEditorModule.html":{},"overview.html":{}}}],["cluster_mediumeditormodule_mediumeditorcomponent_provid",{"_index":2915,"title":{},"body":{"modules/MediumEditorModule.html":{},"overview.html":{}}}],["cluster_notificationsmodul",{"_index":3265,"title":{},"body":{"modules/NotificationsModule.html":{},"overview.html":{}}}],["cluster_notificationsmodule_declar",{"_index":3266,"title":{},"body":{"modules/NotificationsModule.html":{},"overview.html":{}}}],["cluster_notificationsmodule_export",{"_index":3268,"title":{},"body":{"modules/NotificationsModule.html":{},"overview.html":{}}}],["cluster_notificationsmodule_import",{"_index":3267,"title":{},"body":{"modules/NotificationsModule.html":{}}}],["cluster_notificationsmodule_provid",{"_index":3269,"title":{},"body":{"modules/NotificationsModule.html":{},"overview.html":{}}}],["cluster_popmodul",{"_index":3506,"title":{},"body":{"modules/PopModule.html":{},"overview.html":{}}}],["cluster_popmodule_declar",{"_index":3507,"title":{},"body":{"modules/PopModule.html":{},"overview.html":{}}}],["cluster_popmodule_export",{"_index":3509,"title":{},"body":{"modules/PopModule.html":{},"overview.html":{}}}],["cluster_popmodule_import",{"_index":3508,"title":{},"body":{"modules/PopModule.html":{}}}],["cluster_popmodule_provid",{"_index":3510,"title":{},"body":{"modules/PopModule.html":{},"overview.html":{}}}],["cluster_resourcemodul",{"_index":3796,"title":{},"body":{"modules/ResourceModule.html":{},"overview.html":{}}}],["cluster_resourcemodule_declar",{"_index":3797,"title":{},"body":{"modules/ResourceModule.html":{},"overview.html":{}}}],["cluster_resourcemodule_export",{"_index":3799,"title":{},"body":{"modules/ResourceModule.html":{},"overview.html":{}}}],["cluster_resourcemodule_import",{"_index":3798,"title":{},"body":{"modules/ResourceModule.html":{}}}],["cluster_resourcemodule_provid",{"_index":3800,"title":{},"body":{"modules/ResourceModule.html":{},"overview.html":{}}}],["cluster_sdkmodul",{"_index":3864,"title":{},"body":{"modules/SdkModule.html":{},"overview.html":{}}}],["cluster_sdkmodule_provid",{"_index":3865,"title":{},"body":{"modules/SdkModule.html":{},"overview.html":{}}}],["cluster_selectmodul",{"_index":3953,"title":{},"body":{"modules/SelectModule.html":{},"overview.html":{}}}],["cluster_selectmodule_declar",{"_index":3954,"title":{},"body":{"modules/SelectModule.html":{},"overview.html":{}}}],["cluster_selectmodule_export",{"_index":3957,"title":{},"body":{"modules/SelectModule.html":{},"overview.html":{}}}],["cluster_selectmodule_import",{"_index":3956,"title":{},"body":{"modules/SelectModule.html":{}}}],["cluster_selectmodule_selectcomponent_provid",{"_index":3955,"title":{},"body":{"modules/SelectModule.html":{},"overview.html":{}}}],["cluster_symbolmodul",{"_index":4071,"title":{},"body":{"modules/SymbolModule.html":{},"overview.html":{}}}],["cluster_symbolmodule_declar",{"_index":4072,"title":{},"body":{"modules/SymbolModule.html":{},"overview.html":{}}}],["cluster_symbolmodule_export",{"_index":4073,"title":{},"body":{"modules/SymbolModule.html":{},"overview.html":{}}}],["cluster_symbolmodule_provid",{"_index":4074,"title":{},"body":{"modules/SymbolModule.html":{},"overview.html":{}}}],["cluster_tinymcemodul",{"_index":4282,"title":{},"body":{"modules/TinymceModule.html":{},"overview.html":{}}}],["cluster_tinymcemodule_declar",{"_index":4283,"title":{},"body":{"modules/TinymceModule.html":{},"overview.html":{}}}],["cluster_tinymcemodule_export",{"_index":4284,"title":{},"body":{"modules/TinymceModule.html":{},"overview.html":{}}}],["cluster_uimodul",{"_index":4353,"title":{},"body":{"modules/UiModule.html":{},"overview.html":{}}}],["cluster_uimodule_export",{"_index":4355,"title":{},"body":{"modules/UiModule.html":{},"overview.html":{}}}],["cluster_uimodule_import",{"_index":4354,"title":{},"body":{"modules/UiModule.html":{}}}],["cluster_utilitymodul",{"_index":4470,"title":{},"body":{"modules/UtilityModule.html":{},"overview.html":{}}}],["cluster_utilitymodule_declar",{"_index":4471,"title":{},"body":{"modules/UtilityModule.html":{},"overview.html":{}}}],["cluster_utilitymodule_export",{"_index":4473,"title":{},"body":{"modules/UtilityModule.html":{},"overview.html":{}}}],["cluster_utilitymodule_import",{"_index":4472,"title":{},"body":{"modules/UtilityModule.html":{}}}],["cmd+click",{"_index":4787,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["code",{"_index":3967,"title":{},"body":{"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["codesourc",{"_index":3745,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["codesourceid",{"_index":3746,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["codesourcetyp",{"_index":3747,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["col",{"_index":1671,"title":{},"body":{"classes/Field.html":{},"components/ModalComponent.html":{}}}],["collat",{"_index":4044,"title":{},"body":{"classes/Sorter.html":{}}}],["collator.compare(a",{"_index":4049,"title":{},"body":{"classes/Sorter.html":{}}}],["collect",{"_index":809,"title":{"classes/Collection.html":{}},"body":{"classes/Collection.html":{},"components/ListComponent.html":{},"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"injectables/PopService.html":{},"injectables/SdkService.html":{},"modules/SymbolModule.html":{}}}],["collection([1",{"_index":824,"title":{},"body":{"classes/Collection.html":{}}}],["collection.add(4",{"_index":866,"title":{},"body":{"classes/Collection.html":{}}}],["collection.addall([10,11,12",{"_index":870,"title":{},"body":{"classes/Collection.html":{}}}],["collection.has(1",{"_index":864,"title":{},"body":{"classes/Collection.html":{}}}],["collection.has(4",{"_index":865,"title":{},"body":{"classes/Collection.html":{}}}],["collection.hasall([1,10,11",{"_index":871,"title":{},"body":{"classes/Collection.html":{}}}],["collection.index(1",{"_index":868,"title":{},"body":{"classes/Collection.html":{}}}],["collection.remove(4",{"_index":867,"title":{},"body":{"classes/Collection.html":{}}}],["collection.removeall();it",{"_index":872,"title":{},"body":{"classes/Collection.html":{}}}],["color",{"_index":1250,"title":{},"body":{"interfaces/Day.html":{},"components/MenuComponent.html":{},"injectables/ResourceConfig.html":{}}}],["column",{"_index":1064,"title":{},"body":{"interfaces/CrudConfig.html":{},"classes/Field.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/PopService.html":{},"interfaces/SdkField.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["columnclick",{"_index":933,"title":{},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["columnclick(item",{"_index":2369,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{}}}],["combin",{"_index":3215,"title":{},"body":{"components/NotificationsComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{}}}],["come",{"_index":408,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"interfaces/FileOptions.html":{},"injectables/NotificationsService.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["command",{"_index":4990,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["comment",{"_index":2627,"title":{},"body":{"components/LoaderComponent.html":{}}}],["commit",{"_index":4569,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["commonmodul",{"_index":628,"title":{},"body":{"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/UtilityModule.html":{}}}],["commun",{"_index":2771,"title":{},"body":{"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{}}}],["complain",{"_index":3296,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["complet",{"_index":4377,"title":{},"body":{"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["complex",{"_index":4775,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["compliant",{"_index":4989,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["compon",{"_index":0,"title":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"modules/SymbolModule.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"overview.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["component(",{"_index":5017,"title":{},"body":{"additional-documentation/stackblitz.html":{}}}],["component_templ",{"_index":182,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["componentfactori",{"_index":1460,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["componentfactoryresolv",{"_index":1438,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["componentinst",{"_index":2237,"title":{},"body":{"components/InputComponent.html":{}}}],["componentref",{"_index":1455,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["componentref.inst",{"_index":2281,"title":{},"body":{"components/InputComponent.html":{}}}],["componentref.instance.control",{"_index":2283,"title":{},"body":{"components/InputComponent.html":{}}}],["componentref.instance.control.valuechang",{"_index":2284,"title":{},"body":{"components/InputComponent.html":{}}}],["components.entrecode.d",{"_index":4544,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["concat",{"_index":3548,"title":{},"body":{"interfaces/ResourceActionbarState.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["concat(this.config.availables",{"_index":3366,"title":{},"body":{"classes/Pagination.html":{}}}],["concat(this.getresourcelistactions(list",{"_index":3554,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["concat(this.timespan",{"_index":1288,"title":{},"body":{"interfaces/Day.html":{}}}],["concept",{"_index":1702,"title":{},"body":{"classes/Field.html":{}}}],["condit",{"_index":3710,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config",{"_index":354,"title":{"classes/Config.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"injectables/ModelConfigService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["config.filt",{"_index":1760,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["config.input",{"_index":4345,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.interfac",{"_index":975,"title":{},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"interfaces/FormConfig.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ModelConfigService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadSelectComponent.html":{}}}],["config.interface.t",{"_index":1018,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/FieldConfig.html":{},"interfaces/FormConfig.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"interfaces/ModelConfig.html":{},"classes/PaginationConfig.html":{}}}],["config.interface.ts:11",{"_index":3427,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["config.interface.ts:6",{"_index":1719,"title":{},"body":{"interfaces/FieldConfig.html":{}}}],["config.interface.ts:7",{"_index":3430,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["config.interface.ts:9",{"_index":3428,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["config.output",{"_index":4346,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.servic",{"_index":706,"title":{},"body":{"injectables/AuthService.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"modules/ListModule.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["config.service.t",{"_index":2466,"title":{},"body":{"injectables/ListConfigService.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{}}}],["config.service.ts:10",{"_index":3592,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:100",{"_index":3104,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:121",{"_index":3094,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:14",{"_index":2479,"title":{},"body":{"injectables/ListConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["config.service.ts:15",{"_index":4317,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:17",{"_index":3114,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:179",{"_index":4307,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:18",{"_index":2481,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["config.service.ts:183",{"_index":4313,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:191",{"_index":3082,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:199",{"_index":4316,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:209",{"_index":4310,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:217",{"_index":4308,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:220",{"_index":3101,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:223",{"_index":4314,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config.service.ts:23",{"_index":2475,"title":{},"body":{"injectables/ListConfigService.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{}}}],["config.service.ts:24",{"_index":3597,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:35",{"_index":2483,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["config.service.ts:36",{"_index":3601,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:39",{"_index":3090,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:44",{"_index":2473,"title":{},"body":{"injectables/ListConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["config.service.ts:53",{"_index":3604,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:54",{"_index":3109,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:59",{"_index":3105,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["config.service.ts:62",{"_index":3602,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:66",{"_index":3606,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:7",{"_index":2484,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["config.service.ts:70",{"_index":3593,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:75",{"_index":3608,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["config.service.ts:9",{"_index":2477,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["config.view",{"_index":4344,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["config/field",{"_index":1706,"title":{},"body":{"classes/Field.html":{},"interfaces/ItemConfig.html":{}}}],["config/model",{"_index":980,"title":{},"body":{"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/EntryListPopComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{}}}],["config/resourc",{"_index":705,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/FileOptions.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"interfaces/Upload.html":{}}}],["config/resource.servic",{"_index":1106,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"modules/ResourceModule.html":{},"interfaces/Upload.html":{}}}],["config/resource.service.t",{"_index":3807,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["config/resource.service.ts:103",{"_index":3812,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:121",{"_index":3814,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:132",{"_index":3816,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:35",{"_index":3808,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:38",{"_index":3827,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:47",{"_index":3819,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:53",{"_index":3809,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:64",{"_index":3823,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:82",{"_index":3826,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/resource.service.ts:97",{"_index":3817,"title":{},"body":{"injectables/ResourceService.html":{}}}],["config/sdk",{"_index":3859,"title":{},"body":{"interfaces/SdkField.html":{}}}],["config/typ",{"_index":1180,"title":{},"body":{"modules/DataModule.html":{},"interfaces/FileOptions.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{}}}],["config?.createlabel",{"_index":1016,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["configinput",{"_index":2412,"title":{},"body":{"components/ListComponent.html":{}}}],["configur",{"_index":897,"title":{},"body":{"classes/Config.html":{},"components/CrudComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/ListConfig.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/PaginationConfig.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["configuration.interface.t",{"_index":3186,"title":{},"body":{"interfaces/ModelConfiguration.html":{}}}],["configure(key",{"_index":899,"title":{},"body":{"classes/Config.html":{}}}],["configure?(key",{"_index":913,"title":{},"body":{"classes/Config.html":{}}}],["confirm",{"_index":1068,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["connect",{"_index":2292,"title":{},"body":{"components/InputComponent.html":{}}}],["connectcontrol",{"_index":2238,"title":{},"body":{"components/InputComponent.html":{}}}],["connector",{"_index":501,"title":{},"body":{"components/AssetListComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["consid",{"_index":4602,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["consist",{"_index":1347,"title":{},"body":{"interfaces/Day.html":{}}}],["console.error('cannot",{"_index":4347,"title":{},"body":{"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{}}}],["console.error('miss",{"_index":4342,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["console.error(`${relationnam",{"_index":3612,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["console.error(err",{"_index":4422,"title":{},"body":{"components/UploadComponent.html":{}}}],["console.error(notification.error",{"_index":3302,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["console.log('cannot",{"_index":2494,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["console.log('could",{"_index":2785,"title":{},"body":{"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"components/SignupComponent.html":{}}}],["console.log('entry',item.getbody(),item.id",{"_index":4738,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["console.log('error",{"_index":1008,"title":{},"body":{"components/CrudComponent.html":{}}}],["console.log('no",{"_index":3544,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["console.log('raw",{"_index":1229,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["console.log('receiv",{"_index":4811,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["console.log('rout",{"_index":2988,"title":{},"body":{"components/MenuComponent.html":{}}}],["console.log('should",{"_index":2226,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["console.warn('addfield",{"_index":1956,"title":{},"body":{"injectables/FormService.html":{}}}],["console.warn('cannot",{"_index":1503,"title":{},"body":{"directives/EntriesDirective.html":{},"injectables/LoaderService.html":{},"classes/Sorter.html":{}}}],["console.warn('could",{"_index":2291,"title":{},"body":{"components/InputComponent.html":{}}}],["console.warn('field",{"_index":2508,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["console.warn('fileservice#resolveasset",{"_index":1801,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["console.warn('ha",{"_index":881,"title":{},"body":{"classes/Collection.html":{}}}],["console.warn('no",{"_index":1833,"title":{},"body":{"interfaces/FileOptions.html":{},"components/LocationMapComponent.html":{},"interfaces/Upload.html":{}}}],["console.warn('notification.tim",{"_index":3262,"title":{},"body":{"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{}}}],["console.warn('thi",{"_index":3309,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["console.warn('to",{"_index":3504,"title":{},"body":{"components/PopComponent.html":{}}}],["console.warn('tri",{"_index":2420,"title":{},"body":{"components/ListComponent.html":{},"components/NotificationsComponent.html":{}}}],["console.warn('wont",{"_index":1812,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["console.warn(`crudservice.chang",{"_index":1110,"title":{},"body":{"injectables/CrudService.html":{}}}],["console.warn(`ec",{"_index":3058,"title":{},"body":{"components/ModalComponent.html":{}}}],["console.warn(`icon",{"_index":2109,"title":{},"body":{"components/IconComponent.html":{}}}],["console.warn(`rel",{"_index":738,"title":{},"body":{"injectables/AuthService.html":{}}}],["const",{"_index":147,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"injectables/ListConfigService.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"modules/UtilityModule.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/readme/core-readme.html":{}}}],["construct",{"_index":823,"title":{},"body":{"classes/Collection.html":{},"classes/Field.html":{},"components/ModalComponent.html":{}}}],["constructor",{"_index":358,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"directives/SlotHostDirective.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["constructor(@inject('environ",{"_index":3926,"title":{},"body":{"injectables/SdkService.html":{}}}],["constructor(@inject('moment.format.d",{"_index":1226,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["constructor(@inject('usedesktopnotif",{"_index":3297,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["constructor(app",{"_index":4208,"title":{},"body":{"components/TinymceComponent.html":{}}}],["constructor(auth",{"_index":2762,"title":{},"body":{"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{}}}],["constructor(cdr",{"_index":2553,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["constructor(componentfactoryresolv",{"_index":1437,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{}}}],["constructor(config",{"_index":3325,"title":{},"body":{"classes/Pagination.html":{},"classes/PaginationConfig.html":{}}}],["constructor(crud",{"_index":3079,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["constructor(el",{"_index":1401,"title":{},"body":{"directives/DropzoneDirective.html":{},"directives/FocusDirective.html":{},"components/TabComponent.html":{}}}],["constructor(environ",{"_index":3880,"title":{},"body":{"injectables/SdkService.html":{}}}],["constructor(fb",{"_index":2803,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["constructor(fileservic",{"_index":561,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["constructor(geocodeservic",{"_index":2713,"title":{},"body":{"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{}}}],["constructor(host",{"_index":2600,"title":{},"body":{"components/LoaderComponent.html":{}}}],["constructor(iconservic",{"_index":2087,"title":{},"body":{"components/IconComponent.html":{}}}],["constructor(item",{"_index":821,"title":{},"body":{"classes/Collection.html":{}}}],["constructor(listconfig",{"_index":2354,"title":{},"body":{"components/ListComponent.html":{},"components/ListHeaderComponent.html":{}}}],["constructor(mapload",{"_index":1975,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["constructor(modelconfig",{"_index":1553,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["constructor(notif",{"_index":3189,"title":{},"body":{"classes/Notification.html":{}}}],["constructor(notificationservic",{"_index":2038,"title":{},"body":{"injectables/HistoryService.html":{},"components/NotificationsComponent.html":{}}}],["constructor(popservic",{"_index":2170,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{}}}],["constructor(priv",{"_index":602,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"directives/EntryDirective.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"directives/FocusDirective.html":{},"injectables/GeocodeService.html":{},"components/IconComponent.html":{},"components/LoaderComponent.html":{},"components/MenuComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/readme/location-readme.html":{}}}],["constructor(properti",{"_index":1637,"title":{},"body":{"classes/Field.html":{}}}],["constructor(protect",{"_index":2846,"title":{},"body":{"components/LoginFormComponent.html":{},"components/PopComponent.html":{}}}],["constructor(publ",{"_index":419,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/DefaultEntryInputComponent.html":{},"components/DynamicSlotComponent.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["constructor(resourceconfig",{"_index":671,"title":{},"body":{"injectables/AuthService.html":{},"components/ResourceListPopComponent.html":{}}}],["constructor(rout",{"_index":2938,"title":{},"body":{"components/MenuComponent.html":{},"components/TabsComponent.html":{}}}],["constructor(sdk",{"_index":413,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DefaultEntryInputComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"directives/ImageDirective.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"components/UploadComponent.html":{}}}],["constructor(symbol",{"_index":1609,"title":{},"body":{"components/ErrorComponent.html":{},"injectables/FormService.html":{},"components/InputErrorsComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"components/UploadSelectComponent.html":{}}}],["constructor(usedesktopnotif",{"_index":3280,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["constructor(viewcontainerref",{"_index":4024,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["consum",{"_index":4736,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["contact",{"_index":4491,"title":{},"body":{"interfaces/WithLoader.html":{}}}],["contain",{"_index":39,"title":{},"body":{"components/AceComponent.html":{},"guards/AuthGuard.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"interfaces/Day.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PaginationComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{}}}],["content",{"_index":2082,"title":{},"body":{"components/IconComponent.html":{},"interfaces/ItemConfig.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["contentchildren",{"_index":3052,"title":{},"body":{"components/ModalComponent.html":{},"components/TabsComponent.html":{}}}],["contentchildren(tabcompon",{"_index":4177,"title":{},"body":{"components/TabsComponent.html":{}}}],["contentchildren(templateref",{"_index":3046,"title":{},"body":{"components/ModalComponent.html":{}}}],["context",{"_index":2336,"title":{},"body":{"interfaces/ItemConfig.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["control",{"_index":45,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LocationPickerComponent.html":{},"classes/Pagination.html":{},"classes/PaginationConfig.html":{},"components/TinymceComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["control'",{"_index":2301,"title":{},"body":{"components/InputErrorsComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["control.reset",{"_index":2540,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["controls[field.properti",{"_index":1949,"title":{},"body":{"injectables/FormService.html":{}}}],["controlvalueaccessor",{"_index":17,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["convent",{"_index":4568,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["cooki",{"_index":635,"title":{},"body":{"modules/AuthModule.html":{},"dependencies.html":{}}}],["cookiefactori",{"_index":623,"title":{},"body":{"modules/AuthModule.html":{},"miscellaneous/functions.html":{},"overview.html":{}}}],["cookiemodul",{"_index":633,"title":{},"body":{"modules/AuthModule.html":{},"miscellaneous/functions.html":{}}}],["cookiemodule.forroot",{"_index":644,"title":{},"body":{"modules/AuthModule.html":{}}}],["coord",{"_index":2004,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{}}}],["coords.lat",{"_index":2678,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["coords.lng",{"_index":2677,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["core",{"_index":505,"title":{"additional-documentation/readme/core-readme.html":{},"additional-documentation/changelog/core-changelog.html":{}},"body":{"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"injectables/FormService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["correct",{"_index":4995,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["correctli",{"_index":4779,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["count",{"_index":3353,"title":{},"body":{"classes/Pagination.html":{},"injectables/ResourceConfig.html":{}}}],["counter",{"_index":4805,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["counter.component.html",{"_index":4806,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["countercompon",{"_index":4807,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["cours",{"_index":1700,"title":{},"body":{"classes/Field.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["creat",{"_index":75,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/ListComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["create(model",{"_index":1088,"title":{},"body":{"injectables/CrudService.html":{}}}],["create(rel",{"_index":3813,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["create/edit/delet",{"_index":920,"title":{},"body":{"components/CrudComponent.html":{},"components/ErrorComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["create/read/update/delet",{"_index":3829,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["createclick",{"_index":3759,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["created(label",{"_index":3596,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["created.otherwis",{"_index":3824,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["createlabel",{"_index":1021,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["createlist",{"_index":492,"title":{},"body":{"components/AssetListComponent.html":{}}}],["createnew",{"_index":3581,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["creates/upd",{"_index":536,"title":{},"body":{"components/AssetListComponent.html":{}}}],["creator",{"_index":3113,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["credenti",{"_index":2790,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["crud",{"_index":925,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/ModelConfigService.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["crud'",{"_index":943,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["crud'},{'nam",{"_index":202,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["crud.compon",{"_index":3803,"title":{},"body":{"modules/ResourceModule.html":{}}}],["crud.component.html",{"_index":926,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["crud.component.t",{"_index":3757,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:29",{"_index":3761,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:31",{"_index":3763,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:33",{"_index":3762,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:35",{"_index":3764,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:37",{"_index":3774,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:39",{"_index":3777,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:41",{"_index":3775,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:43",{"_index":3765,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:45",{"_index":3767,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:47",{"_index":3760,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:53",{"_index":3779,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:54",{"_index":3778,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:57",{"_index":3771,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:61",{"_index":3770,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:72",{"_index":3769,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:77",{"_index":3772,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud.component.ts:90",{"_index":3768,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crud/crud",{"_index":1596,"title":{},"body":{"components/EntryListPopComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadSelectComponent.html":{}}}],["crud/crud.compon",{"_index":1168,"title":{},"body":{"modules/DataModule.html":{}}}],["crud/crud.servic",{"_index":1169,"title":{},"body":{"modules/DataModule.html":{},"injectables/ModelConfigService.html":{}}}],["crud/resourc",{"_index":3756,"title":{},"body":{"components/ResourceCrudComponent.html":{},"modules/ResourceModule.html":{}}}],["crudcompon",{"_index":201,"title":{"components/CrudComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["crudcomponent#loadentri",{"_index":3785,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["crudconfig",{"_index":941,"title":{"interfaces/CrudConfig.html":{}},"body":{"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/EntryListPopComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["crudservic",{"_index":1070,"title":{"injectables/CrudService.html":{}},"body":{"injectables/CrudService.html":{},"modules/DataModule.html":{},"interfaces/FileOptions.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"overview.html":{}}}],["crudservice#chang",{"_index":1118,"title":{},"body":{"injectables/CrudService.html":{}}}],["crypto",{"_index":4655,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["css",{"_index":4822,"title":{},"body":{"additional-documentation/readme/style-readme.html":{}}}],["current",{"_index":126,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"interfaces/Day.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"injectables/PopService.html":{},"injectables/SdkService.html":{},"injectables/SymbolService.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["currentact",{"_index":386,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["currentid",{"_index":378,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["custom",{"_index":942,"title":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}},"body":{"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"components/LoginComponent.html":{},"injectables/ModelConfigService.html":{},"components/OutputComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["customfieldcompon",{"_index":1443,"title":{},"body":{"components/DynamicRackComponent.html":{}}}],["customfieldconfig",{"_index":3081,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["customfieldscompon",{"_index":4803,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["custominputcompon",{"_index":4786,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["customupload",{"_index":1022,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["customwebpackconfig",{"_index":4648,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["d5dc292",{"_index":4858,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["d7fa72b",{"_index":4846,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["da",{"_index":3220,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["darf",{"_index":4733,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["dark",{"_index":3027,"title":{},"body":{"components/ModalComponent.html":{}}}],["data",{"_index":341,"title":{"additional-documentation/readme/data-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/DynamicSlotComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"interfaces/ResourceActionbarState.html":{},"interfaces/SdkField.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["data.entryid",{"_index":2077,"title":{},"body":{"injectables/HistoryService.html":{}}}],["data.modul",{"_index":4887,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["datamanag",{"_index":774,"title":{},"body":{"injectables/AuthService.html":{},"injectables/HistoryService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"components/UploadComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{}}}],["datamanager(environment.environ",{"_index":3939,"title":{},"body":{"injectables/SdkService.html":{}}}],["datamanager.enablehistoryevents(eventsourc",{"_index":2074,"title":{},"body":{"injectables/HistoryService.html":{}}}],["datamanagerid",{"_index":651,"title":{},"body":{"injectables/AuthService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["datamanagerresourc",{"_index":404,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/HistoryService.html":{},"injectables/SdkService.html":{}}}],["datamodul",{"_index":1148,"title":{"modules/DataModule.html":{}},"body":{"modules/DataModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme/data-readme.html":{}}}],["datamodule.forenvironment(environ",{"_index":4691,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["datamoduleconfig",{"_index":1184,"title":{},"body":{"modules/DataModule.html":{}}}],["datarun",{"_index":5009,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["datasourc",{"_index":3749,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["datasourceid",{"_index":3750,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["date",{"_index":803,"title":{},"body":{"modules/CalendarModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"injectables/ResourceConfig.html":{},"modules/SymbolModule.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/readme/calendar-readme.html":{}}}],["date()).format",{"_index":4333,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["date(0",{"_index":4334,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["date.clon",{"_index":1350,"title":{},"body":{"interfaces/Day.html":{}}}],["date.clone().startof('day').issame(this.timespan[0].clone().startof('day",{"_index":1332,"title":{},"body":{"interfaces/Day.html":{}}}],["date.clone().startof('day').issame(this.timespan[1].clone().startof('day",{"_index":1334,"title":{},"body":{"interfaces/Day.html":{}}}],["date.format('dd",{"_index":1341,"title":{},"body":{"interfaces/Day.html":{}}}],["date.format('mm",{"_index":1335,"title":{},"body":{"interfaces/Day.html":{}}}],["date.format(this.monthformat",{"_index":1352,"title":{},"body":{"interfaces/Day.html":{}}}],["date.isbetween(this.timespan[0",{"_index":1337,"title":{},"body":{"interfaces/Day.html":{}}}],["date.now",{"_index":2637,"title":{},"body":{"components/LoaderComponent.html":{},"interfaces/ResourceActionbarState.html":{}}}],["dateformat",{"_index":1227,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["datenschutz",{"_index":4590,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["datepick",{"_index":4084,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["daterange'},{'nam",{"_index":204,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["daterange/daterange.compon",{"_index":792,"title":{},"body":{"modules/CalendarModule.html":{}}}],["daterangecompon",{"_index":203,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["datetim",{"_index":1187,"title":{},"body":{"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["datetime'},{'nam",{"_index":206,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["datetime.component.html",{"_index":1189,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["datetime.pip",{"_index":789,"title":{},"body":{"modules/CalendarModule.html":{}}}],["datetime/datetime.compon",{"_index":1897,"title":{},"body":{"modules/FormModule.html":{}}}],["datetimecompon",{"_index":205,"title":{"components/DatetimeComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FormModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["datetimepip",{"_index":780,"title":{"pipes/DatetimePipe.html":{}},"body":{"modules/CalendarModule.html":{},"pipes/DatetimePipe.html":{},"overview.html":{}}}],["datum",{"_index":4330,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["day",{"_index":1208,"title":{"interfaces/Day.html":{}},"body":{"components/DatetimeComponent.html":{},"interfaces/Day.html":{}}}],["day.clone().startof('month').startof('week",{"_index":1324,"title":{},"body":{"interfaces/Day.html":{}}}],["day.date.clon",{"_index":1290,"title":{},"body":{"interfaces/Day.html":{}}}],["day.first",{"_index":1283,"title":{},"body":{"interfaces/Day.html":{}}}],["day.format('mm",{"_index":1336,"title":{},"body":{"interfaces/Day.html":{}}}],["day.last",{"_index":1285,"title":{},"body":{"interfaces/Day.html":{}}}],["dayclick",{"_index":1266,"title":{},"body":{"interfaces/Day.html":{}}}],["dd.mm.yyyi",{"_index":796,"title":{},"body":{"modules/CalendarModule.html":{}}}],["de",{"_index":4089,"title":{},"body":{"modules/SymbolModule.html":{},"injectables/SymbolService.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["de51159",{"_index":4870,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["deactiv",{"_index":4146,"title":{},"body":{"components/TabComponent.html":{}}}],["debounc",{"_index":2239,"title":{},"body":{"components/InputComponent.html":{},"components/TinymceComponent.html":{}}}],["debouncetim",{"_index":1245,"title":{},"body":{"interfaces/Day.html":{},"components/InputComponent.html":{},"components/TinymceComponent.html":{}}}],["debouncetime(this.debounc",{"_index":2285,"title":{},"body":{"components/InputComponent.html":{}}}],["decid",{"_index":1933,"title":{},"body":{"injectables/FormService.html":{},"components/ListComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["decim",{"_index":4320,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["deck",{"_index":3049,"title":{},"body":{"components/ModalComponent.html":{}}}],["declar",{"_index":146,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"injectables/GeocodeService.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["decor",{"_index":110,"title":{},"body":{"components/AceComponent.html":{},"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListHeaderComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["decrement",{"_index":4810,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["dedupl",{"_index":1721,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["def9084",{"_index":4856,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["default",{"_index":118,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["defaultcolumn",{"_index":3519,"title":{},"body":{"injectables/PopService.html":{}}}],["defaultentryinputcompon",{"_index":207,"title":{"components/DefaultEntryInputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["defaultentryoutputcompon",{"_index":208,"title":{"components/DefaultEntryOutputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["defaultinputcompon",{"_index":20,"title":{"components/DefaultInputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FormModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["defaultinputcomponent:11",{"_index":130,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/LocationPickerComponent.html":{}}}],["defaultinputcomponent:13",{"_index":134,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/LocationPickerComponent.html":{}}}],["defaultinputcomponent:15",{"_index":133,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/LocationPickerComponent.html":{}}}],["defaultinputcomponent:17",{"_index":129,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/LocationPickerComponent.html":{}}}],["defaultlocal",{"_index":3631,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["defaultmonthformat",{"_index":1270,"title":{},"body":{"interfaces/Day.html":{}}}],["defaultopt",{"_index":1741,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["defaultoutputcompon",{"_index":211,"title":{"components/DefaultOutputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FormModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["defaults",{"_index":2169,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["defaulttim",{"_index":3277,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["defin",{"_index":71,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["del",{"_index":1079,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{}}}],["del(model",{"_index":1090,"title":{},"body":{"injectables/CrudService.html":{}}}],["del(rel",{"_index":3815,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["delay",{"_index":2946,"title":{},"body":{"components/MenuComponent.html":{}}}],["delet",{"_index":277,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["deletenullproperti",{"_index":3811,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["deleteonremov",{"_index":1023,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["deliv",{"_index":3098,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["demo",{"_index":573,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"components/IconComponent.html":{},"components/UploadComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/stackblitz.html":{}}}],["demonstr",{"_index":4706,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["deni",{"_index":3308,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["depend",{"_index":63,"title":{"dependencies.html":{}},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"dependencies.html":{},"index.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["deploy",{"_index":3693,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["deprec",{"_index":1111,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["der",{"_index":3222,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["desc",{"_index":2448,"title":{},"body":{"interfaces/ListConfig.html":{},"classes/Sorter.html":{}}}],["descend",{"_index":2456,"title":{},"body":{"interfaces/ListConfig.html":{},"classes/Sorter.html":{}}}],["describ",{"_index":1676,"title":{},"body":{"classes/Field.html":{},"interfaces/ItemConfig.html":{}}}],["descript",{"_index":11,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{}}}],["deselect",{"_index":4156,"title":{},"body":{"components/TabComponent.html":{}}}],["desir",{"_index":2661,"title":{},"body":{"components/LocationMapComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["desktop",{"_index":3276,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["desktopnotif",{"_index":3278,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["desktopnotification(notif",{"_index":3282,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["dest",{"_index":5001,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["destroy",{"_index":2889,"title":{},"body":{"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["detail",{"_index":4824,"title":{},"body":{"additional-documentation/readme/style-readme.html":{}}}],["determin",{"_index":1242,"title":{},"body":{"interfaces/Day.html":{},"interfaces/ItemConfig.html":{},"classes/Notification.html":{},"components/PaginationComponent.html":{},"injectables/SdkService.html":{}}}],["dev",{"_index":4555,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["develop",{"_index":1024,"title":{},"body":{"interfaces/CrudConfig.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["devkit/build",{"_index":4642,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["devth",{"_index":4643,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["dialog",{"_index":2175,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{}}}],["die",{"_index":3223,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["dies",{"_index":606,"title":{},"body":{"guards/AuthGuard.html":{}}}],["differ",{"_index":961,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/Day.html":{},"classes/Field.html":{},"interfaces/ItemConfig.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"injectables/SdkService.html":{},"classes/Sorter.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["direct",{"_index":179,"title":{"directives/AssetDirective.html":{},"directives/DropzoneDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"directives/FocusDirective.html":{},"directives/ImageDirective.html":{},"directives/SlotHostDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{},"additional-documentation/readme/medium-editor-readme.html":{}}}],["directive|pipe|service|class|guard|interface|enum|modul",{"_index":4578,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["directli",{"_index":461,"title":{},"body":{"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"interfaces/CrudConfig.html":{},"directives/EntryDirective.html":{},"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["directori",{"_index":4580,"title":{},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{}}}],["disabl",{"_index":1395,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/LoaderComponent.html":{},"components/ModalComponent.html":{}}}],["disablecolumnfilt",{"_index":2449,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["disablecreatepop",{"_index":1025,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["disabledrag",{"_index":2450,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["disabledragend",{"_index":1263,"title":{},"body":{"interfaces/Day.html":{}}}],["disabledragstart",{"_index":1261,"title":{},"body":{"interfaces/Day.html":{}}}],["disabledrop",{"_index":4438,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["disabledtyp",{"_index":3704,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["disablehead",{"_index":1602,"title":{},"body":{"components/EntryListPopComponent.html":{},"interfaces/ListConfig.html":{},"components/ResourceListPopComponent.html":{}}}],["disablelegaci",{"_index":557,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["disablelistpop",{"_index":1026,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["disablesearchbar",{"_index":1027,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/ListConfig.html":{}}}],["disableselectswitch",{"_index":1028,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["disablestrategi",{"_index":3734,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["disabletim",{"_index":1191,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["disableupd",{"_index":2036,"title":{},"body":{"injectables/HistoryService.html":{}}}],["disableupdates(key",{"_index":2040,"title":{},"body":{"injectables/HistoryService.html":{}}}],["disableurlupload",{"_index":1029,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["display",{"_index":1192,"title":{},"body":{"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"components/IconComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"classes/PaginationConfig.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["displayaccount",{"_index":4304,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["displayd",{"_index":4305,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["displaydate(tim",{"_index":4309,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["dist",{"_index":4551,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["dist/data",{"_index":5010,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["div",{"_index":3398,"title":{},"body":{"components/PaginationComponent.html":{}}}],["dm",{"_index":3624,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["dm::delet",{"_index":3626,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["dm::edit",{"_index":3625,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["dma",{"_index":3155,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["dmaccount",{"_index":3669,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["dmasset",{"_index":1792,"title":{},"body":{"interfaces/FileOptions.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{}}}],["dmassetconfig",{"_index":1742,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["dmassetlist",{"_index":1732,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["dmassetlist.getallitem",{"_index":1818,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["dmassetresourc",{"_index":1734,"title":{},"body":{"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"interfaces/Upload.html":{},"components/UploadSelectComponent.html":{}}}],["dmclient",{"_index":3728,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["dmuser",{"_index":3709,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["dnddraggabl",{"_index":4866,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["dndmodul",{"_index":1164,"title":{},"body":{"modules/DataModule.html":{},"modules/SelectModule.html":{}}}],["doc",{"_index":574,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"classes/Field.html":{},"components/ModalComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["document",{"_index":1752,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["document:click",{"_index":1552,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["document:click($ev",{"_index":1568,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["dom",{"_index":6,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["done",{"_index":4987,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["dont",{"_index":4774,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["dosomethingriski",{"_index":3225,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["doubt",{"_index":1802,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["drag",{"_index":1165,"title":{},"body":{"modules/DataModule.html":{},"interfaces/Day.html":{},"interfaces/ListConfig.html":{},"modules/SelectModule.html":{},"dependencies.html":{}}}],["dragend",{"_index":2671,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["draggabl",{"_index":1236,"title":{},"body":{"interfaces/Day.html":{}}}],["dragleav",{"_index":1399,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["dragleave(",{"_index":1412,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["dragov",{"_index":1400,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["dragover(",{"_index":1415,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["dragstart(day",{"_index":1300,"title":{},"body":{"interfaces/Day.html":{}}}],["drawer",{"_index":3472,"title":{},"body":{"components/PopComponent.html":{}}}],["driven",{"_index":4536,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["drop",{"_index":1166,"title":{},"body":{"modules/DataModule.html":{},"directives/DropzoneDirective.html":{},"modules/SelectModule.html":{},"components/UploadSelectComponent.html":{},"dependencies.html":{}}}],["drop(",{"_index":1417,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["dropday(day",{"_index":1281,"title":{},"body":{"interfaces/Day.html":{}}}],["dropdown",{"_index":1045,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{}}}],["dropzone/dropzone.direct",{"_index":1849,"title":{},"body":{"modules/FilesModule.html":{}}}],["dropzonedirect",{"_index":306,"title":{"directives/DropzoneDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["due",{"_index":4978,"title":{},"body":{"additional-documentation/changelog/tinymce-changelog.html":{}}}],["duplic",{"_index":1729,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/ResourceConfig.html":{},"injectables/SymbolService.html":{},"interfaces/Upload.html":{}}}],["dure",{"_index":2816,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["dynam",{"_index":214,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"dependencies.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["dynamicrackcompon",{"_index":212,"title":{"components/DynamicRackComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["dynamicslotcompon",{"_index":213,"title":{"components/DynamicSlotComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["dynamicslotcomponent:11",{"_index":2269,"title":{},"body":{"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["dynamicslotcomponent:14",{"_index":2268,"title":{},"body":{"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["dynamicslotcomponent:18",{"_index":2257,"title":{},"body":{"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["e",{"_index":167,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Day.html":{},"components/EntryListPopComponent.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"components/TinymceComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["e).then",{"_index":4462,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["e.datatransfer.fil",{"_index":1427,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["e.datatransfer.files.length",{"_index":1428,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["e.g",{"_index":61,"title":{},"body":{"components/AceComponent.html":{},"guards/AuthGuard.html":{},"classes/Config.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"classes/Field.html":{},"injectables/FormService.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Symbol.html":{},"components/TabsComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["e.preventdefault",{"_index":1303,"title":{},"body":{"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"components/UploadComponent.html":{}}}],["e.stopimmediatepropag",{"_index":2574,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["e.stoppropag",{"_index":1423,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/ListItemsComponent.html":{},"components/UploadComponent.html":{}}}],["e.target",{"_index":4401,"title":{},"body":{"components/UploadComponent.html":{}}}],["e.target.fil",{"_index":4402,"title":{},"body":{"components/UploadComponent.html":{}}}],["e.target.files.length",{"_index":4403,"title":{},"body":{"components/UploadComponent.html":{}}}],["e.target.localnam",{"_index":4274,"title":{},"body":{"components/TinymceComponent.html":{}}}],["e.toel",{"_index":4276,"title":{},"body":{"components/TinymceComponent.html":{}}}],["e2",{"_index":4586,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["e8b0e49",{"_index":4937,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["each",{"_index":1075,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"components/LoaderComponent.html":{},"interfaces/ModelConfig.html":{},"interfaces/ModelConfiguration.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"changelog.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog.html":{}}}],["easi",{"_index":4986,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["eb506da",{"_index":4880,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["ec",{"_index":32,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["ec.api",{"_index":409,"title":{},"body":{"components/AdminEntryInputComponent.html":{}}}],["ec.asset",{"_index":3694,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["ec.compon",{"_index":1911,"title":{},"body":{"injectables/FormService.html":{},"modules/SymbolModule.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["ec.components/ac",{"_index":4498,"title":{},"body":{"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{}}}],["ec.components/ace@0.6.0",{"_index":4603,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/calendar",{"_index":1212,"title":{},"body":{"components/DatetimeComponent.html":{},"modules/FormModule.html":{},"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/stackblitz.html":{}}}],["ec.components/calendar@0.2.0",{"_index":4604,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/cor",{"_index":350,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"pipes/VisibleFieldsPipe.html":{},"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["ec.components/core@0.19.0",{"_index":4605,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/coreimport",{"_index":4819,"title":{},"body":{"additional-documentation/readme/core-readme.html":{}}}],["ec.components/data",{"_index":4496,"title":{},"body":{"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["ec.components/data/src/entri",{"_index":4614,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/data@0.42.0",{"_index":4606,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/loc",{"_index":4499,"title":{},"body":{"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/location-changelog.html":{}}}],["ec.components/location@0.18.0",{"_index":4607,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/medium",{"_index":4500,"title":{},"body":{"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["ec.components/styl",{"_index":4497,"title":{},"body":{"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/style-changelog.html":{}}}],["ec.components/style/components';new",{"_index":4625,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/style/components.scss\";5",{"_index":4680,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["ec.components/style/scss/compon",{"_index":4826,"title":{},"body":{"additional-documentation/readme/style-readme.html":{}}}],["ec.components/style/scss/components';3",{"_index":4626,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/style@0.21.0",{"_index":4609,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/tinymc",{"_index":4501,"title":{},"body":{"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["ec.components/tinymce@0.5.0",{"_index":4610,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.components/ui",{"_index":139,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"modules/DataModule.html":{},"components/DefaultEntryInputComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"modules/FilesModule.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LoginComponent.html":{},"injectables/ModelConfigService.html":{},"components/PasswordResetComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["ec.components/ui';8",{"_index":5005,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["ec.components/ui/src/icon/emoji",{"_index":2099,"title":{},"body":{"components/IconComponent.html":{}}}],["ec.components/ui@0.36.0",{"_index":4611,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["ec.datamanag",{"_index":4812,"title":{},"body":{"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["ec.sdk",{"_index":647,"title":{},"body":{"injectables/AuthService.html":{},"classes/Field.html":{},"injectables/SdkService.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["ec.sdk/lib/account",{"_index":3914,"title":{},"body":{"injectables/SdkService.html":{}}}],["ec.sdk/lib/cor",{"_index":704,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{}}}],["ec.sdk/lib/datamanag",{"_index":2061,"title":{},"body":{"injectables/HistoryService.html":{},"injectables/SdkService.html":{}}}],["ec.sdk/lib/publicapi",{"_index":470,"title":{},"body":{"directives/AssetDirective.html":{},"components/LoginComponent.html":{},"injectables/ModelConfigService.html":{},"components/PasswordResetComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{}}}],["ec.sdk/lib/resources/accounts/accountresourc",{"_index":2777,"title":{},"body":{"components/LoginComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{}}}],["ec.sdk/lib/resources/datamanager/datamanagerresourc",{"_index":418,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/HistoryService.html":{},"injectables/SdkService.html":{}}}],["ec.sdk/lib/resources/datamanager/modelresourc",{"_index":2060,"title":{},"body":{"injectables/HistoryService.html":{}}}],["ec.sdk/lib/resources/listresourc",{"_index":1499,"title":{},"body":{"directives/EntriesDirective.html":{},"interfaces/ResourceActionbarState.html":{}}}],["ec.sdk/lib/resources/publicapi/dmassetlist",{"_index":1733,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["ec.sdk/lib/resources/publicapi/dmassetresourc",{"_index":1735,"title":{},"body":{"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"interfaces/Upload.html":{},"components/UploadSelectComponent.html":{}}}],["ec.sdk/lib/resources/publicapi/entrylist",{"_index":1498,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["ec.sdk/lib/resources/publicapi/entryresourc",{"_index":1105,"title":{},"body":{"injectables/CrudService.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"injectables/HistoryService.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{}}}],["ec.sdk/lib/resources/publicapi/publicassetlist",{"_index":1737,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["ec.sdk/lib/resources/publicapi/publicassetresourc",{"_index":469,"title":{},"body":{"directives/AssetDirective.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"interfaces/Upload.html":{},"components/UploadSelectComponent.html":{}}}],["ec.sdk/lib/resources/resourc",{"_index":3609,"title":{},"body":{"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["ec.sdk/lib/sess",{"_index":3915,"title":{},"body":{"injectables/SdkService.html":{}}}],["ecasset",{"_index":431,"title":{},"body":{"directives/AssetDirective.html":{}}}],["ecasset]'},{'nam",{"_index":305,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecdropzon",{"_index":1394,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["ecdropzone]'},{'nam",{"_index":307,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecentri",{"_index":1468,"title":{},"body":{"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["ecentries]'},{'nam",{"_index":309,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecentry]'},{'nam",{"_index":311,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecfocu",{"_index":1861,"title":{},"body":{"directives/FocusDirective.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["ecfocus]'},{'nam",{"_index":313,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecicon",{"_index":2122,"title":{},"body":{"injectables/IconService.html":{}}}],["ecimag",{"_index":2128,"title":{},"body":{"directives/ImageDirective.html":{}}}],["ecimage]'},{'nam",{"_index":316,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecslothost",{"_index":318,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ecthi",{"_index":4992,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["edg",{"_index":1297,"title":{},"body":{"interfaces/Day.html":{}}}],["edit",{"_index":1009,"title":{},"body":{"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["edit/cr",{"_index":4764,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["editfilt",{"_index":2513,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["editfilter(pop",{"_index":2522,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["editor",{"_index":14,"title":{"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{}},"body":{"components/AceComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"changelog.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{}}}],["editor#mediumeditor",{"_index":2901,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor'},{'nam",{"_index":256,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["editor.compon",{"_index":2918,"title":{},"body":{"modules/MediumEditorModule.html":{}}}],["editor.component.html",{"_index":2880,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.scss",{"_index":2879,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.t",{"_index":2874,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:35",{"_index":2883,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:37",{"_index":2885,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:39",{"_index":2886,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:41",{"_index":2887,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:43",{"_index":2894,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:45",{"_index":2898,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:47",{"_index":2895,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:49",{"_index":2897,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:52",{"_index":2890,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:63",{"_index":2888,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:68",{"_index":2893,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:75",{"_index":2896,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:78",{"_index":2891,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.component.ts:82",{"_index":2892,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.getcont",{"_index":4257,"title":{},"body":{"components/TinymceComponent.html":{}}}],["editor.module.t",{"_index":2917,"title":{},"body":{"modules/MediumEditorModule.html":{}}}],["editor.on('chang",{"_index":166,"title":{},"body":{"components/AceComponent.html":{}}}],["editor.scss",{"_index":2911,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.setcontent(this.valu",{"_index":2909,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor.setvalue(this.valu",{"_index":172,"title":{},"body":{"components/AceComponent.html":{}}}],["editor/dist/js/medium",{"_index":2899,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor/src/lib/medium",{"_index":2873,"title":{},"body":{"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{}}}],["editor/src/sass/medium",{"_index":2910,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor?e=1",{"_index":2877,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["editor@0.4.0",{"_index":4608,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["editor[0",{"_index":4271,"title":{},"body":{"components/TinymceComponent.html":{}}}],["editorset",{"_index":4253,"title":{},"body":{"components/TinymceComponent.html":{}}}],["editorsettings.setup(editor",{"_index":4265,"title":{},"body":{"components/TinymceComponent.html":{}}}],["ein",{"_index":3458,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["eingeloggt",{"_index":614,"title":{},"body":{"guards/AuthGuard.html":{}}}],["eject",{"_index":4638,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["el",{"_index":1403,"title":{},"body":{"directives/DropzoneDirective.html":{},"injectables/GeocodeService.html":{},"components/TabComponent.html":{}}}],["element",{"_index":113,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"injectables/GeocodeService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["elementref",{"_index":109,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"directives/FocusDirective.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/LocationSearchComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PaginationComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceListPopComponent.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"components/UploadComponent.html":{}}}],["email",{"_index":690,"title":{},"body":{"injectables/AuthService.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceConfig.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"injectables/TypeConfigService.html":{}}}],["emailavail",{"_index":2851,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["emaillabel",{"_index":2798,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["emailplacehold",{"_index":2799,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["embed",{"_index":1442,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{}}}],["embedd",{"_index":2096,"title":{},"body":{"components/IconComponent.html":{}}}],["emit",{"_index":948,"title":{},"body":{"components/CrudComponent.html":{},"injectables/CrudService.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginFormComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["emit(host",{"_index":3230,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["emit(notif",{"_index":3287,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["emitt",{"_index":2366,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/MediumEditorComponent.html":{},"injectables/NotificationsService.html":{}}}],["emojiicon",{"_index":2098,"title":{},"body":{"components/IconComponent.html":{}}}],["empti",{"_index":851,"title":{},"body":{"classes/Collection.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"interfaces/ListConfig.html":{},"components/MediumEditorComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["empty=tru",{"_index":4771,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["en",{"_index":4078,"title":{},"body":{"modules/SymbolModule.html":{},"injectables/SymbolService.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["enabl",{"_index":772,"title":{},"body":{"injectables/AuthService.html":{},"injectables/HistoryService.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{}}}],["enableupd",{"_index":2037,"title":{},"body":{"injectables/HistoryService.html":{}}}],["enableupdates(resourc",{"_index":2045,"title":{},"body":{"injectables/HistoryService.html":{}}}],["encapsul",{"_index":2341,"title":{},"body":{"components/ListComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["end",{"_index":1262,"title":{},"body":{"interfaces/Day.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["endless",{"_index":1473,"title":{},"body":{"directives/EntriesDirective.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["enforc",{"_index":4698,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["enhanc",{"_index":4112,"title":{},"body":{"injectables/SymbolService.html":{}}}],["enough",{"_index":4682,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["enrich",{"_index":3614,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["ensur",{"_index":3451,"title":{},"body":{"components/PasswordResetComponent.html":{},"components/PopComponent.html":{}}}],["enter",{"_index":4789,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["entiti",{"_index":1063,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/ItemConfig.html":{}}}],["entrecod",{"_index":4538,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["entrecode.github.io/ec.compon",{"_index":4542,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["entri",{"_index":209,"title":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["entries/entries.direct",{"_index":1170,"title":{},"body":{"modules/DataModule.html":{}}}],["entriesdirect",{"_index":308,"title":{"directives/EntriesDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entry.del().then((r",{"_index":1147,"title":{},"body":{"injectables/CrudService.html":{}}}],["entry.getimagethumburl(properti",{"_index":4322,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["entry.gettitle(properti",{"_index":4335,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["entry.sav",{"_index":1122,"title":{},"body":{"injectables/CrudService.html":{},"injectables/SymbolPipe.html":{}}}],["entry.save(safeput).then((_entri",{"_index":1135,"title":{},"body":{"injectables/CrudService.html":{}}}],["entry/entry.direct",{"_index":1178,"title":{},"body":{"modules/DataModule.html":{}}}],["entry[key",{"_index":1131,"title":{},"body":{"injectables/CrudService.html":{}}}],["entrycompon",{"_index":333,"title":{},"body":{"modules/AceModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IoModule.html":{},"modules/LocationModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/TinymceModule.html":{},"modules/UtilityModule.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["entrydirect",{"_index":310,"title":{"directives/EntryDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entryform",{"_index":4613,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["entryformcompon",{"_index":216,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entryid",{"_index":1524,"title":{},"body":{"directives/EntryDirective.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["entrylist",{"_index":541,"title":{},"body":{"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{}}}],["entrylist.model",{"_index":1606,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["entrylistcompon",{"_index":218,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entrylistpopcompon",{"_index":219,"title":{"components/EntryListPopComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entrylistselectcompon",{"_index":220,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entrypop",{"_index":927,"title":{},"body":{"components/CrudComponent.html":{}}}],["entrypopcompon",{"_index":221,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["entryresourc",{"_index":1091,"title":{},"body":{"injectables/CrudService.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"injectables/HistoryService.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{}}}],["entryselectcompon",{"_index":222,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["env",{"_index":3900,"title":{},"body":{"injectables/SdkService.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["environ",{"_index":648,"title":{},"body":{"injectables/AuthService.html":{},"modules/DataModule.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["environment.clientid",{"_index":3931,"title":{},"body":{"injectables/SdkService.html":{}}}],["environment.datamanagerid",{"_index":3934,"title":{},"body":{"injectables/SdkService.html":{}}}],["environment.environ",{"_index":3941,"title":{},"body":{"injectables/SdkService.html":{}}}],["environment.init",{"_index":3927,"title":{},"body":{"injectables/SdkService.html":{}}}],["environments/environ",{"_index":4689,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["equal",{"_index":991,"title":{},"body":{"components/CrudComponent.html":{},"classes/Field.html":{}}}],["erhalten",{"_index":3462,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["err",{"_index":1010,"title":{},"body":{"components/CrudComponent.html":{},"components/InputErrorsComponent.html":{},"components/LoginFormComponent.html":{},"components/NotificationsComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadComponent.html":{}}}],["err.messag",{"_index":2853,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["error",{"_index":585,"title":{},"body":{"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/ErrorComponent.html":{},"injectables/FormService.html":{},"injectables/HistoryService.html":{},"components/InputErrorsComponent.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/PasswordResetComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadComponent.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["error'},{'nam",{"_index":224,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["error('cannot",{"_index":479,"title":{},"body":{"directives/AssetDirective.html":{},"injectables/HistoryService.html":{}}}],["error('get",{"_index":3921,"title":{},"body":{"injectables/SdkService.html":{}}}],["error('no",{"_index":3916,"title":{},"body":{"injectables/SdkService.html":{}}}],["error('th",{"_index":4139,"title":{},"body":{"injectables/SymbolService.html":{}}}],["error(`cannot",{"_index":3378,"title":{},"body":{"classes/Pagination.html":{}}}],["error.cod",{"_index":1620,"title":{},"body":{"components/ErrorComponent.html":{}}}],["error.code}}{{error.datapath}}{{error?.message}}{{error.detail}}{{error.verbos",{"_index":1625,"title":{},"body":{"components/ErrorComponent.html":{}}}],["error.component.html",{"_index":1608,"title":{},"body":{"components/ErrorComponent.html":{}}}],["error.datapath",{"_index":1621,"title":{},"body":{"components/ErrorComponent.html":{}}}],["error.detail}}{{error.verbos",{"_index":1623,"title":{},"body":{"components/ErrorComponent.html":{}}}],["error.messag",{"_index":2315,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["error.verbos",{"_index":1624,"title":{},"body":{"components/ErrorComponent.html":{}}}],["error/error.compon",{"_index":3271,"title":{},"body":{"modules/NotificationsModule.html":{}}}],["error?.messag",{"_index":1622,"title":{},"body":{"components/ErrorComponent.html":{}}}],["errorcompon",{"_index":223,"title":{"components/ErrorComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["errormessag",{"_index":2793,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["errors'},{'nam",{"_index":235,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["errors.compon",{"_index":2322,"title":{},"body":{"modules/IoModule.html":{}}}],["errors.component.html",{"_index":2303,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["errors.component.t",{"_index":2300,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["errors.component.ts:12",{"_index":2305,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["errors.component.ts:14",{"_index":2309,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["errors.component.ts:18",{"_index":2306,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["errors/input",{"_index":2299,"title":{},"body":{"components/InputErrorsComponent.html":{},"modules/IoModule.html":{}}}],["errs.push",{"_index":2314,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["erstellen",{"_index":3580,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["erstellt",{"_index":4725,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["es6",{"_index":1211,"title":{},"body":{"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"injectables/TypeConfigService.html":{},"dependencies.html":{}}}],["escap",{"_index":3516,"title":{},"body":{"injectables/PopService.html":{}}}],["etc",{"_index":1643,"title":{},"body":{"classes/Field.html":{},"components/ListItemsComponent.html":{},"interfaces/SdkField.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["even",{"_index":1040,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["event",{"_index":448,"title":{},"body":{"directives/AssetDirective.html":{},"components/AssetgroupSelectComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"directives/DropzoneDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"directives/FocusDirective.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["event.key",{"_index":3525,"title":{},"body":{"injectables/PopService.html":{}}}],["event.keycod",{"_index":3523,"title":{},"body":{"injectables/PopService.html":{}}}],["eventemitt",{"_index":449,"title":{},"body":{"directives/AssetDirective.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["eventemitter.t",{"_index":912,"title":{},"body":{"classes/Config.html":{}}}],["eventsourc",{"_index":2035,"title":{},"body":{"injectables/HistoryService.html":{}}}],["eventsource/lib/eventsourc",{"_index":2062,"title":{},"body":{"injectables/HistoryService.html":{}}}],["eventu",{"_index":4406,"title":{},"body":{"components/UploadComponent.html":{}}}],["everyth",{"_index":3070,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["everytim",{"_index":1740,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["exact",{"_index":1217,"title":{},"body":{"pipes/DatetimePipe.html":{},"classes/Field.html":{},"pipes/GroupPipe.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{}}}],["exactli",{"_index":4762,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["exampl",{"_index":8,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"classes/Field.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"components/ListComponent.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/adding-new-packages.html":{}}}],["execut",{"_index":4584,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["exist",{"_index":1099,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ListConfigService.html":{},"injectables/ResourceService.html":{},"injectables/SymbolService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["existing.hid",{"_index":2503,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["existing.hide.foreach(properti",{"_index":2506,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["expect",{"_index":144,"title":{},"body":{"components/AceComponent.html":{},"components/IconComponent.html":{},"components/InputComponent.html":{},"components/ModalComponent.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["experiment",{"_index":1957,"title":{},"body":{"injectables/FormService.html":{},"interfaces/ListConfig.html":{}}}],["export",{"_index":148,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/stackblitz.html":{}}}],["exporta",{"_index":471,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"directives/ImageDirective.html":{}}}],["expos",{"_index":646,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{}}}],["extend",{"_index":19,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"interfaces/CrudConfig.html":{},"components/DefaultEntryInputComponent.html":{},"components/EntryListPopComponent.html":{},"interfaces/FormConfig.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"interfaces/ListConfig.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/OutputComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{}}}],["extens",{"_index":1872,"title":{},"body":{"interfaces/FormConfig.html":{},"components/ModalComponent.html":{},"additional-documentation/changelog/style-changelog.html":{}}}],["extensions/modes/them",{"_index":4831,"title":{},"body":{"additional-documentation/readme/ace-readme.html":{}}}],["extern",{"_index":1054,"title":{},"body":{"interfaces/CrudConfig.html":{},"classes/Pagination.html":{}}}],["extra",{"_index":1044,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["extract",{"_index":1929,"title":{},"body":{"injectables/FormService.html":{}}}],["f.hideinlist).map(f",{"_index":2500,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["f.name",{"_index":4431,"title":{},"body":{"components/UploadComponent.html":{}}}],["f.properti",{"_index":2501,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["f.url",{"_index":1781,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["f3590a7",{"_index":4900,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["f7b65f4",{"_index":4923,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["f]{12}$/i",{"_index":3621,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["f]{3",{"_index":3619,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["f]{4",{"_index":3617,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["f]{8",{"_index":3616,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["factor",{"_index":4770,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["fadein",{"_index":3024,"title":{},"body":{"components/ModalComponent.html":{}}}],["fail",{"_index":599,"title":{},"body":{"guards/AuthGuard.html":{},"classes/Collection.html":{}}}],["failiur",{"_index":3242,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["faktor",{"_index":4729,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["fall",{"_index":1055,"title":{},"body":{"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/ModalComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["fallback",{"_index":2374,"title":{},"body":{"components/ListComponent.html":{},"components/ModalComponent.html":{}}}],["fals",{"_index":363,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/HistoryService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/LoaderComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"modules/NotificationsModule.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["false).then((act",{"_index":3577,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["fancier",{"_index":4290,"title":{},"body":{"components/ToggleComponent.html":{}}}],["fb",{"_index":2806,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["fcfdf32",{"_index":4888,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["fd41ccc",{"_index":4917,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["featur",{"_index":3233,"title":{},"body":{"components/NotificationsComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["fed2c52",{"_index":4871,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["fehler",{"_index":3227,"title":{},"body":{"components/NotificationsComponent.html":{},"components/PasswordResetComponent.html":{}}}],["ffffff",{"_index":3615,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["ffnungszeiten",{"_index":4792,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["field",{"_index":46,"title":{"classes/Field.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"components/OutputComponent.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["field'",{"_index":1662,"title":{},"body":{"classes/Field.html":{}}}],["field('nam",{"_index":1686,"title":{},"body":{"classes/Field.html":{}}}],["field(this.properti",{"_index":2273,"title":{},"body":{"components/InputComponent.html":{}}}],["field.compon",{"_index":1444,"title":{},"body":{"components/DynamicRackComponent.html":{}}}],["field.creat",{"_index":1941,"title":{},"body":{"injectables/FormService.html":{}}}],["field.display(nam",{"_index":1694,"title":{},"body":{"classes/Field.html":{}}}],["field.edit",{"_index":1943,"title":{},"body":{"injectables/FormService.html":{}}}],["field.form",{"_index":1944,"title":{},"body":{"injectables/FormService.html":{}}}],["field.group(nam",{"_index":1695,"title":{},"body":{"classes/Field.html":{}}}],["field.hideinform",{"_index":4488,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["field.hideinlist",{"_index":2505,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["field.label",{"_index":2541,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["field.maxitems||10",{"_index":1387,"title":{},"body":{"components/DefaultOutputComponent.html":{}}}],["field.placehold",{"_index":1384,"title":{},"body":{"components/DefaultInputComponent.html":{}}}],["field.properti",{"_index":2542,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["field.readonli",{"_index":4773,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["field.requir",{"_index":1959,"title":{},"body":{"injectables/FormService.html":{}}}],["field.resolve({value:{name:'bobbi",{"_index":1692,"title":{},"body":{"classes/Field.html":{}}}],["field.sort(nam",{"_index":1697,"title":{},"body":{"classes/Field.html":{}}}],["field.t",{"_index":3860,"title":{},"body":{"interfaces/SdkField.html":{}}}],["field.title).filter(field",{"_index":3641,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["field.typ",{"_index":424,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{}}}],["field.valid",{"_index":1936,"title":{},"body":{"injectables/FormService.html":{}}}],["field.validate(control.valu",{"_index":1962,"title":{},"body":{"injectables/FormService.html":{}}}],["field[0",{"_index":3642,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["fieldconfig",{"_index":1717,"title":{"interfaces/FieldConfig.html":{}},"body":{"interfaces/FieldConfig.html":{},"interfaces/ItemConfig.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"injectables/TypeConfigService.html":{}}}],["fieldconfig[field].inputview",{"_index":3137,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["fieldconfig[field].typ",{"_index":3135,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["fieldconfig[key",{"_index":3180,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["fieldconfig[properti",{"_index":3149,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["fieldconfigproperti",{"_index":1627,"title":{},"body":{"classes/Field.html":{},"interfaces/FieldConfig.html":{},"components/InputComponent.html":{},"interfaces/ModelConfig.html":{},"interfaces/ModelConfiguration.html":{},"injectables/TypeConfigService.html":{}}}],["fieldfilt",{"_index":531,"title":{},"body":{"components/AssetListComponent.html":{}}}],["fieldhost",{"_index":1450,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["fieldhostdirect",{"_index":1458,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["fieldlabel",{"_index":2514,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["fieldlabel(field",{"_index":2525,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["fieldnam",{"_index":1722,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["fields.filter((field",{"_index":4486,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["fields.pip",{"_index":1895,"title":{},"body":{"modules/FormModule.html":{}}}],["fields.pipe.t",{"_index":4480,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["fields.pipe.ts:10",{"_index":4485,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["fields.pipe.ts:12",{"_index":4483,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["fieldvalid",{"_index":2844,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["fieldvalidators.email",{"_index":2850,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["fieldvalidators.uuid",{"_index":4019,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["file",{"_index":9,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["file.servic",{"_index":570,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"modules/FilesModule.html":{},"components/ImageSelectPopComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["fileinput",{"_index":4363,"title":{},"body":{"components/UploadComponent.html":{}}}],["filelist",{"_index":1774,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["filenam",{"_index":1723,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["fileopt",{"_index":1030,"title":{"interfaces/FileOptions.html":{}},"body":{"interfaces/CrudConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["files.length",{"_index":1778,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["files.map(f",{"_index":1780,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["files.split('\\n').map(url",{"_index":4407,"title":{},"body":{"components/UploadComponent.html":{}}}],["files/file.servic",{"_index":1069,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["files/files.modul",{"_index":1179,"title":{},"body":{"modules/DataModule.html":{}}}],["files[0].url",{"_index":1779,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["fileservic",{"_index":555,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["filesmodul",{"_index":1154,"title":{"modules/FilesModule.html":{}},"body":{"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules.html":{},"overview.html":{}}}],["filestoupload",{"_index":4364,"title":{},"body":{"components/UploadComponent.html":{}}}],["fill(0",{"_index":1327,"title":{},"body":{"interfaces/Day.html":{}}}],["filter",{"_index":493,"title":{},"body":{"components/AssetListComponent.html":{},"injectables/CrudService.html":{},"pipes/DatetimePipe.html":{},"classes/Field.html":{},"pipes/GroupPipe.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["filter((item",{"_index":4055,"title":{},"body":{"classes/Sorter.html":{}}}],["filter((valu",{"_index":3569,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["filter(field",{"_index":3134,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["filter(i",{"_index":3552,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["filter(properti",{"_index":525,"title":{},"body":{"components/AssetListComponent.html":{},"components/ListComponent.html":{}}}],["filter(rout",{"_index":2983,"title":{},"body":{"components/MenuComponent.html":{}}}],["filter(v",{"_index":3572,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["filter.model",{"_index":1107,"title":{},"body":{"injectables/CrudService.html":{}}}],["filter.rel",{"_index":1108,"title":{},"body":{"injectables/CrudService.html":{}}}],["filter[key",{"_index":3839,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["filterdropdownlist(listcompon",{"_index":3565,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["filteroper",{"_index":1628,"title":{},"body":{"classes/Field.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["filteropt",{"_index":1481,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["filterpopclass",{"_index":1629,"title":{},"body":{"classes/Field.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["find",{"_index":4104,"title":{},"body":{"injectables/SymbolService.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["finish",{"_index":673,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["fire",{"_index":447,"title":{},"body":{"directives/AssetDirective.html":{},"injectables/CrudService.html":{},"directives/EntryDirective.html":{},"interfaces/FileOptions.html":{},"components/LoginFormComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"injectables/ResourceService.html":{},"components/SignupFormComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["first",{"_index":1237,"title":{},"body":{"interfaces/Day.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["fit",{"_index":3821,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["fix",{"_index":2227,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["flag",{"_index":512,"title":{},"body":{"components/AssetListComponent.html":{},"classes/Collection.html":{},"interfaces/Day.html":{},"components/ListComponent.html":{},"injectables/NotificationsService.html":{},"classes/Sorter.html":{},"components/UploadComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["flexibl",{"_index":2395,"title":{},"body":{"components/ListComponent.html":{}}}],["flip",{"_index":1414,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/LoginFormComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{}}}],["flow",{"_index":4716,"title":{},"body":{"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["fn",{"_index":94,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["focu",{"_index":1855,"title":{"interfaces/Focus.html":{}},"body":{"interfaces/Focus.html":{},"components/ListComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["focus",{"_index":2356,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/UploadSelectComponent.html":{}}}],["focus/focus.direct",{"_index":4475,"title":{},"body":{"modules/UtilityModule.html":{}}}],["focusdirect",{"_index":312,"title":{"directives/FocusDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["focusev",{"_index":1857,"title":{},"body":{"interfaces/Focus.html":{},"components/UploadSelectComponent.html":{}}}],["focusfirst",{"_index":2346,"title":{},"body":{"components/ListComponent.html":{}}}],["focusitem",{"_index":2344,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{}}}],["focusnext",{"_index":2347,"title":{},"body":{"components/ListComponent.html":{}}}],["focusprev",{"_index":2348,"title":{},"body":{"components/ListComponent.html":{}}}],["focuss",{"_index":2566,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["folder",{"_index":4550,"title":{},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["follow",{"_index":2111,"title":{},"body":{"components/IconComponent.html":{},"modules/SymbolModule.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["font",{"_index":4069,"title":{},"body":{"interfaces/Symbol.html":{}}}],["footer",{"_index":3022,"title":{},"body":{"components/ModalComponent.html":{},"components/PopComponent.html":{}}}],["forcegroup",{"_index":1746,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["forcereload",{"_index":1825,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["foreach",{"_index":3150,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["foreach((field",{"_index":1947,"title":{},"body":{"injectables/FormService.html":{}}}],["forenviron",{"_index":1160,"title":{},"body":{"modules/DataModule.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["forenvironment(environ",{"_index":1161,"title":{},"body":{"modules/DataModule.html":{}}}],["forev",{"_index":3201,"title":{},"body":{"classes/Notification.html":{}}}],["form",{"_index":117,"title":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListHeaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"injectables/ModelConfigService.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["form'",{"_index":2263,"title":{},"body":{"components/InputComponent.html":{}}}],["form'},{'nam",{"_index":217,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["form.compon",{"_index":1175,"title":{},"body":{"modules/DataModule.html":{},"modules/FormModule.html":{},"modules/ResourceModule.html":{},"components/SignupFormComponent.html":{},"modules/UtilityModule.html":{}}}],["form.component'new",{"_index":4615,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["form.component.html",{"_index":2792,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["form.component.t",{"_index":2789,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["form.component.ts:17",{"_index":3991,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["form.component.ts:18",{"_index":2836,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:19",{"_index":3994,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["form.component.ts:20",{"_index":2839,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:21",{"_index":3992,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["form.component.ts:22",{"_index":2835,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:23",{"_index":4007,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["form.component.ts:24",{"_index":2826,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:26",{"_index":2824,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:28",{"_index":2817,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["form.component.ts:30",{"_index":2823,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:32",{"_index":2813,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:34",{"_index":2815,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:36",{"_index":2819,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:37",{"_index":4005,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["form.component.ts:38",{"_index":2821,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:40",{"_index":2810,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:42",{"_index":2808,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:44",{"_index":2805,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:47",{"_index":2840,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:51",{"_index":2831,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:59",{"_index":2834,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:67",{"_index":2828,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.component.ts:72",{"_index":2832,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["form.creat",{"_index":4921,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["form.display('amazement_factor",{"_index":4778,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["form.fields.filter((field",{"_index":1945,"title":{},"body":{"injectables/FormService.html":{}}}],["form.form",{"_index":1963,"title":{},"body":{"injectables/FormService.html":{}}}],["form.form.display",{"_index":1966,"title":{},"body":{"injectables/FormService.html":{}}}],["form.form.isedit",{"_index":1965,"title":{},"body":{"injectables/FormService.html":{}}}],["form.getbodi",{"_index":1942,"title":{},"body":{"injectables/FormService.html":{}}}],["form.getvalue('keepratio",{"_index":2231,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.getvalue('ratio",{"_index":2230,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.group.controls.alt.setvalue(titl",{"_index":2218,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.group.controls.height.setvalue(math.round(valu",{"_index":2232,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.group.controls.ratio.setvalue(ratio",{"_index":2219,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.group.controls.width.setvalue(math.round(valu",{"_index":2234,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.group.controls.width.setvalue(width",{"_index":2217,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["form.servic",{"_index":1894,"title":{},"body":{"modules/FormModule.html":{},"pipes/VisibleFieldsPipe.html":{}}}],["form/admin",{"_index":399,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"modules/DataModule.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{}}}],["form/default",{"_index":1172,"title":{},"body":{"modules/DataModule.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{},"injectables/TypeConfigService.html":{}}}],["form/entri",{"_index":1174,"title":{},"body":{"modules/DataModule.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["form/form.compon",{"_index":1940,"title":{},"body":{"injectables/FormService.html":{},"components/ListHeaderComponent.html":{}}}],["form/form.modul",{"_index":2583,"title":{},"body":{"modules/ListModule.html":{},"modules/UiModule.html":{}}}],["form/login",{"_index":2788,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{},"modules/UtilityModule.html":{}}}],["form/resourc",{"_index":3802,"title":{},"body":{"modules/ResourceModule.html":{}}}],["form/signup",{"_index":3988,"title":{},"body":{"components/SignupFormComponent.html":{},"modules/UtilityModule.html":{}}}],["format",{"_index":788,"title":{},"body":{"modules/CalendarModule.html":{},"interfaces/Day.html":{},"injectables/TypeConfigService.html":{}}}],["formats.d",{"_index":806,"title":{},"body":{"modules/CalendarModule.html":{}}}],["formats.month",{"_index":808,"title":{},"body":{"modules/CalendarModule.html":{}}}],["formats.tim",{"_index":807,"title":{},"body":{"modules/CalendarModule.html":{}}}],["formattedtext",{"_index":4318,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["formbuild",{"_index":2804,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["formcompon",{"_index":225,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["formcomponent#input",{"_index":2264,"title":{},"body":{"components/InputComponent.html":{}}}],["formconfig",{"_index":1870,"title":{"interfaces/FormConfig.html":{}},"body":{"interfaces/FormConfig.html":{},"components/ImageSelectPopComponent.html":{}}}],["formcontrol",{"_index":127,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/LocationPickerComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["formcontrol(form.getvalue(field.properti",{"_index":1950,"title":{},"body":{"injectables/FormService.html":{}}}],["formdata",{"_index":1772,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["formdata.append(key",{"_index":1775,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["formgroup",{"_index":132,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["formgroup(control",{"_index":1955,"title":{},"body":{"injectables/FormService.html":{}}}],["formmodul",{"_index":1878,"title":{"modules/FormModule.html":{}},"body":{"modules/FormModule.html":{},"modules/ListModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["formmoduleconfig",{"_index":1904,"title":{},"body":{"modules/FormModule.html":{}}}],["formservic",{"_index":1891,"title":{"injectables/FormService.html":{}},"body":{"modules/FormModule.html":{},"injectables/FormService.html":{},"pipes/VisibleFieldsPipe.html":{},"overview.html":{}}}],["formsmodul",{"_index":632,"title":{},"body":{"modules/AuthModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/ListModule.html":{},"modules/ResourceModule.html":{},"modules/UtilityModule.html":{}}}],["forroot",{"_index":784,"title":{},"body":{"modules/CalendarModule.html":{},"modules/LocationModule.html":{}}}],["forroot(format",{"_index":785,"title":{},"body":{"modules/CalendarModule.html":{}}}],["forroot(undefin",{"_index":2692,"title":{},"body":{"modules/LocationModule.html":{}}}],["forwardref",{"_index":28,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"modules/SelectModule.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["found",{"_index":584,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/ListConfigService.html":{},"components/LoaderComponent.html":{},"injectables/ResourceConfig.html":{},"classes/Sorter.html":{},"components/UploadComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme/style-readme.html":{}}}],["framework",{"_index":4813,"title":{},"body":{"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["freedom",{"_index":4768,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["fresh",{"_index":4556,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["from(this.maploader.load",{"_index":2011,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["fromsearch",{"_index":2720,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["fruit",{"_index":2398,"title":{},"body":{"components/ListComponent.html":{},"additional-documentation/readme/data-readme.html":{}}}],["fs",{"_index":4656,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["full",{"_index":2968,"title":{},"body":{"components/MenuComponent.html":{}}}],["fun",{"_index":4701,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["function",{"_index":532,"title":{"miscellaneous/functions.html":{}},"body":{"components/AssetListComponent.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"injectables/FormService.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ResourceCrudComponent.html":{},"classes/Sorter.html":{},"injectables/TypeConfigService.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["fundament",{"_index":812,"title":{},"body":{"classes/Collection.html":{}}}],["further",{"_index":3199,"title":{},"body":{"classes/Notification.html":{},"components/ResourceCrudComponent.html":{},"interfaces/SdkField.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["futur",{"_index":1119,"title":{},"body":{"injectables/CrudService.html":{}}}],["g",{"_index":4663,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["g.name",{"_index":3755,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["gener",{"_index":516,"title":{},"body":{"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"components/InputErrorsComponent.html":{},"injectables/ModelConfigService.html":{},"components/ResourceCrudComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["generateconfig",{"_index":3074,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["generateconfig(model",{"_index":3080,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["geo",{"_index":2723,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["geocod",{"_index":1970,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["geocode.servic",{"_index":2695,"title":{},"body":{"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{}}}],["geocodelatlng",{"_index":1972,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["geocodelatlng(geocod",{"_index":1983,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["geocoder.geocod",{"_index":2016,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["geocodeservic",{"_index":1967,"title":{"injectables/GeocodeService.html":{}},"body":{"injectables/GeocodeService.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"overview.html":{}}}],["get",{"_index":3195,"title":{"changelog.html":{},"index.html":{}},"body":{"classes/Notification.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{}}}],["get(nam",{"_index":4102,"title":{},"body":{"injectables/SymbolService.html":{}}}],["get(properti",{"_index":3089,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["get(relationnam",{"_index":3599,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["get(typ",{"_index":4312,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["getaccount",{"_index":663,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["getaccount(api",{"_index":678,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["getalgorithm",{"_index":4032,"title":{},"body":{"classes/Sorter.html":{}}}],["getalgorithm(item",{"_index":4037,"title":{},"body":{"classes/Sorter.html":{}}}],["getallowedmodelmethod",{"_index":664,"title":{},"body":{"injectables/AuthService.html":{}}}],["getallowedmodelmethods(model",{"_index":680,"title":{},"body":{"injectables/AuthService.html":{}}}],["getallowedresourcemethod",{"_index":665,"title":{},"body":{"injectables/AuthService.html":{}}}],["getallowedresourcemethods(rel",{"_index":684,"title":{},"body":{"injectables/AuthService.html":{}}}],["getapi",{"_index":666,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["getapi(email",{"_index":688,"title":{},"body":{"injectables/AuthService.html":{}}}],["getassetconfig(assetgroupid",{"_index":1756,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["getcolor",{"_index":2928,"title":{},"body":{"components/MenuComponent.html":{}}}],["getcolor(level",{"_index":2959,"title":{},"body":{"components/MenuComponent.html":{}}}],["getcolumn",{"_index":1635,"title":{},"body":{"classes/Field.html":{}}}],["getconfig",{"_index":3607,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["getdaycolor(_mo",{"_index":1307,"title":{},"body":{"interfaces/Day.html":{}}}],["getdayheat(_mo",{"_index":1310,"title":{},"body":{"interfaces/Day.html":{}}}],["geterror",{"_index":2304,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["getfieldconfig",{"_index":3075,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getfieldconfig(model",{"_index":3093,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getformdata(fil",{"_index":1773,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["getformlabel",{"_index":1913,"title":{},"body":{"injectables/FormService.html":{}}}],["getformlabel(form",{"_index":1922,"title":{},"body":{"injectables/FormService.html":{}}}],["getgroup",{"_index":1914,"title":{},"body":{"injectables/FormService.html":{}}}],["getgroup(form",{"_index":1925,"title":{},"body":{"injectables/FormService.html":{}}}],["gethead",{"_index":1549,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["getheader(entrylist",{"_index":1571,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["getitemcolor",{"_index":2929,"title":{},"body":{"components/MenuComponent.html":{}}}],["getitemcolor(item",{"_index":2961,"title":{},"body":{"components/MenuComponent.html":{}}}],["getlevel",{"_index":2930,"title":{},"body":{"components/MenuComponent.html":{}}}],["getlevel(level",{"_index":2963,"title":{},"body":{"components/MenuComponent.html":{}}}],["getlightmodel",{"_index":3076,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getlightmodel(model",{"_index":3100,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getminlevel",{"_index":3077,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getminlevel(model",{"_index":3103,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getmonth(day",{"_index":1322,"title":{},"body":{"interfaces/Day.html":{}}}],["getnearestaddress",{"_index":1973,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["getnearestaddress(loc",{"_index":1988,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["getpag",{"_index":3321,"title":{},"body":{"classes/Pagination.html":{}}}],["getpath",{"_index":396,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/MenuComponent.html":{}}}],["getpath(item",{"_index":2966,"title":{},"body":{"components/MenuComponent.html":{}}}],["getpermiss",{"_index":3279,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["getplacehold",{"_index":1636,"title":{},"body":{"classes/Field.html":{}}}],["getresourcelistactions(listresourc",{"_index":3537,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["getroot",{"_index":3909,"title":{},"body":{"injectables/SdkService.html":{}}}],["getschema",{"_index":3877,"title":{},"body":{"injectables/SdkService.html":{}}}],["getschema(model",{"_index":3884,"title":{},"body":{"injectables/SdkService.html":{}}}],["getstoragekey",{"_index":2469,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["getstoragekey(list",{"_index":2474,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["getsystemfield",{"_index":3078,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["getter",{"_index":901,"title":{},"body":{"classes/Config.html":{},"injectables/SdkService.html":{}}}],["getvalid",{"_index":1915,"title":{},"body":{"injectables/FormService.html":{}}}],["getvalidators(field",{"_index":1927,"title":{},"body":{"injectables/FormService.html":{}}}],["ghost",{"_index":4776,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["give",{"_index":3820,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["given",{"_index":80,"title":{},"body":{"components/AceComponent.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LoginFormComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["global",{"_index":2611,"title":{},"body":{"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["globalload",{"_index":2616,"title":{},"body":{"components/LoaderComponent.html":{}}}],["glyph",{"_index":4070,"title":{},"body":{"interfaces/Symbol.html":{}}}],["go",{"_index":4588,"title":{},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["googl",{"_index":1969,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/location-readme.html":{}}}],["google.maps.geocod",{"_index":2023,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["google.maps.places.autocomplete(el",{"_index":1997,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["googlemap",{"_index":2752,"title":{},"body":{"components/LocationSearchComponent.html":{},"dependencies.html":{}}}],["googlemaps.apikey",{"_index":2706,"title":{},"body":{"modules/LocationModule.html":{}}}],["grant",{"_index":3286,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["group",{"_index":47,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"classes/Field.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"components/SignupFormComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["group.addcontrol(field.properti",{"_index":1958,"title":{},"body":{"injectables/FormService.html":{}}}],["group.map(g",{"_index":3754,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["group.nam",{"_index":3667,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["group.pip",{"_index":2585,"title":{},"body":{"modules/ListModule.html":{}}}],["group.valu",{"_index":549,"title":{},"body":{"components/AssetListComponent.html":{}}}],["groupchang",{"_index":560,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["groupdat",{"_index":4306,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["groupid",{"_index":3753,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["grouppip",{"_index":1216,"title":{"pipes/GroupPipe.html":{}},"body":{"pipes/DatetimePipe.html":{},"pipes/GroupPipe.html":{},"modules/ListModule.html":{},"overview.html":{}}}],["grow",{"_index":1477,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["größer",{"_index":4730,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["guard",{"_index":578,"title":{"guards/AuthGuard.html":{}},"body":{"guards/AuthGuard.html":{},"overview.html":{}}}],["guard.servic",{"_index":636,"title":{},"body":{"modules/AuthModule.html":{}}}],["guard.service.t",{"_index":581,"title":{},"body":{"guards/AuthGuard.html":{}}}],["guard.service.ts:12",{"_index":593,"title":{},"body":{"guards/AuthGuard.html":{}}}],["guard.service.ts:17",{"_index":594,"title":{},"body":{"guards/AuthGuard.html":{}}}],["guid",{"_index":4543,"title":{"additional-documentation/angular-7-upgrade-guide.html":{}},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{}}}],["guidelin",{"_index":4835,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["h",{"_index":2404,"title":{},"body":{"components/ListComponent.html":{}}}],["haben",{"_index":3456,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["hack",{"_index":4881,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["handi",{"_index":4753,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["handl",{"_index":1921,"title":{},"body":{"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"components/MenuComponent.html":{},"components/NotificationsComponent.html":{},"components/SignupComponent.html":{},"classes/Sorter.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["handler",{"_index":2371,"title":{},"body":{"components/ListComponent.html":{}}}],["happen",{"_index":1560,"title":{},"body":{"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["hard",{"_index":4780,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["has(item",{"_index":842,"title":{},"body":{"classes/Collection.html":{}}}],["hasactivepath",{"_index":2931,"title":{},"body":{"components/MenuComponent.html":{}}}],["hasactivepath(item",{"_index":2969,"title":{},"body":{"components/MenuComponent.html":{}}}],["hasal",{"_index":814,"title":{},"body":{"classes/Collection.html":{}}}],["hasall(item",{"_index":845,"title":{},"body":{"classes/Collection.html":{}}}],["hasentri",{"_index":3644,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["hasfocu",{"_index":2551,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["hasfocus(item",{"_index":2564,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["hasmethod",{"_index":929,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["hasmethod(method",{"_index":952,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["haspassword",{"_index":3658,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["haspendingemail",{"_index":3660,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["hassl",{"_index":4823,"title":{},"body":{"additional-documentation/readme/style-readme.html":{}}}],["have",{"_index":403,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/LoaderService.html":{}}}],["header",{"_index":1264,"title":{},"body":{"interfaces/Day.html":{},"classes/Field.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/TabsComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["header'},{'nam",{"_index":238,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["header.compon",{"_index":2586,"title":{},"body":{"modules/ListModule.html":{}}}],["header.component.html",{"_index":2511,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.t",{"_index":2510,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:17",{"_index":2518,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:19",{"_index":2519,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:21",{"_index":2536,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:23",{"_index":2517,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:25",{"_index":2533,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:29",{"_index":2523,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:34",{"_index":2521,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:39",{"_index":2528,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:44",{"_index":2526,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header.component.ts:52",{"_index":2530,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["header/items/pagin",{"_index":4740,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["header/list",{"_index":2509,"title":{},"body":{"components/ListHeaderComponent.html":{},"modules/ListModule.html":{}}}],["headlin",{"_index":3205,"title":{},"body":{"classes/Notification.html":{}}}],["heat",{"_index":1238,"title":{},"body":{"interfaces/Day.html":{}}}],["heatmap",{"_index":1252,"title":{},"body":{"interfaces/Day.html":{}}}],["heatmap'},{'nam",{"_index":227,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["heatmap/heatmap.compon",{"_index":791,"title":{},"body":{"modules/CalendarModule.html":{}}}],["heatmapcompon",{"_index":226,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["height",{"_index":175,"title":{},"body":{"components/AceComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/LocationMapComponent.html":{}}}],["hellip",{"_index":1388,"title":{},"body":{"components/DefaultOutputComponent.html":{}}}],["help",{"_index":2260,"title":{},"body":{"components/InputComponent.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["helper",{"_index":1484,"title":{},"body":{"directives/EntriesDirective.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{}}}],["here",{"_index":2613,"title":{},"body":{"components/LoaderComponent.html":{},"components/MenuComponent.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"modules/SymbolModule.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["hexcolor",{"_index":3587,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["hh:mm",{"_index":798,"title":{},"body":{"modules/CalendarModule.html":{}}}],["hidden",{"_index":1630,"title":{},"body":{"classes/Field.html":{},"components/LoaderComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"interfaces/WithNotifications.html":{}}}],["hide",{"_index":1006,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ListConfigService.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"classes/PaginationConfig.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["hideassetgroupselect",{"_index":1031,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["hidefirstlast",{"_index":3424,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["hideinform",{"_index":2222,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"injectables/ModelConfigService.html":{}}}],["hideinlist",{"_index":3106,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["hideonclickoutsid",{"_index":1551,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["hideoncr",{"_index":3156,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["hideonedit",{"_index":3157,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["hidepag",{"_index":3425,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["hidepagin",{"_index":1601,"title":{},"body":{"components/EntryListPopComponent.html":{},"interfaces/ListConfig.html":{},"components/ResourceListPopComponent.html":{}}}],["hidesubmitbutton",{"_index":1874,"title":{},"body":{"interfaces/FormConfig.html":{}}}],["higher",{"_index":2405,"title":{},"body":{"components/ListComponent.html":{}}}],["highest",{"_index":4818,"title":{},"body":{"additional-documentation/readme/core-readme.html":{}}}],["histori",{"_index":2057,"title":{},"body":{"injectables/HistoryService.html":{},"interfaces/WithNotifications.html":{}}}],["historyservic",{"_index":1157,"title":{"injectables/HistoryService.html":{}},"body":{"modules/DataModule.html":{},"injectables/HistoryService.html":{},"overview.html":{}}}],["hold",{"_index":401,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/InputComponent.html":{},"components/ListHeaderComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"injectables/PopService.html":{},"components/TabsComponent.html":{},"injectables/TypeConfigService.html":{}}}],["hook",{"_index":3645,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["hook.method",{"_index":3647,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["host",{"_index":1410,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"directives/SlotHostDirective.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["host.direct",{"_index":1459,"title":{},"body":{"components/DynamicSlotComponent.html":{},"modules/IoModule.html":{}}}],["host.directive.t",{"_index":4022,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["host.directive.ts:11",{"_index":4027,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["host.directive.ts:9",{"_index":4025,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["hostbind",{"_index":1396,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["hostbinding('class",{"_index":1597,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["hostbinding('class.i",{"_index":1419,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/PopComponent.html":{}}}],["hostlisten",{"_index":1398,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["hostlistener('document:click",{"_index":3492,"title":{},"body":{"components/PopComponent.html":{}}}],["hostlistener('dragleav",{"_index":1430,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["hostlistener('dragov",{"_index":1420,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["hostlistener('drop",{"_index":1425,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["hour",{"_index":4796,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["hours.component.html",{"_index":4797,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["hours.component.scss",{"_index":4798,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["hover",{"_index":2925,"title":{},"body":{"components/MenuComponent.html":{}}}],["hoverdelay",{"_index":2936,"title":{},"body":{"components/MenuComponent.html":{}}}],["hoveritem",{"_index":2932,"title":{},"body":{"components/MenuComponent.html":{}}}],["hoveritem(item",{"_index":2972,"title":{},"body":{"components/MenuComponent.html":{}}}],["hoverout",{"_index":2933,"title":{},"body":{"components/MenuComponent.html":{}}}],["html",{"_index":178,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"injectables/SymbolPipe.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["http",{"_index":4630,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["http://localhost:4200",{"_index":4576,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["https://angular.io/guide/dynam",{"_index":4023,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["https://blog.thoughtram.io/angular/2016/07/27/custom",{"_index":4801,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["https://components.entrecode.de/assets/asset?e=1",{"_index":430,"title":{},"body":{"directives/AssetDirective.html":{}}}],["https://components.entrecode.de/auth/auth?e=1",{"_index":2760,"title":{},"body":{"components/LoginComponent.html":{}}}],["https://components.entrecode.de/auth/password",{"_index":3438,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["https://components.entrecode.de/auth/signup?e=1",{"_index":3964,"title":{},"body":{"components/SignupComponent.html":{}}}],["https://components.entrecode.de/entries/crud?e=1",{"_index":922,"title":{},"body":{"components/CrudComponent.html":{}}}],["https://components.entrecode.de/entries/entries?e=1",{"_index":1467,"title":{},"body":{"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{}}}],["https://components.entrecode.de/misc/ace?e=1",{"_index":18,"title":{},"body":{"components/AceComponent.html":{}}}],["https://components.entrecode.de/misc/medium",{"_index":2876,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["https://components.entrecode.de/misc/tinymce?e=1",{"_index":4203,"title":{},"body":{"components/TinymceComponent.html":{}}}],["https://components.entrecode.de/ui/datetime?e=1",{"_index":1188,"title":{},"body":{"components/DatetimeComponent.html":{},"interfaces/Day.html":{}}}],["https://components.entrecode.de/ui/icons?e=1",{"_index":2083,"title":{},"body":{"components/IconComponent.html":{},"injectables/IconService.html":{}}}],["https://components.entrecode.de/ui/list/basic?e=1",{"_index":2339,"title":{},"body":{"components/ListComponent.html":{}}}],["https://components.entrecode.de/ui/list/transforms?e=1",{"_index":2340,"title":{},"body":{"components/ListComponent.html":{}}}],["https://components.entrecode.de/ui/loader?e=1",{"_index":2596,"title":{},"body":{"components/LoaderComponent.html":{}}}],["https://components.entrecode.de/ui/login?e=1",{"_index":2791,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["https://components.entrecode.de/ui/modal?e=1",{"_index":3016,"title":{},"body":{"components/ModalComponent.html":{}}}],["https://components.entrecode.de/ui/notifications?e=1",{"_index":3211,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["https://components.entrecode.de/ui/pop?e=1",{"_index":3473,"title":{},"body":{"components/PopComponent.html":{}}}],["https://components.entrecode.de/ui/symbols?e=1",{"_index":4099,"title":{},"body":{"injectables/SymbolService.html":{}}}],["https://components.entrecode.de/ui/tabs?e=1",{"_index":4163,"title":{},"body":{"components/TabsComponent.html":{}}}],["https://doc.entrecode.de/data_manager/#field",{"_index":3861,"title":{},"body":{"interfaces/SdkField.html":{}}}],["https://doc.entrecode.de/en/develop/resources/dm",{"_index":3700,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["https://entrecode.de/schema/dm",{"_index":3711,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["https://entrecode.github.io/ec.sdk/#api",{"_index":504,"title":{},"body":{"components/AssetListComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["https://entrecode.github.io/ec.sdk/#environ",{"_index":657,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["https://github.com/ajaxorg/ac",{"_index":150,"title":{},"body":{"components/AceComponent.html":{}}}],["https://github.com/angular/angular/commit/333a708bb632d4258ecb5fd4a0e86229fe9d26e4",{"_index":1954,"title":{},"body":{"injectables/FormService.html":{}}}],["https://github.com/auth0/angular2",{"_index":642,"title":{},"body":{"modules/AuthModule.html":{}}}],["https://github.com/ng",{"_index":4124,"title":{},"body":{"injectables/SymbolService.html":{}}}],["https://localhost:4200",{"_index":4704,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["https://localhost:4200/muffin",{"_index":4715,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["https://medium.com/claritydesignsystem/ng",{"_index":3017,"title":{},"body":{"components/ModalComponent.html":{}}}],["human",{"_index":1681,"title":{},"body":{"classes/Field.html":{},"interfaces/ItemConfig.html":{}}}],["i+1",{"_index":3412,"title":{},"body":{"components/PaginationComponent.html":{}}}],["i.getbodi",{"_index":3551,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["i.id",{"_index":3553,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["icon",{"_index":1631,"title":{},"body":{"classes/Field.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["icon'},{'nam",{"_index":229,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["icon.compon",{"_index":2120,"title":{},"body":{"modules/IconModule.html":{}}}],["icon.component.html",{"_index":2086,"title":{},"body":{"components/IconComponent.html":{}}}],["icon.cont",{"_index":2114,"title":{},"body":{"components/IconComponent.html":{}}}],["icon.servic",{"_index":2105,"title":{},"body":{"components/IconComponent.html":{},"modules/IconModule.html":{}}}],["icon/icon.modul",{"_index":1900,"title":{},"body":{"modules/FormModule.html":{},"modules/ListModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/UiModule.html":{}}}],["iconcompon",{"_index":228,"title":{"components/IconComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["iconmodul",{"_index":1888,"title":{"modules/IconModule.html":{}},"body":{"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/ListModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["iconservic",{"_index":2088,"title":{"injectables/IconService.html":{}},"body":{"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"overview.html":{}}}],["id",{"_index":342,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"injectables/CrudService.html":{},"directives/EntryDirective.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["idea",{"_index":2394,"title":{},"body":{"components/ListComponent.html":{}}}],["identifi",{"_index":356,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"injectables/HistoryService.html":{},"interfaces/ItemConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"modules/SymbolModule.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["identifierpattern",{"_index":2326,"title":{},"body":{"interfaces/ItemConfig.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["ids.push(asset",{"_index":1808,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["if(body.amazement_factor",{"_index":4747,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["if(valu",{"_index":4742,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["if(value===10",{"_index":4741,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["ifram",{"_index":180,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"components/ListComponent.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{}}}],["ignor",{"_index":1728,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/ListConfig.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["ignoredupl",{"_index":1724,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["imag",{"_index":231,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["image/image.direct",{"_index":1850,"title":{},"body":{"modules/FilesModule.html":{}}}],["imagedirect",{"_index":314,"title":{"directives/ImageDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["imageform",{"_index":2167,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["imageload",{"_index":2168,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["images",{"_index":3705,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["imageselectpopcompon",{"_index":230,"title":{"components/ImageSelectPopComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["img",{"_index":315,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["img'",{"_index":2125,"title":{},"body":{"directives/ImageDirective.html":{}}}],["immedi",{"_index":442,"title":{},"body":{"directives/AssetDirective.html":{},"interfaces/CrudConfig.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/PopComponent.html":{}}}],["immut",{"_index":1095,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["immuta",{"_index":3598,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["implement",{"_index":16,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"directives/FocusDirective.html":{},"pipes/GroupPipe.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"interfaces/SdkField.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"injectables/SymbolPipe.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["import",{"_index":65,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{}}}],["impressum",{"_index":4589,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["includ",{"_index":1730,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/IconService.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"components/SignupComponent.html":{},"modules/SymbolModule.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["includeassetidinpath",{"_index":1725,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["incom",{"_index":4298,"title":{},"body":{"components/ToggleComponent.html":{}}}],["increment",{"_index":4808,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["index",{"_index":37,"title":{"index.html":{}},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["index(item",{"_index":848,"title":{},"body":{"classes/Collection.html":{}}}],["index.html",{"_index":2097,"title":{},"body":{"components/IconComponent.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["indic",{"_index":1727,"title":{},"body":{"interfaces/FileOptions.html":{},"components/LoaderComponent.html":{},"interfaces/Upload.html":{}}}],["info",{"_index":2,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["inform",{"_index":2532,"title":{},"body":{"components/ListHeaderComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["inhabit",{"_index":2331,"title":{},"body":{"interfaces/ItemConfig.html":{}}}],["inherit",{"_index":128,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/ModalComponent.html":{},"components/OutputComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["init",{"_index":50,"title":{},"body":{"components/AceComponent.html":{},"injectables/AuthService.html":{},"directives/EntriesDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["init(environ",{"_index":3888,"title":{},"body":{"injectables/SdkService.html":{}}}],["init(list",{"_index":2381,"title":{},"body":{"components/ListComponent.html":{}}}],["initfilterqueri",{"_index":494,"title":{},"body":{"components/AssetListComponent.html":{}}}],["initfilterquery(fieldfilt",{"_index":528,"title":{},"body":{"components/AssetListComponent.html":{}}}],["initi",{"_index":124,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"injectables/FormService.html":{},"components/LoginFormComponent.html":{},"components/MenuComponent.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{}}}],["initmethod",{"_index":3758,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["initmod",{"_index":3020,"title":{},"body":{"components/ModalComponent.html":{}}}],["inittab",{"_index":4166,"title":{},"body":{"components/TabsComponent.html":{}}}],["inject",{"_index":437,"title":{"injectables/AuthService.html":{},"injectables/CrudService.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"injectables/IconService.html":{},"injectables/ListConfigService.html":{},"injectables/LoaderService.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"injectables/TypeConfigService.html":{}},"body":{"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"injectables/CrudService.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"injectables/IconService.html":{},"injectables/ListConfigService.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LoginFormComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"overview.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["inject('environ",{"_index":3902,"title":{},"body":{"injectables/SdkService.html":{}}}],["inject('moment.format.month",{"_index":1269,"title":{},"body":{"interfaces/Day.html":{}}}],["input",{"_index":40,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"directives/FocusDirective.html":{},"injectables/GeocodeService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["input'",{"_index":1198,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["input'},{'nam",{"_index":233,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["input('config",{"_index":2411,"title":{},"body":{"components/ListComponent.html":{}}}],["input.compon",{"_index":1171,"title":{},"body":{"modules/DataModule.html":{},"modules/FormModule.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["input.component.html",{"_index":411,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["input.component.scss",{"_index":4785,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["input.component.t",{"_index":400,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["input.component.ts:10",{"_index":1372,"title":{},"body":{"components/DefaultEntryInputComponent.html":{}}}],["input.component.ts:11",{"_index":1382,"title":{},"body":{"components/DefaultInputComponent.html":{}}}],["input.component.ts:13",{"_index":415,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultInputComponent.html":{}}}],["input.component.ts:14",{"_index":416,"title":{},"body":{"components/AdminEntryInputComponent.html":{}}}],["input.component.ts:15",{"_index":1383,"title":{},"body":{"components/DefaultInputComponent.html":{}}}],["input.component.ts:17",{"_index":1381,"title":{},"body":{"components/DefaultInputComponent.html":{}}}],["input.component.ts:9",{"_index":1371,"title":{},"body":{"components/DefaultEntryInputComponent.html":{}}}],["input/default",{"_index":1379,"title":{},"body":{"components/DefaultInputComponent.html":{},"modules/FormModule.html":{},"components/InputComponent.html":{}}}],["input/ec",{"_index":4766,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["input/input.compon",{"_index":2321,"title":{},"body":{"modules/IoModule.html":{}}}],["input/output",{"_index":4777,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["input[type=fil",{"_index":4392,"title":{},"body":{"components/UploadComponent.html":{}}}],["inputcompon",{"_index":115,"title":{"components/InputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["inputerrorscompon",{"_index":234,"title":{"components/InputErrorsComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["inputthi",{"_index":4783,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["inputview",{"_index":2203,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{}}}],["insid",{"_index":968,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/Day.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/ResourceCrudComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{}}}],["inspir",{"_index":3786,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["instal",{"_index":4559,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{}}}],["instanc",{"_index":77,"title":{},"body":{"components/AceComponent.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"pipes/DatetimePipe.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoginComponent.html":{},"components/MediumEditorComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["instanceof",{"_index":2156,"title":{},"body":{"directives/ImageDirective.html":{},"components/InputComponent.html":{},"components/TabsComponent.html":{}}}],["instead",{"_index":1113,"title":{},"body":{"injectables/CrudService.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["intend",{"_index":4222,"title":{},"body":{"components/TinymceComponent.html":{}}}],["interact",{"_index":3274,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["interfac",{"_index":338,"title":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"interfaces/FormConfig.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"interfaces/ModelConfig.html":{},"interfaces/ModelConfiguration.html":{},"interfaces/ResourceActionbarState.html":{},"interfaces/SdkField.html":{},"interfaces/Symbol.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{}},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"interfaces/ModelConfig.html":{},"interfaces/ModelConfiguration.html":{},"components/NotificationsComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"interfaces/Symbol.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"overview.html":{}}}],["interfer",{"_index":2631,"title":{},"body":{"components/LoaderComponent.html":{}}}],["intern",{"_index":1057,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["interpret",{"_index":1747,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["intial",{"_index":2262,"title":{},"body":{"components/InputComponent.html":{}}}],["intl.collator(undefin",{"_index":4045,"title":{},"body":{"classes/Sorter.html":{}}}],["invalid",{"_index":4327,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["invit",{"_index":719,"title":{},"body":{"injectables/AuthService.html":{},"injectables/ResourceConfig.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{}}}],["inviteplacehold",{"_index":3989,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["invok",{"_index":2330,"title":{},"body":{"interfaces/ItemConfig.html":{},"components/ResourceCrudComponent.html":{}}}],["io/io.modul",{"_index":1896,"title":{},"body":{"modules/FormModule.html":{},"modules/UtilityModule.html":{}}}],["iomodul",{"_index":1886,"title":{"modules/IoModule.html":{}},"body":{"modules/FormModule.html":{},"modules/IoModule.html":{},"modules/UtilityModule.html":{},"modules.html":{},"overview.html":{}}}],["isact",{"_index":2934,"title":{},"body":{"components/MenuComponent.html":{},"classes/Pagination.html":{}}}],["isactive(pag",{"_index":3337,"title":{},"body":{"classes/Pagination.html":{}}}],["isactive(path",{"_index":2975,"title":{},"body":{"components/MenuComponent.html":{}}}],["isclick",{"_index":2552,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["isempti",{"_index":815,"title":{},"body":{"classes/Collection.html":{}}}],["isend",{"_index":1333,"title":{},"body":{"interfaces/Day.html":{}}}],["isfirst",{"_index":1469,"title":{},"body":{"directives/EntriesDirective.html":{},"classes/Pagination.html":{}}}],["isimmutableproperti",{"_index":1080,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{}}}],["isimmutableproperty(key",{"_index":1093,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["islast",{"_index":1470,"title":{},"body":{"directives/EntriesDirective.html":{},"classes/Pagination.html":{}}}],["isload",{"_index":2345,"title":{},"body":{"components/ListComponent.html":{}}}],["isn't",{"_index":4660,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["isnewasset(asset",{"_index":1762,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["isnewassetgroupid(assetgroupid",{"_index":1830,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["isoldassetgroupid",{"_index":2183,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["isoldassetgroupid(assetgroupid",{"_index":1828,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["isoutsid",{"_index":1550,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["isoutside(el",{"_index":1578,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["isselect",{"_index":2935,"title":{},"body":{"components/MenuComponent.html":{}}}],["isselected(_mo",{"_index":1360,"title":{},"body":{"interfaces/Day.html":{}}}],["isselected(item",{"_index":2977,"title":{},"body":{"components/MenuComponent.html":{}}}],["isstart",{"_index":1331,"title":{},"body":{"interfaces/Day.html":{}}}],["ist",{"_index":3221,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["isvis",{"_index":3387,"title":{},"body":{"components/PaginationComponent.html":{}}}],["isvisible(pag",{"_index":3390,"title":{},"body":{"components/PaginationComponent.html":{}}}],["item",{"_index":48,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"pipes/GroupPipe.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"components/LocationPickerComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MenuComponent.html":{},"injectables/ModelConfigService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"classes/Sorter.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/core-readme.html":{}}}],["item'",{"_index":2556,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["item(",{"_index":1831,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["item('a",{"_index":4820,"title":{},"body":{"additional-documentation/readme/core-readme.html":{}}}],["item(asset",{"_index":1789,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["item(assets[0",{"_index":1787,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["item.config.fields[property].form",{"_index":993,"title":{},"body":{"components/CrudComponent.html":{}}}],["item.config.fields[property].list",{"_index":992,"title":{},"body":{"components/CrudComponent.html":{}}}],["item.config.onsav",{"_index":3844,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["item.data?.titl",{"_index":3006,"title":{},"body":{"components/MenuComponent.html":{}}}],["item.deleteimmutableproperties(valu",{"_index":3846,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["item.getbodi",{"_index":550,"title":{},"body":{"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["item.getbody().act",{"_index":365,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["item.getbody().action(item",{"_index":366,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["item.getbody().children",{"_index":367,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["item.getbody().select",{"_index":362,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["item.group(properti",{"_index":2032,"title":{},"body":{"pipes/GroupPipe.html":{}}}],["item.id",{"_index":1002,"title":{},"body":{"components/CrudComponent.html":{},"directives/EntriesDirective.html":{}}}],["item.path",{"_index":3004,"title":{},"body":{"components/MenuComponent.html":{}}}],["item.resolve(field.properti",{"_index":4758,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["item.sort(properti",{"_index":4053,"title":{},"body":{"classes/Sorter.html":{}}}],["item/item",{"_index":1877,"title":{},"body":{"interfaces/FormConfig.html":{},"interfaces/ListConfig.html":{},"classes/Sorter.html":{}}}],["item?.display(field.properti",{"_index":1377,"title":{},"body":{"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{}}}],["item?.resolve(field.property)?.length",{"_index":1390,"title":{},"body":{"components/DefaultOutputComponent.html":{}}}],["itemconfig",{"_index":1873,"title":{"interfaces/ItemConfig.html":{}},"body":{"interfaces/FormConfig.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["items'},{'nam",{"_index":240,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["items.compon",{"_index":2587,"title":{},"body":{"modules/ListModule.html":{}}}],["items.component.html",{"_index":2550,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.t",{"_index":2547,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:14",{"_index":2560,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:16",{"_index":2561,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:18",{"_index":2559,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:20",{"_index":2562,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:22",{"_index":2555,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:24",{"_index":2554,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:27",{"_index":2569,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:29",{"_index":2568,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:45",{"_index":2565,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:49",{"_index":2567,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.component.ts:54",{"_index":2563,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["items.filter((item",{"_index":2031,"title":{},"body":{"pipes/GroupPipe.html":{}}}],["items.foreach((item",{"_index":876,"title":{},"body":{"classes/Collection.html":{}}}],["items.length",{"_index":891,"title":{},"body":{"classes/Collection.html":{},"classes/Sorter.html":{}}}],["items.pip",{"_index":1902,"title":{},"body":{"modules/FormModule.html":{}}}],["items.pipe.t",{"_index":2866,"title":{},"body":{"pipes/MaxItemsPipe.html":{}}}],["items.pipe.ts:8",{"_index":2870,"title":{},"body":{"pipes/MaxItemsPipe.html":{}}}],["items.reduce((ha",{"_index":882,"title":{},"body":{"classes/Collection.html":{}}}],["items.revers",{"_index":4067,"title":{},"body":{"classes/Sorter.html":{}}}],["items.slice((this.config.pag",{"_index":3380,"title":{},"body":{"classes/Pagination.html":{}}}],["items.sort((a",{"_index":4062,"title":{},"body":{"classes/Sorter.html":{}}}],["items/list",{"_index":2546,"title":{},"body":{"components/ListItemsComponent.html":{},"modules/ListModule.html":{}}}],["iter",{"_index":2307,"title":{},"body":{"components/InputErrorsComponent.html":{},"classes/Pagination.html":{}}}],["itself",{"_index":1580,"title":{},"body":{"components/EntryListPopComponent.html":{},"classes/Field.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"components/TabComponent.html":{}}}],["javascript",{"_index":62,"title":{},"body":{"components/AceComponent.html":{}}}],["join",{"_index":3648,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["js",{"_index":4517,"title":{},"body":{"dependencies.html":{}}}],["json",{"_index":707,"title":{},"body":{"injectables/AuthService.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/LocationPickerComponent.html":{},"injectables/NotificationsService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"injectables/TypeConfigService.html":{}}}],["json.parse(config",{"_index":2486,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["json.parse(e.data",{"_index":2076,"title":{},"body":{"injectables/HistoryService.html":{}}}],["json.stringify(json",{"_index":3702,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["json.stringify(object.assign(exist",{"_index":2490,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["json.stringify(valu",{"_index":2488,"title":{},"body":{"injectables/ListConfigService.html":{},"injectables/TypeConfigService.html":{}}}],["jwt/issues/305",{"_index":643,"title":{},"body":{"modules/AuthModule.html":{}}}],["kann",{"_index":608,"title":{},"body":{"guards/AuthGuard.html":{}}}],["karma",{"_index":4585,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["keep",{"_index":1345,"title":{},"body":{"interfaces/Day.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputErrorsComponent.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{}}}],["keeppopopen",{"_index":1032,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["keepratio",{"_index":2223,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["key",{"_index":903,"title":{},"body":{"classes/Config.html":{},"injectables/CrudService.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/InputErrorsComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"injectables/ModelConfigService.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"injectables/SymbolService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["key[0",{"_index":1139,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["keydown",{"_index":3517,"title":{},"body":{"injectables/PopService.html":{}}}],["keyup",{"_index":4278,"title":{},"body":{"components/TinymceComponent.html":{}}}],["kind",{"_index":2610,"title":{},"body":{"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"injectables/ResourceConfig.html":{},"classes/Sorter.html":{},"interfaces/WithLoader.html":{}}}],["kleiner",{"_index":4732,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["know",{"_index":1813,"title":{},"body":{"interfaces/FileOptions.html":{},"classes/Pagination.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["known",{"_index":457,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"injectables/SdkService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["label",{"_index":355,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/CrudConfig.html":{},"components/DefaultOutputComponent.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/LoginFormComponent.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["languag",{"_index":99,"title":{},"body":{"components/AceComponent.html":{},"injectables/ResourceConfig.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["last",{"_index":1239,"title":{},"body":{"interfaces/Day.html":{},"components/LoaderComponent.html":{},"classes/Pagination.html":{},"classes/PaginationConfig.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["lat",{"_index":2024,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["later",{"_index":1441,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"interfaces/WithNotifications.html":{}}}],["latest",{"_index":3518,"title":{},"body":{"injectables/PopService.html":{}}}],["latestpop",{"_index":3527,"title":{},"body":{"injectables/PopService.html":{}}}],["latestpop.hid",{"_index":3529,"title":{},"body":{"injectables/PopService.html":{}}}],["latitud",{"_index":2005,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationMapComponent.html":{}}}],["layer",{"_index":3275,"title":{},"body":{"injectables/NotificationsService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["layout",{"_index":1346,"title":{},"body":{"interfaces/Day.html":{}}}],["lazi",{"_index":4207,"title":{},"body":{"components/TinymceComponent.html":{}}}],["left",{"_index":3036,"title":{},"body":{"components/ModalComponent.html":{}}}],["legaci",{"_index":577,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["legacyasset",{"_index":1754,"title":{},"body":{"interfaces/FileOptions.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["legacyassetconfig",{"_index":1744,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["legend",{"_index":177,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"modules/SymbolModule.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"modules/UiModule.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["lemontre",{"_index":2399,"title":{},"body":{"components/ListComponent.html":{}}}],["length",{"_index":885,"title":{},"body":{"classes/Collection.html":{}}}],["lerna",{"_index":4521,"title":{},"body":{"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["let'",{"_index":3306,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["letter",{"_index":1073,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["level",{"_index":434,"title":{},"body":{"directives/AssetDirective.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"directives/EntryDirective.html":{},"components/MenuComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{}}}],["li",{"_index":3401,"title":{},"body":{"components/PaginationComponent.html":{}}}],["li.i",{"_index":3009,"title":{},"body":{"components/MenuComponent.html":{}}}],["lib",{"_index":4999,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["librari",{"_index":2704,"title":{},"body":{"modules/LocationModule.html":{},"additional-documentation/adding-new-packages.html":{}}}],["light",{"_index":3102,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["lightmodel",{"_index":1545,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["line",{"_index":2628,"title":{},"body":{"components/LoaderComponent.html":{},"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["line:direct",{"_index":1865,"title":{},"body":{"directives/FocusDirective.html":{}}}],["line:no",{"_index":2410,"title":{},"body":{"components/ListComponent.html":{},"components/PopComponent.html":{}}}],["link",{"_index":3429,"title":{},"body":{"classes/PaginationConfig.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/adding-new-packages.html":{}}}],["lint",{"_index":4925,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["linter",{"_index":4878,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["list",{"_index":196,"title":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["list'},{'nam",{"_index":194,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["list(act",{"_index":390,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["list(this.collection.item",{"_index":2419,"title":{},"body":{"components/ListComponent.html":{}}}],["list(this.item",{"_index":2416,"title":{},"body":{"components/ListComponent.html":{}}}],["list.compon",{"_index":548,"title":{},"body":{"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"components/ListComponent.html":{},"modules/ListModule.html":{},"components/ResourceCrudComponent.html":{},"modules/ResourceModule.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["list.component.html",{"_index":488,"title":{},"body":{"components/AssetListComponent.html":{},"components/ListComponent.html":{}}}],["list.component.t",{"_index":487,"title":{},"body":{"components/AssetListComponent.html":{}}}],["list.component.ts:10",{"_index":522,"title":{},"body":{"components/AssetListComponent.html":{}}}],["list.config",{"_index":2492,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["list.config.storagekey",{"_index":2493,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["list.field",{"_index":2491,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["list.fields.filter(f",{"_index":2499,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["list.fields.find(f",{"_index":2507,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["list.fields.foreach(field",{"_index":2504,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["list.load",{"_index":4761,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["list.ts/list.compon",{"_index":3363,"title":{},"body":{"classes/Pagination.html":{}}}],["list/asset",{"_index":486,"title":{},"body":{"components/AssetListComponent.html":{},"modules/FilesModule.html":{}}}],["list/entri",{"_index":976,"title":{},"body":{"components/CrudComponent.html":{},"modules/DataModule.html":{}}}],["list/list",{"_index":2464,"title":{},"body":{"interfaces/ListConfig.html":{},"classes/Pagination.html":{}}}],["list/list.modul",{"_index":3959,"title":{},"body":{"modules/SelectModule.html":{},"modules/UiModule.html":{}}}],["list/resourc",{"_index":547,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/FileOptions.html":{},"components/ResourceCrudComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["listcompon",{"_index":236,"title":{"components/ListComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["listconfig",{"_index":349,"title":{"interfaces/ListConfig.html":{}},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AssetListComponent.html":{},"interfaces/CrudConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"classes/Pagination.html":{},"components/ResourceListPopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["listconfigservic",{"_index":542,"title":{"injectables/ListConfigService.html":{}},"body":{"components/AssetListComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"modules/ListModule.html":{},"overview.html":{}}}],["listen",{"_index":1570,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"components/ResourceListPopComponent.html":{}}}],["listheadercompon",{"_index":237,"title":{"components/ListHeaderComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["listitemscompon",{"_index":239,"title":{"components/ListItemsComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["listmodul",{"_index":2575,"title":{"modules/ListModule.html":{}},"body":{"modules/ListModule.html":{},"modules/SelectModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["listmoduleconfig",{"_index":2590,"title":{},"body":{"modules/ListModule.html":{}}}],["listresourc",{"_index":496,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{}}}],["listresource.follownextlink().then((list",{"_index":3547,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["listresource.getallitem",{"_index":3538,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["listresource.hasnextlink",{"_index":3545,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["lists/form",{"_index":3088,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["listtempl",{"_index":2343,"title":{},"body":{"components/ListComponent.html":{}}}],["liter",{"_index":786,"title":{},"body":{"modules/CalendarModule.html":{},"classes/Config.html":{},"interfaces/CrudConfig.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"interfaces/ListConfig.html":{},"components/LocationMapComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"injectables/SymbolService.html":{}}}],["live",{"_index":656,"title":{},"body":{"injectables/AuthService.html":{},"modules/DataModule.html":{},"injectables/HistoryService.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["lng",{"_index":2026,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["load",{"_index":428,"title":{},"body":{"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"modules/AuthModule.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"directives/ImageDirective.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/LoaderComponent.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"directives/SlotHostDirective.html":{},"interfaces/WithLoader.html":{},"miscellaneous/functions.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["load(config",{"_index":3342,"title":{},"body":{"classes/Pagination.html":{}}}],["load(id",{"_index":451,"title":{},"body":{"directives/AssetDirective.html":{},"directives/ImageDirective.html":{}}}],["loadactions(act",{"_index":387,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["loadactionsbefor",{"_index":373,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["loadcompon",{"_index":1451,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["loadcomponent(compon",{"_index":1453,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["loadentri",{"_index":930,"title":{},"body":{"components/CrudComponent.html":{}}}],["loadentry(item",{"_index":955,"title":{},"body":{"components/CrudComponent.html":{}}}],["loader",{"_index":497,"title":{},"body":{"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"interfaces/WithLoader.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["loader'",{"_index":2609,"title":{},"body":{"components/LoaderComponent.html":{}}}],["loader'},{'nam",{"_index":242,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["loader.compon",{"_index":2646,"title":{},"body":{"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"interfaces/WithLoader.html":{}}}],["loader.component.html",{"_index":2597,"title":{},"body":{"components/LoaderComponent.html":{}}}],["loader.interfac",{"_index":2843,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["loader.interface.t",{"_index":4490,"title":{},"body":{"interfaces/WithLoader.html":{}}}],["loader.servic",{"_index":2647,"title":{},"body":{"modules/LoaderModule.html":{}}}],["loader.wait(promis",{"_index":2653,"title":{},"body":{"injectables/LoaderService.html":{}}}],["loader/loader.compon",{"_index":2841,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["loader/loader.modul",{"_index":1899,"title":{},"body":{"modules/FormModule.html":{},"modules/SelectModule.html":{},"modules/UiModule.html":{}}}],["loader/with",{"_index":2842,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["loadercompon",{"_index":241,"title":{"components/LoaderComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"interfaces/WithLoader.html":{},"overview.html":{}}}],["loadermodul",{"_index":1889,"title":{"modules/LoaderModule.html":{}},"body":{"modules/FormModule.html":{},"modules/LoaderModule.html":{},"modules/SelectModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["loaderservic",{"_index":934,"title":{"injectables/LoaderService.html":{}},"body":{"components/CrudComponent.html":{},"injectables/HistoryService.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/ResourceCrudComponent.html":{},"components/UploadComponent.html":{},"overview.html":{}}}],["loaderth",{"_index":2612,"title":{},"body":{"components/LoaderComponent.html":{}}}],["loadimag",{"_index":2199,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["loadimg",{"_index":2205,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["loadresourcelistactions(st",{"_index":3557,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["loadwhen",{"_index":498,"title":{},"body":{"components/AssetListComponent.html":{}}}],["local",{"_index":2461,"title":{"additional-documentation/project-setup-tutorial/localization.html":{}},"body":{"interfaces/ListConfig.html":{},"components/LoaderComponent.html":{},"injectables/ResourceConfig.html":{},"modules/SymbolModule.html":{},"injectables/SymbolService.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["localiz",{"_index":3152,"title":{},"body":{"injectables/ModelConfigService.html":{},"interfaces/SdkField.html":{}}}],["localload",{"_index":2618,"title":{},"body":{"components/LoaderComponent.html":{}}}],["localstorage.getitem(key",{"_index":2485,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["localstorage.setitem(key",{"_index":2487,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["locat",{"_index":244,"title":{"additional-documentation/readme/location-readme.html":{},"additional-documentation/changelog/location-changelog.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"injectables/GeocodeService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/location-readme.html":{}}}],["location.latitud",{"_index":2025,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["location.longitud",{"_index":2027,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["location/map",{"_index":2690,"title":{},"body":{"modules/LocationModule.html":{}}}],["location_compon",{"_index":2691,"title":{},"body":{"modules/LocationModule.html":{}}}],["locationmapcompon",{"_index":243,"title":{"components/LocationMapComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["locationmodul",{"_index":2683,"title":{"modules/LocationModule.html":{}},"body":{"modules/LocationModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/readme/location-readme.html":{}}}],["locationmoduleconfig",{"_index":2699,"title":{},"body":{"modules/LocationModule.html":{}}}],["locationpickercompon",{"_index":246,"title":{"components/LocationPickerComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{},"additional-documentation/readme/location-readme.html":{}}}],["locationsearchcompon",{"_index":248,"title":{"components/LocationSearchComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["lock",{"_index":3452,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["lockform",{"_index":3441,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["log",{"_index":2095,"title":{},"body":{"components/IconComponent.html":{},"components/NotificationsComponent.html":{},"changelog.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["logic",{"_index":4800,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["login",{"_index":253,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["login'",{"_index":2837,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["login'},{'nam",{"_index":251,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["login(undefin",{"_index":691,"title":{},"body":{"injectables/AuthService.html":{},"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["login(valu",{"_index":2827,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["login.component.html",{"_index":2761,"title":{},"body":{"components/LoginComponent.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["login.component.t",{"_index":4718,"title":{},"body":{"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["login/login.compon",{"_index":638,"title":{},"body":{"modules/AuthModule.html":{},"components/SignupComponent.html":{}}}],["logincompon",{"_index":250,"title":{"components/LoginComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/AuthModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["logincomponent:24",{"_index":3969,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:26",{"_index":3972,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:28",{"_index":3971,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:30",{"_index":3978,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:32",{"_index":3979,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:34",{"_index":3977,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:35",{"_index":3980,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:36",{"_index":3981,"title":{},"body":{"components/SignupComponent.html":{}}}],["logincomponent:39",{"_index":3974,"title":{},"body":{"components/SignupComponent.html":{}}}],["loginformcompon",{"_index":252,"title":{"components/LoginFormComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["loginformcomponent:18",{"_index":4013,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:20",{"_index":4015,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:22",{"_index":4012,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:24",{"_index":4004,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:26",{"_index":4003,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:28",{"_index":3999,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:30",{"_index":4002,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:32",{"_index":3997,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:34",{"_index":3998,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:36",{"_index":4000,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:38",{"_index":4001,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:40",{"_index":3996,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:42",{"_index":3995,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:44",{"_index":4014,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:47",{"_index":4016,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:51",{"_index":4009,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:59",{"_index":4011,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:67",{"_index":4008,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["loginformcomponent:72",{"_index":4010,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["logout",{"_index":667,"title":{},"body":{"injectables/AuthService.html":{}}}],["logout(api",{"_index":694,"title":{},"body":{"injectables/AuthService.html":{}}}],["long",{"_index":2459,"title":{},"body":{"interfaces/ListConfig.html":{},"components/NotificationsComponent.html":{}}}],["longer",{"_index":4618,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["longitud",{"_index":2007,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationMapComponent.html":{}}}],["look",{"_index":3191,"title":{},"body":{"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["lookup",{"_index":1987,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationPickerComponent.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["lower",{"_index":2407,"title":{},"body":{"components/ListComponent.html":{}}}],["lowest",{"_index":4815,"title":{},"body":{"additional-documentation/readme/data-readme.html":{}}}],["lvl",{"_index":3143,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["lvl1",{"_index":1041,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["made",{"_index":4221,"title":{},"body":{"components/TinymceComponent.html":{}}}],["mail",{"_index":2811,"title":{},"body":{"components/LoginFormComponent.html":{},"components/PasswordResetComponent.html":{},"components/SignupFormComponent.html":{}}}],["main",{"_index":2393,"title":{},"body":{"components/ListComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["mainli",{"_index":4537,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["make",{"_index":66,"title":{},"body":{"components/AceComponent.html":{},"injectables/CrudService.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/ResourceListPopComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["manag",{"_index":4549,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["mandatori",{"_index":3035,"title":{},"body":{"components/ModalComponent.html":{}}}],["mani",{"_index":1052,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/ListConfig.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["manual",{"_index":4213,"title":{},"body":{"components/TinymceComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/ace-readme.html":{}}}],["map",{"_index":910,"title":{},"body":{"classes/Config.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"interfaces/FileOptions.html":{},"injectables/GeocodeService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/MenuComponent.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/location-readme.html":{}}}],["map'},{'nam",{"_index":245,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["map((d",{"_index":1328,"title":{},"body":{"interfaces/Day.html":{}}}],["map((dat",{"_index":1330,"title":{},"body":{"interfaces/Day.html":{}}}],["map((method",{"_index":744,"title":{},"body":{"injectables/AuthService.html":{}}}],["map((resourc",{"_index":3539,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["map(a",{"_index":3567,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["map(field",{"_index":3136,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["map(hook",{"_index":3646,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["map(i",{"_index":3550,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["map(item",{"_index":4054,"title":{},"body":{"classes/Sorter.html":{}}}],["map(p",{"_index":3707,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["map(polici",{"_index":3650,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["map.compon",{"_index":2696,"title":{},"body":{"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{}}}],["map.component.html",{"_index":2657,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.scss",{"_index":2656,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.t",{"_index":2655,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.ts:12",{"_index":2664,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.ts:14",{"_index":2666,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.ts:16",{"_index":2668,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.ts:18",{"_index":2667,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.ts:24",{"_index":2673,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.component.ts:31",{"_index":2670,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["map.valu",{"_index":2741,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["mapload",{"_index":1979,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["mapsapiload",{"_index":1976,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["mark",{"_index":1256,"title":{},"body":{"interfaces/Day.html":{}}}],["marker",{"_index":2665,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["markerdragend",{"_index":2658,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["markerdragend(coord",{"_index":2669,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["markup",{"_index":3015,"title":{},"body":{"components/ModalComponent.html":{},"components/PopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["match",{"_index":321,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"changelog.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"modules.html":{},"overview.html":{},"miscellaneous/typealiases.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["match.level",{"_index":3141,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["matches(chang",{"_index":3818,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["math.abs(curr",{"_index":3408,"title":{},"body":{"components/PaginationComponent.html":{}}}],["math.max(max",{"_index":3144,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["math.max(minlevel",{"_index":997,"title":{},"body":{"components/CrudComponent.html":{}}}],["math.max(value.width",{"_index":2190,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["math.min(this.defaults",{"_index":2216,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["math.min(this.getpag",{"_index":3382,"title":{},"body":{"classes/Pagination.html":{}}}],["matter",{"_index":4687,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["max",{"_index":1901,"title":{},"body":{"modules/FormModule.html":{}}}],["maxcolumn",{"_index":2451,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["maxim",{"_index":2457,"title":{},"body":{"interfaces/ListConfig.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["maximum",{"_index":1656,"title":{},"body":{"classes/Field.html":{}}}],["maxitem",{"_index":1632,"title":{},"body":{"classes/Field.html":{},"pipes/MaxItemsPipe.html":{}}}],["maxitemspip",{"_index":1884,"title":{"pipes/MaxItemsPipe.html":{}},"body":{"modules/FormModule.html":{},"pipes/MaxItemsPipe.html":{},"overview.html":{}}}],["mean",{"_index":1829,"title":{},"body":{"interfaces/FileOptions.html":{},"modules/SymbolModule.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme/core-readme.html":{}}}],["meant",{"_index":131,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"guards/AuthGuard.html":{},"injectables/CrudService.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"interfaces/FileOptions.html":{},"pipes/GroupPipe.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/LoaderComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["meantion",{"_index":4772,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["medium",{"_index":255,"title":{"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{}}}],["mediumeditor",{"_index":2884,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["mediumeditor(this.container.nativeel",{"_index":2904,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["mediumeditorcompon",{"_index":254,"title":{"components/MediumEditorComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["mediumeditormodul",{"_index":2912,"title":{"modules/MediumEditorModule.html":{}},"body":{"modules/MediumEditorModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["mediummodul",{"_index":4627,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme/medium-editor-readme.html":{}}}],["mediummoduleconfig",{"_index":2919,"title":{},"body":{"modules/MediumEditorModule.html":{}}}],["menu",{"_index":2922,"title":{},"body":{"components/MenuComponent.html":{}}}],["menu,[ec",{"_index":258,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["menu.component.html",{"_index":2924,"title":{},"body":{"components/MenuComponent.html":{}}}],["menu.component.scss",{"_index":2923,"title":{},"body":{"components/MenuComponent.html":{}}}],["menu/menu.compon",{"_index":4476,"title":{},"body":{"modules/UtilityModule.html":{}}}],["menu]'},{'nam",{"_index":259,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["menucompon",{"_index":257,"title":{"components/MenuComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["merg",{"_index":907,"title":{},"body":{"classes/Config.html":{},"injectables/ModelConfigService.html":{},"classes/Pagination.html":{}}}],["merge(route.data",{"_index":981,"title":{},"body":{"components/CrudComponent.html":{}}}],["merged[titl",{"_index":3159,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["mergedfield",{"_index":3176,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["mergedfields[key",{"_index":3179,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["messag",{"_index":586,"title":{},"body":{"guards/AuthGuard.html":{},"components/ErrorComponent.html":{},"components/InputErrorsComponent.html":{},"components/LoginFormComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/PasswordResetComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["message.clos",{"_index":3312,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["met",{"_index":4793,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["metadata",{"_index":23,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"pipes/GroupPipe.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{}}}],["method",{"_index":49,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["middl",{"_index":4817,"title":{},"body":{"additional-documentation/readme/ui-readme.html":{}}}],["min",{"_index":174,"title":{},"body":{"components/AceComponent.html":{}}}],["minimum",{"_index":3434,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["miscellan",{"_index":4532,"title":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}},"body":{"miscellaneous/functions.html":{},"miscellaneous/typealiases.html":{}}}],["miss",{"_index":4845,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["mit",{"_index":3459,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["mmmm",{"_index":800,"title":{},"body":{"modules/CalendarModule.html":{},"interfaces/Day.html":{}}}],["modal",{"_index":3013,"title":{},"body":{"components/ModalComponent.html":{},"components/PopComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["modal'},{'nam",{"_index":261,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["modal.component.html",{"_index":3019,"title":{},"body":{"components/ModalComponent.html":{}}}],["modal/modal.compon",{"_index":3512,"title":{},"body":{"modules/PopModule.html":{}}}],["modalcompon",{"_index":260,"title":{"components/ModalComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["mode",{"_index":58,"title":{},"body":{"components/AceComponent.html":{},"interfaces/CrudConfig.html":{},"components/ModalComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["model",{"_index":108,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["model'",{"_index":3068,"title":{},"body":{"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{}}}],["model.${filter.model",{"_index":1109,"title":{},"body":{"injectables/CrudService.html":{}}}],["model.${model",{"_index":1137,"title":{},"body":{"injectables/CrudService.html":{}}}],["model.field",{"_index":906,"title":{},"body":{"classes/Config.html":{}}}],["model/schema",{"_index":4737,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["modelchang",{"_index":2882,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["modelconfig",{"_index":935,"title":{"interfaces/ModelConfig.html":{}},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["modelconfig.field",{"_index":3132,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfig.get('muffin'",{"_index":3091,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfig.get('muffin",{"_index":3116,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfig.set('muffin'",{"_index":3110,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfig.set('muffin",{"_index":3118,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfigfield",{"_index":3173,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfigfields[key",{"_index":3181,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modelconfigservic",{"_index":936,"title":{"injectables/ModelConfigService.html":{}},"body":{"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/EntryListPopComponent.html":{},"injectables/ModelConfigService.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["modelconfigur",{"_index":3185,"title":{"interfaces/ModelConfiguration.html":{}},"body":{"interfaces/ModelConfiguration.html":{}}}],["modelid",{"_index":3639,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["modelist.j",{"_index":152,"title":{},"body":{"components/AceComponent.html":{}}}],["modelresourc",{"_index":2046,"title":{},"body":{"injectables/HistoryService.html":{}}}],["models[model",{"_index":3184,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["modifi",{"_index":1072,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"components/InputComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["modified'].indexof(key",{"_index":1140,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["modul",{"_index":322,"title":{"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"modules.html":{}},"body":{"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["module'",{"_index":649,"title":{},"body":{"injectables/AuthService.html":{},"injectables/NotificationsService.html":{},"injectables/SdkService.html":{}}}],["module(",{"_index":5016,"title":{},"body":{"additional-documentation/stackblitz.html":{}}}],["module.export",{"_index":4653,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["modulewithprovid",{"_index":630,"title":{},"body":{"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/LocationModule.html":{}}}],["moment",{"_index":1210,"title":{},"body":{"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"injectables/TypeConfigService.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/readme.html":{}}}],["moment'",{"_index":1343,"title":{},"body":{"interfaces/Day.html":{}}}],["moment().startof('day').diff(d",{"_index":1342,"title":{},"body":{"interfaces/Day.html":{}}}],["moment(new",{"_index":4332,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["moment(valu",{"_index":1230,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["moment(value).format('yyyi",{"_index":4726,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["moment(value).format(format",{"_index":4350,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["moment(value).format(pattern",{"_index":1234,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["moment(value).format(this.symbol.resolve('moment.format.month",{"_index":4352,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["moment(value).isvalid",{"_index":4328,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["moment.format.d",{"_index":795,"title":{},"body":{"modules/CalendarModule.html":{},"modules/FormModule.html":{},"injectables/TypeConfigService.html":{}}}],["moment.format.month",{"_index":799,"title":{},"body":{"modules/CalendarModule.html":{},"modules/FormModule.html":{},"injectables/TypeConfigService.html":{}}}],["moment.format.tim",{"_index":797,"title":{},"body":{"modules/CalendarModule.html":{},"modules/FormModule.html":{},"injectables/TypeConfigService.html":{}}}],["moment.locale('d",{"_index":4720,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["moment.locale(this.symbols.resolve('moment.locale'));us",{"_index":4085,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["moment.mo",{"_index":1194,"title":{},"body":{"components/DatetimeComponent.html":{},"interfaces/Day.html":{}}}],["monorepo",{"_index":4548,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["month",{"_index":805,"title":{},"body":{"modules/CalendarModule.html":{},"interfaces/Day.html":{}}}],["month'},{'nam",{"_index":263,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["month.component.html",{"_index":1249,"title":{},"body":{"interfaces/Day.html":{}}}],["monthcompon",{"_index":262,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/CalendarModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["monthformat",{"_index":1265,"title":{},"body":{"interfaces/Day.html":{}}}],["more",{"_index":658,"title":{},"body":{"injectables/AuthService.html":{},"classes/Collection.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"injectables/SymbolPipe.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["mouseout",{"_index":2954,"title":{},"body":{"components/MenuComponent.html":{}}}],["mouseov",{"_index":2947,"title":{},"body":{"components/MenuComponent.html":{}}}],["mouseover(day",{"_index":1305,"title":{},"body":{"interfaces/Day.html":{}}}],["mouseup(day",{"_index":1304,"title":{},"body":{"interfaces/Day.html":{}}}],["move",{"_index":816,"title":{},"body":{"classes/Collection.html":{},"additional-documentation/adding-new-packages.html":{}}}],["move(item",{"_index":852,"title":{},"body":{"classes/Collection.html":{}}}],["ms",{"_index":2244,"title":{},"body":{"components/InputComponent.html":{},"classes/Notification.html":{}}}],["muffin",{"_index":3092,"title":{},"body":{"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["muffin.entry?.nam",{"_index":1537,"title":{},"body":{"directives/EntryDirective.html":{}}}],["muffin.nam",{"_index":1497,"title":{},"body":{"directives/EntriesDirective.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["muffincompon",{"_index":3235,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["muffinconfigur",{"_index":4765,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["muffins/muffins.compon",{"_index":4713,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["muffinsadd",{"_index":4708,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["muffinscompon",{"_index":4712,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["multi",{"_index":29,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"modules/SelectModule.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["multipl",{"_index":1062,"title":{},"body":{"interfaces/CrudConfig.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"classes/Sorter.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["mustreload",{"_index":931,"title":{},"body":{"components/CrudComponent.html":{}}}],["mustreload(item",{"_index":958,"title":{},"body":{"components/CrudComponent.html":{}}}],["mutabl",{"_index":3151,"title":{},"body":{"injectables/ModelConfigService.html":{},"interfaces/SdkField.html":{}}}],["myapp",{"_index":2614,"title":{},"body":{"components/LoaderComponent.html":{}}}],["myasset.asset?.assetid",{"_index":462,"title":{},"body":{"directives/AssetDirective.html":{}}}],["myasset.asset?.cr",{"_index":465,"title":{},"body":{"directives/AssetDirective.html":{}}}],["myasset.asset?.files?.length",{"_index":467,"title":{},"body":{"directives/AssetDirective.html":{}}}],["myasset.asset?.tag",{"_index":464,"title":{},"body":{"directives/AssetDirective.html":{}}}],["myasset.asset?.titl",{"_index":463,"title":{},"body":{"directives/AssetDirective.html":{}}}],["myasset.asset?.typ",{"_index":466,"title":{},"body":{"directives/AssetDirective.html":{}}}],["myclient",{"_index":775,"title":{},"body":{"injectables/AuthService.html":{}}}],["mycompon",{"_index":3218,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["myimage.asset?.assetid",{"_index":2147,"title":{},"body":{"directives/ImageDirective.html":{}}}],["name",{"_index":92,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"miscellaneous/functions.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["name[0].touppercas",{"_index":4724,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["namespac",{"_index":1995,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["nativ",{"_index":2140,"title":{},"body":{"directives/ImageDirective.html":{}}}],["natur",{"_index":4043,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["navig",{"_index":4575,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["navigationend",{"_index":4179,"title":{},"body":{"components/TabsComponent.html":{}}}],["nearest",{"_index":1990,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["need",{"_index":1067,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/InputComponent.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["nest",{"_index":1061,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MenuComponent.html":{},"components/OutputComponent.html":{},"components/TabsComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["nestedcrudconfig",{"_index":4303,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["nestedpopact",{"_index":1033,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["never",{"_index":4616,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["new",{"_index":76,"title":{"additional-documentation/adding-new-packages.html":{}},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["newdat",{"_index":1363,"title":{},"body":{"interfaces/Day.html":{}}}],["newdate.isbetween(this.timespan[0",{"_index":1365,"title":{},"body":{"interfaces/Day.html":{}}}],["newhistori",{"_index":2073,"title":{},"body":{"injectables/HistoryService.html":{}}}],["newli",{"_index":3862,"title":{},"body":{"interfaces/SdkField.html":{}}}],["newprojectroot",{"_index":4993,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["newtimespan",{"_index":1287,"title":{},"body":{"interfaces/Day.html":{}}}],["newtimespan.revers",{"_index":1292,"title":{},"body":{"interfaces/Day.html":{}}}],["newtimespan[0].isafter(newtimespan[1",{"_index":1291,"title":{},"body":{"interfaces/Day.html":{}}}],["newtimespan[this.dragged.first",{"_index":1289,"title":{},"body":{"interfaces/Day.html":{}}}],["next",{"_index":520,"title":{},"body":{"components/AssetListComponent.html":{},"guards/AuthGuard.html":{},"classes/Collection.html":{},"directives/EntriesDirective.html":{},"directives/FocusDirective.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/LoginComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["ng",{"_index":4573,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["ng_value_accessor",{"_index":26,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"modules/SelectModule.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["ngaftercontentinit",{"_index":4167,"title":{},"body":{"components/TabsComponent.html":{}}}],["ngafterviewinit",{"_index":1858,"title":{},"body":{"interfaces/Focus.html":{},"components/LocationSearchComponent.html":{},"components/TinymceComponent.html":{}}}],["ngif",{"_index":1558,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"components/TabsComponent.html":{}}}],["ngmodel",{"_index":4659,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["ngmodul",{"_index":334,"title":{},"body":{"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["ngmodule(acemoduleconfig",{"_index":337,"title":{},"body":{"modules/AceModule.html":{}}}],["ngmodule(calendarmoduleconfig",{"_index":802,"title":{},"body":{"modules/CalendarModule.html":{}}}],["ngmodule(datamoduleconfig",{"_index":1185,"title":{},"body":{"modules/DataModule.html":{}}}],["ngmodule(formmoduleconfig",{"_index":1908,"title":{},"body":{"modules/FormModule.html":{}}}],["ngmodule(listmoduleconfig",{"_index":2591,"title":{},"body":{"modules/ListModule.html":{}}}],["ngmodule(locationmoduleconfig",{"_index":2705,"title":{},"body":{"modules/LocationModule.html":{}}}],["ngmodule(mediummoduleconfig",{"_index":2920,"title":{},"body":{"modules/MediumEditorModule.html":{}}}],["ngmodule(popmoduleconfig",{"_index":3514,"title":{},"body":{"modules/PopModule.html":{}}}],["ngmodule(selectmoduleconfig",{"_index":3962,"title":{},"body":{"modules/SelectModule.html":{}}}],["ngmodule(tinymcemoduleconfig",{"_index":4288,"title":{},"body":{"modules/TinymceModule.html":{}}}],["ngmodule(uimoduleconfig",{"_index":4360,"title":{},"body":{"modules/UiModule.html":{}}}],["ngmodule(utilitymoduleconfig",{"_index":4478,"title":{},"body":{"modules/UtilityModule.html":{}}}],["ngonchang",{"_index":51,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["ngonchanges(chang",{"_index":533,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/Day.html":{},"components/ListComponent.html":{}}}],["ngondestroy",{"_index":2881,"title":{},"body":{"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["ngoninit",{"_index":52,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PaginationComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadSelectComponent.html":{}}}],["ngx",{"_index":634,"title":{},"body":{"modules/AuthModule.html":{},"modules/DataModule.html":{},"modules/SelectModule.html":{},"dependencies.html":{}}}],["ngzone",{"_index":1977,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationSearchComponent.html":{}}}],["nicht",{"_index":609,"title":{},"body":{"guards/AuthGuard.html":{}}}],["noapi",{"_index":3878,"title":{},"body":{"injectables/SdkService.html":{}}}],["noapi(api",{"_index":3891,"title":{},"body":{"injectables/SdkService.html":{}}}],["noclientid",{"_index":668,"title":{},"body":{"injectables/AuthService.html":{}}}],["noconflict/ac",{"_index":141,"title":{},"body":{"components/AceComponent.html":{}}}],["noconflict/ace.js';when",{"_index":4830,"title":{},"body":{"additional-documentation/readme/ace-readme.html":{}}}],["node",{"_index":4654,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["node_modul",{"_index":4563,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["node_modules/@ec.compon",{"_index":4554,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["node_modules/eventsource/lib/eventsource.j",{"_index":4628,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["node_modules/jsonpath",{"_index":4632,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["node_modules/tinymce/skins/lightgray/content.min.css",{"_index":4833,"title":{},"body":{"additional-documentation/readme/tinymce-readme.html":{}}}],["node_modules/tinymce/skins/lightgray/skin.min.css",{"_index":4832,"title":{},"body":{"additional-documentation/readme/tinymce-readme.html":{}}}],["non",{"_index":3034,"title":{},"body":{"components/ModalComponent.html":{},"injectables/SymbolService.html":{},"injectables/TypeConfigService.html":{}}}],["none",{"_index":2557,"title":{},"body":{"components/ListItemsComponent.html":{},"components/NotificationsComponent.html":{}}}],["normal",{"_index":1405,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["notabl",{"_index":4834,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["note",{"_index":3431,"title":{},"body":{"classes/PaginationConfig.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["noth",{"_index":3099,"title":{},"body":{"injectables/ModelConfigService.html":{},"interfaces/Symbol.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["notif",{"_index":591,"title":{"classes/Notification.html":{}},"body":{"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/PasswordResetComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadComponent.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/adding-new-packages.html":{}}}],["notification(notif",{"_index":3298,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["notification.append",{"_index":3253,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.append.push(notif",{"_index":3254,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.component.t",{"_index":3244,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.error",{"_index":3208,"title":{},"body":{"classes/Notification.html":{},"injectables/NotificationsService.html":{}}}],["notification.hid",{"_index":3249,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.host",{"_index":3258,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.messag",{"_index":3252,"title":{},"body":{"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{}}}],["notification.replac",{"_index":3255,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.replace.length",{"_index":3256,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.replace.push(notif",{"_index":3257,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notification.sticki",{"_index":3260,"title":{},"body":{"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{}}}],["notification.tim",{"_index":3261,"title":{},"body":{"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{}}}],["notification.titl",{"_index":3251,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notificationcompon",{"_index":3188,"title":{},"body":{"classes/Notification.html":{}}}],["notifications'},{'nam",{"_index":265,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["notifications.compon",{"_index":3207,"title":{},"body":{"classes/Notification.html":{},"modules/NotificationsModule.html":{}}}],["notifications.component.html",{"_index":3212,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notifications.interfac",{"_index":5004,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["notifications.interface.t",{"_index":4493,"title":{},"body":{"interfaces/WithNotifications.html":{}}}],["notifications.servic",{"_index":3245,"title":{},"body":{"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{}}}],["notifications/notifications.modul",{"_index":4357,"title":{},"body":{"modules/UiModule.html":{}}}],["notificationscompon",{"_index":264,"title":{"components/NotificationsComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["notificationservic",{"_index":937,"title":{},"body":{"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"components/LoginComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{}}}],["notificationservice.$emitt",{"_index":3210,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["notificationsmodul",{"_index":3264,"title":{"modules/NotificationsModule.html":{}},"body":{"modules/NotificationsModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["notificationsservic",{"_index":592,"title":{"injectables/NotificationsService.html":{}},"body":{"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"components/LoginComponent.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/PasswordResetComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{},"overview.html":{}}}],["now",{"_index":2228,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"injectables/SdkService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["npm",{"_index":4560,"title":{},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{}}}],["nth",{"_index":2868,"title":{},"body":{"pipes/MaxItemsPipe.html":{}}}],["null",{"_index":880,"title":{},"body":{"classes/Collection.html":{},"injectables/CrudService.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"components/InputComponent.html":{},"injectables/ListConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"interfaces/Update.html":{}}}],["number",{"_index":445,"title":{},"body":{"directives/AssetDirective.html":{},"classes/Collection.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"directives/EntryDirective.html":{},"classes/Field.html":{},"injectables/GeocodeService.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/LocationMapComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"classes/PaginationConfig.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"classes/Sorter.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"miscellaneous/functions.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["numbers.add(4",{"_index":836,"title":{},"body":{"classes/Collection.html":{}}}],["numbers.addall([5",{"_index":839,"title":{},"body":{"classes/Collection.html":{}}}],["numbers.has(2",{"_index":844,"title":{},"body":{"classes/Collection.html":{}}}],["numbers.has([1,2",{"_index":847,"title":{},"body":{"classes/Collection.html":{}}}],["numbers.remove(4",{"_index":856,"title":{},"body":{"classes/Collection.html":{}}}],["numbers.removeal",{"_index":859,"title":{},"body":{"classes/Collection.html":{}}}],["numer",{"_index":4046,"title":{},"body":{"classes/Sorter.html":{}}}],["oauth",{"_index":3676,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["object",{"_index":686,"title":{},"body":{"injectables/AuthService.html":{},"classes/Config.html":{},"injectables/CrudService.html":{},"interfaces/Day.html":{},"components/DynamicSlotComponent.html":{},"classes/Field.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ModelConfig.html":{},"interfaces/ModelConfiguration.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["object.assign",{"_index":908,"title":{},"body":{"classes/Config.html":{},"modules/DataModule.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["object.assign(componentref.inst",{"_index":1465,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["object.assign(config",{"_index":4343,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["object.assign(entri",{"_index":1132,"title":{},"body":{"injectables/CrudService.html":{}}}],["object.assign(merg",{"_index":3146,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["object.assign(resourc",{"_index":3853,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["object.assign(thi",{"_index":1708,"title":{},"body":{"classes/Field.html":{},"classes/Notification.html":{},"classes/PaginationConfig.html":{}}}],["object.assign(this.config",{"_index":2413,"title":{},"body":{"components/ListComponent.html":{},"classes/Pagination.html":{}}}],["object.assign(this.config[key][properti",{"_index":916,"title":{},"body":{"classes/Config.html":{}}}],["object.assign(this.get(model",{"_index":3164,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["object.assign(this.stringfield('model",{"_index":3640,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["object.assign(this.stringfield('nam",{"_index":3628,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["object.assign(this.tagsfield('right",{"_index":3636,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["object.assign(this.types[typ",{"_index":4348,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["object.keys(customfieldconfig",{"_index":3175,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["object.keys(fieldconfig",{"_index":3133,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["object.keys(fieldconfig).map(properti",{"_index":3148,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["object.keys(filt",{"_index":3836,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["object.keys(item.config.fields).reduce((equ",{"_index":990,"title":{},"body":{"components/CrudComponent.html":{}}}],["object.keys(permiss",{"_index":743,"title":{},"body":{"injectables/AuthService.html":{}}}],["object.keys(symbolservice.sets).length",{"_index":4118,"title":{},"body":{"injectables/SymbolService.html":{}}}],["object.keys(this.config",{"_index":3613,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["object.keys(this.control.errors).reduce((err",{"_index":2310,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["object.keys(this.sets).length",{"_index":4136,"title":{},"body":{"injectables/SymbolService.html":{}}}],["object.keys(value).foreach((key",{"_index":1129,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["object.keys(variables).foreach((key",{"_index":732,"title":{},"body":{"injectables/AuthService.html":{}}}],["observ",{"_index":538,"title":{},"body":{"components/AssetListComponent.html":{},"classes/Collection.html":{},"injectables/CrudService.html":{},"components/EntryListPopComponent.html":{},"injectables/GeocodeService.html":{},"components/LoginFormComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["observable(observ",{"_index":1996,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["observable.throw(err",{"_index":2856,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["observeel",{"_index":1974,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["observeelement(el",{"_index":1991,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["observer.complet",{"_index":2010,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["observer.next(coord",{"_index":2009,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["obsolet",{"_index":3241,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["obtain",{"_index":3084,"title":{},"body":{"injectables/ModelConfigService.html":{},"interfaces/SdkField.html":{}}}],["occur",{"_index":2766,"title":{},"body":{"components/LoginComponent.html":{},"components/SignupComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["ok",{"_index":2018,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["old",{"_index":1116,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["oldassetgroupid",{"_index":1748,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["oldvalu",{"_index":1128,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["oldvalues[key",{"_index":1130,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["omit",{"_index":3115,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/SdkService.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["omittedfield",{"_index":3073,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["on",{"_index":519,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/CrudConfig.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["onchang",{"_index":22,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["ondestroy",{"_index":2878,"title":{},"body":{"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["ondragleave(",{"_index":1431,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["ondragover(",{"_index":1421,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["ondrop(",{"_index":1426,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["onedit",{"_index":2327,"title":{},"body":{"interfaces/ItemConfig.html":{}}}],["oninit",{"_index":21,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PaginationComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["onsav",{"_index":2188,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"interfaces/ItemConfig.html":{},"injectables/ModelConfigService.html":{}}}],["onsubmit",{"_index":2794,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["open",{"_index":1039,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/IconComponent.html":{},"components/ListHeaderComponent.html":{},"components/ModalComponent.html":{},"injectables/PopService.html":{},"components/ResourceCrudComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["openid",{"_index":3663,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["openinghour",{"_index":4791,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["openinghourscompon",{"_index":4799,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["oper",{"_index":527,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/CrudConfig.html":{},"classes/Field.html":{},"injectables/GeocodeService.html":{},"classes/Sorter.html":{},"interfaces/WithLoader.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["option",{"_index":93,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithNotifications.html":{},"miscellaneous/functions.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/style-changelog.html":{}}}],["option.label?option.label:opt",{"_index":1385,"title":{},"body":{"components/DefaultInputComponent.html":{}}}],["options[key",{"_index":1776,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["options](https://github.com/yabwe/medium",{"_index":2900,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["origin",{"_index":2207,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["original.resolut",{"_index":2210,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["other",{"_index":2524,"title":{},"body":{"components/ListHeaderComponent.html":{},"classes/Notification.html":{},"additional-documentation/adding-new-packages.html":{}}}],["otherwis",{"_index":1100,"title":{},"body":{"injectables/CrudService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["ouput",{"_index":2173,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{}}}],["out",{"_index":331,"title":{},"body":{"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"components/ResourceCrudComponent.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"index.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["outlin",{"_index":4744,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["output",{"_index":435,"title":{},"body":{"directives/AssetDirective.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/OutputComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["output'},{'nam",{"_index":210,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["output('toggl",{"_index":3490,"title":{},"body":{"components/PopComponent.html":{}}}],["output.compon",{"_index":1173,"title":{},"body":{"modules/DataModule.html":{},"modules/FormModule.html":{},"components/OutputComponent.html":{},"injectables/TypeConfigService.html":{}}}],["output.component.html",{"_index":1374,"title":{},"body":{"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{}}}],["output.component.t",{"_index":1373,"title":{},"body":{"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{}}}],["output.component.ts:11",{"_index":1375,"title":{},"body":{"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{}}}],["output.component.ts:13",{"_index":1376,"title":{},"body":{"components/DefaultEntryOutputComponent.html":{},"components/DefaultOutputComponent.html":{}}}],["output/default",{"_index":1386,"title":{},"body":{"components/DefaultOutputComponent.html":{},"modules/FormModule.html":{},"components/OutputComponent.html":{}}}],["output/output.compon",{"_index":2320,"title":{},"body":{"modules/IoModule.html":{}}}],["outputcompon",{"_index":266,"title":{"components/OutputComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["outsid",{"_index":107,"title":{},"body":{"components/AceComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/LoaderComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"directives/SlotHostDirective.html":{},"components/TinymceComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["over",{"_index":2308,"title":{},"body":{"components/InputErrorsComponent.html":{},"classes/Pagination.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["overlay",{"_index":3048,"title":{},"body":{"components/ModalComponent.html":{}}}],["overrid",{"_index":2102,"title":{},"body":{"components/IconComponent.html":{},"components/InputComponent.html":{}}}],["overridden",{"_index":2857,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["overriden",{"_index":3072,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/SymbolService.html":{}}}],["overview",{"_index":4592,"title":{"overview.html":{}},"body":{"overview.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{}}}],["overwrit",{"_index":4087,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["overwritten",{"_index":2829,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["p",{"_index":4991,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["p.method",{"_index":3708,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["packag",{"_index":4495,"title":{"dependencies.html":{},"additional-documentation/adding-new-packages.html":{}},"body":{"changelog.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["package(",{"_index":5015,"title":{},"body":{"additional-documentation/stackblitz.html":{}}}],["package.json",{"_index":4612,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/adding-new-packages.html":{}}}],["packages/.../actionbar.component.t",{"_index":4599,"title":{},"body":{"miscellaneous/typealiases.html":{}}}],["packages/.../auth.module.t",{"_index":4533,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/.../sorter.t",{"_index":4534,"title":{},"body":{"miscellaneous/functions.html":{}}}],["packages/ace/src/lib/ace.component.t",{"_index":10,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:102",{"_index":105,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:112",{"_index":120,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:116",{"_index":87,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:120",{"_index":95,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:29",{"_index":114,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:33",{"_index":125,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:37",{"_index":122,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:39",{"_index":116,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:43",{"_index":112,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:47",{"_index":72,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:51",{"_index":73,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:54",{"_index":74,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:75",{"_index":97,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:84",{"_index":102,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:93",{"_index":85,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.component.ts:97",{"_index":83,"title":{},"body":{"components/AceComponent.html":{}}}],["packages/ace/src/lib/ace.module.t",{"_index":332,"title":{},"body":{"modules/AceModule.html":{}}}],["packages/calendar/src/lib/calendar.module.t",{"_index":781,"title":{},"body":{"modules/CalendarModule.html":{}}}],["packages/calendar/src/lib/calendar.module.ts:46",{"_index":787,"title":{},"body":{"modules/CalendarModule.html":{}}}],["packages/calendar/src/lib/calendar/month.component.t",{"_index":1235,"title":{},"body":{"interfaces/Day.html":{}}}],["packages/calendar/src/lib/datetime.pipe.t",{"_index":1215,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["packages/calendar/src/lib/datetime.pipe.ts:12",{"_index":1222,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["packages/core/src/lib/collection/collection.t",{"_index":810,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:10",{"_index":827,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:106",{"_index":855,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:12",{"_index":830,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:123",{"_index":858,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:138",{"_index":863,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:14",{"_index":822,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:147",{"_index":861,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:160",{"_index":850,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:165",{"_index":853,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:31",{"_index":849,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:42",{"_index":843,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:53",{"_index":846,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:71",{"_index":834,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/collection/collection.ts:89",{"_index":838,"title":{},"body":{"classes/Collection.html":{}}}],["packages/core/src/lib/config/config.t",{"_index":896,"title":{},"body":{"classes/Config.html":{}}}],["packages/core/src/lib/config/config.ts:13",{"_index":900,"title":{},"body":{"classes/Config.html":{}}}],["packages/core/src/lib/config/config.ts:5",{"_index":898,"title":{},"body":{"classes/Config.html":{}}}],["packages/core/src/lib/config/field",{"_index":1718,"title":{},"body":{"interfaces/FieldConfig.html":{}}}],["packages/core/src/lib/field/field.t",{"_index":1626,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:11",{"_index":1648,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:13",{"_index":1666,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:15",{"_index":1669,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:17",{"_index":1667,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:19",{"_index":1653,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:21",{"_index":1659,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:23",{"_index":1660,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:25",{"_index":1654,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:27",{"_index":1641,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:29",{"_index":1644,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:31",{"_index":1645,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:33",{"_index":1668,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:35",{"_index":1639,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:37",{"_index":1652,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:39",{"_index":1665,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:41",{"_index":1640,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:43",{"_index":1655,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:45",{"_index":1650,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:47",{"_index":1638,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:59",{"_index":1673,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:63",{"_index":1670,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:7",{"_index":1663,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/field/field.ts:9",{"_index":1661,"title":{},"body":{"classes/Field.html":{}}}],["packages/core/src/lib/form/form",{"_index":1871,"title":{},"body":{"interfaces/FormConfig.html":{}}}],["packages/core/src/lib/item/item",{"_index":2324,"title":{},"body":{"interfaces/ItemConfig.html":{}}}],["packages/core/src/lib/list/list",{"_index":2445,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["packages/core/src/lib/pagination/pagination.t",{"_index":3319,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:107",{"_index":3338,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:11",{"_index":3331,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:112",{"_index":3339,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:117",{"_index":3340,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:125",{"_index":3355,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:13",{"_index":3328,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:130",{"_index":3345,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:142",{"_index":3358,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:15",{"_index":3326,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:33",{"_index":3335,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:38",{"_index":3336,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:43",{"_index":3344,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:52",{"_index":3346,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:63",{"_index":3351,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:7",{"_index":3332,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:76",{"_index":3343,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:84",{"_index":3349,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:9",{"_index":3330,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:93",{"_index":3334,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/pagination/pagination.ts:98",{"_index":3341,"title":{},"body":{"classes/Pagination.html":{}}}],["packages/core/src/lib/sorter/sorter.t",{"_index":4029,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["packages/core/src/lib/sorter/sorter.ts:25",{"_index":4036,"title":{},"body":{"classes/Sorter.html":{}}}],["packages/core/src/lib/sorter/sorter.ts:32",{"_index":4038,"title":{},"body":{"classes/Sorter.html":{}}}],["packages/core/src/lib/sorter/sorter.ts:62",{"_index":4041,"title":{},"body":{"classes/Sorter.html":{}}}],["packages/data/dist",{"_index":4997,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["packages/data/lib",{"_index":4998,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["packages/data/package.json#nam",{"_index":4994,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["packages/data/src/lib/asset",{"_index":485,"title":{},"body":{"components/AssetListComponent.html":{}}}],["packages/data/src/lib/auth/auth",{"_index":580,"title":{},"body":{"guards/AuthGuard.html":{}}}],["packages/data/src/lib/auth/auth.module.t",{"_index":625,"title":{},"body":{"modules/AuthModule.html":{},"miscellaneous/functions.html":{}}}],["packages/data/src/lib/auth/auth.service.t",{"_index":645,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:113",{"_index":681,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:135",{"_index":698,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:147",{"_index":695,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:157",{"_index":689,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:171",{"_index":696,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:24",{"_index":672,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:31",{"_index":692,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:45",{"_index":703,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:58",{"_index":679,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:67",{"_index":675,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:74",{"_index":700,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/auth.service.ts:82",{"_index":687,"title":{},"body":{"injectables/AuthService.html":{}}}],["packages/data/src/lib/auth/login/login.component.t",{"_index":2757,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:24",{"_index":2765,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:26",{"_index":2769,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:28",{"_index":2768,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:30",{"_index":2773,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:32",{"_index":2763,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:34",{"_index":2772,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:35",{"_index":2774,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:36",{"_index":2775,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/login/login.component.ts:39",{"_index":2770,"title":{},"body":{"components/LoginComponent.html":{}}}],["packages/data/src/lib/auth/password",{"_index":3435,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.t",{"_index":3963,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.ts:17",{"_index":3966,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.ts:19",{"_index":3968,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.ts:21",{"_index":3970,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.ts:23",{"_index":3975,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.ts:25",{"_index":3976,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/auth/signup/signup.component.ts:28",{"_index":3973,"title":{},"body":{"components/SignupComponent.html":{}}}],["packages/data/src/lib/crud/crud",{"_index":1017,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["packages/data/src/lib/crud/crud.component.t",{"_index":917,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:115",{"_index":964,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:33",{"_index":946,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:35",{"_index":945,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:37",{"_index":947,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:39",{"_index":970,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:41",{"_index":966,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:43",{"_index":972,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:45",{"_index":950,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:47",{"_index":951,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:49",{"_index":940,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:58",{"_index":974,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:59",{"_index":973,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:70",{"_index":962,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:79",{"_index":953,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:84",{"_index":959,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.component.ts:91",{"_index":956,"title":{},"body":{"components/CrudComponent.html":{}}}],["packages/data/src/lib/crud/crud.service.t",{"_index":1071,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:13",{"_index":1081,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:16",{"_index":1104,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:20",{"_index":1083,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:38",{"_index":1098,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:51",{"_index":1103,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:65",{"_index":1094,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:71",{"_index":1086,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:86",{"_index":1089,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/crud/crud.service.ts:98",{"_index":1092,"title":{},"body":{"injectables/CrudService.html":{}}}],["packages/data/src/lib/data.module.t",{"_index":1159,"title":{},"body":{"modules/DataModule.html":{}}}],["packages/data/src/lib/data.module.ts:94",{"_index":1162,"title":{},"body":{"modules/DataModule.html":{}}}],["packages/data/src/lib/entri",{"_index":398,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/EntryListPopComponent.html":{}}}],["packages/data/src/lib/entries/entries.directive.t",{"_index":1466,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:100",{"_index":1485,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:108",{"_index":1483,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:22",{"_index":1495,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:24",{"_index":1480,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:26",{"_index":1482,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:28",{"_index":1478,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:30",{"_index":1475,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:32",{"_index":1479,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:34",{"_index":1493,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:35",{"_index":1474,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:40",{"_index":1496,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:41",{"_index":1494,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:45",{"_index":1489,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:58",{"_index":1487,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:71",{"_index":1492,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:82",{"_index":1488,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:89",{"_index":1490,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entries/entries.directive.ts:96",{"_index":1486,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.t",{"_index":1523,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:19",{"_index":1535,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:21",{"_index":1527,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:23",{"_index":1530,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:25",{"_index":1526,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:27",{"_index":1528,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:29",{"_index":1531,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:31",{"_index":1529,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:33",{"_index":1525,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:37",{"_index":1536,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:38",{"_index":1534,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:42",{"_index":1533,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/entry/entry.directive.ts:50",{"_index":1532,"title":{},"body":{"directives/EntryDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.t",{"_index":427,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:16",{"_index":458,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:18",{"_index":441,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:20",{"_index":444,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:22",{"_index":443,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:24",{"_index":446,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:26",{"_index":440,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:28",{"_index":450,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:30",{"_index":436,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:33",{"_index":459,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:37",{"_index":456,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/asset/asset.directive.ts:48",{"_index":452,"title":{},"body":{"directives/AssetDirective.html":{}}}],["packages/data/src/lib/files/assetgroup",{"_index":551,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.t",{"_index":1392,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:11",{"_index":1406,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:13",{"_index":1416,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:24",{"_index":1418,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:37",{"_index":1413,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:46",{"_index":1402,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:7",{"_index":1408,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/dropzone/dropzone.directive.ts:9",{"_index":1407,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["packages/data/src/lib/files/file.service.t",{"_index":1720,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["packages/data/src/lib/files/files.module.t",{"_index":1842,"title":{},"body":{"modules/FilesModule.html":{}}}],["packages/data/src/lib/files/imag",{"_index":2164,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["packages/data/src/lib/files/image/image.directive.t",{"_index":2124,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:14",{"_index":2137,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:16",{"_index":2135,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:18",{"_index":2132,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:20",{"_index":2131,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:22",{"_index":2146,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:27",{"_index":2141,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:39",{"_index":2138,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:43",{"_index":2145,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/image/image.directive.ts:60",{"_index":2143,"title":{},"body":{"directives/ImageDirective.html":{}}}],["packages/data/src/lib/files/upload",{"_index":4432,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.t",{"_index":4361,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:16",{"_index":4389,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:17",{"_index":4396,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:18",{"_index":4393,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:20",{"_index":4375,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:22",{"_index":4372,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:24",{"_index":4370,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:26",{"_index":4371,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:28",{"_index":4374,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:30",{"_index":4369,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:32",{"_index":4378,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:34",{"_index":4376,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:36",{"_index":4391,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:38",{"_index":4395,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:40",{"_index":4368,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:49",{"_index":4385,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:59",{"_index":4383,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:65",{"_index":4380,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:73",{"_index":4381,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:80",{"_index":4388,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/files/upload/upload.component.ts:99",{"_index":4387,"title":{},"body":{"components/UploadComponent.html":{}}}],["packages/data/src/lib/model",{"_index":3067,"title":{},"body":{"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"interfaces/SdkField.html":{},"injectables/TypeConfigService.html":{}}}],["packages/data/src/lib/resourc",{"_index":3532,"title":{},"body":{"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["packages/data/src/lib/resource/resource.module.t",{"_index":3801,"title":{},"body":{"modules/ResourceModule.html":{}}}],["packages/data/src/lib/sdk/history.service.t",{"_index":2033,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:15",{"_index":2056,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:17",{"_index":2039,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:20",{"_index":2055,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:21",{"_index":2054,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:22",{"_index":2059,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:23",{"_index":2058,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:26",{"_index":2051,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:42",{"_index":2041,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/history.service.ts:52",{"_index":2047,"title":{},"body":{"injectables/HistoryService.html":{}}}],["packages/data/src/lib/sdk/sdk.module.t",{"_index":3866,"title":{},"body":{"modules/SdkModule.html":{}}}],["packages/data/src/lib/sdk/sdk.service.t",{"_index":3868,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:111",{"_index":3894,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:121",{"_index":3885,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:132",{"_index":3882,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:144",{"_index":3892,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:34",{"_index":3898,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:36",{"_index":3905,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:37",{"_index":3910,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:47",{"_index":3907,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:49",{"_index":3897,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:51",{"_index":3896,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:53",{"_index":3899,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:55",{"_index":3911,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:62",{"_index":3913,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:67",{"_index":3901,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:69",{"_index":3908,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:71",{"_index":3906,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:78",{"_index":3881,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:81",{"_index":3903,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/data/src/lib/sdk/sdk.service.ts:88",{"_index":3889,"title":{},"body":{"injectables/SdkService.html":{}}}],["packages/location/src/lib/geocode.service.t",{"_index":1968,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["packages/location/src/lib/geocode.service.ts:12",{"_index":1978,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["packages/location/src/lib/geocode.service.ts:18",{"_index":1992,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["packages/location/src/lib/geocode.service.ts:43",{"_index":1981,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["packages/location/src/lib/geocode.service.ts:49",{"_index":1984,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["packages/location/src/lib/geocode.service.ts:62",{"_index":1989,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["packages/location/src/lib/loc",{"_index":2654,"title":{},"body":{"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{}}}],["packages/location/src/lib/location.module.t",{"_index":2689,"title":{},"body":{"modules/LocationModule.html":{}}}],["packages/location/src/lib/location.module.ts:34",{"_index":2693,"title":{},"body":{"modules/LocationModule.html":{}}}],["packages/medium",{"_index":2872,"title":{},"body":{"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{}}}],["packages/styl",{"_index":4552,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["packages/tinymce/src/lib/tinymce.module.t",{"_index":4285,"title":{},"body":{"modules/TinymceModule.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.t",{"_index":4201,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:103",{"_index":4227,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:133",{"_index":4225,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:138",{"_index":4232,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:145",{"_index":4235,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:147",{"_index":4230,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:151",{"_index":4231,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:48",{"_index":4236,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:50",{"_index":4234,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:52",{"_index":4233,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:54",{"_index":4237,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:56",{"_index":4215,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:58",{"_index":4219,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:60",{"_index":4218,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:62",{"_index":4220,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:65",{"_index":4223,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:67",{"_index":4210,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:85",{"_index":4228,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:91",{"_index":4226,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/tinymce/src/lib/tinymce/tinymce.component.ts:98",{"_index":4229,"title":{},"body":{"components/TinymceComponent.html":{}}}],["packages/ui",{"_index":4804,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["packages/ui/src/lib/actionbar/actionbar.component.t",{"_index":340,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"miscellaneous/typealiases.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.t",{"_index":1186,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:24",{"_index":1195,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:26",{"_index":1197,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:28",{"_index":1204,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:30",{"_index":1207,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:32",{"_index":1196,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:34",{"_index":1199,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:37",{"_index":1202,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:42",{"_index":1205,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:46",{"_index":1200,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/datetime/datetime.component.ts:51",{"_index":1201,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["packages/ui/src/lib/form/default",{"_index":1378,"title":{},"body":{"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{}}}],["packages/ui/src/lib/form/form.module.t",{"_index":1892,"title":{},"body":{"modules/FormModule.html":{}}}],["packages/ui/src/lib/form/form.service.t",{"_index":1909,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:16",{"_index":1918,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:19",{"_index":1938,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:24",{"_index":1932,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:35",{"_index":1926,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:48",{"_index":1920,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:56",{"_index":1928,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:68",{"_index":1935,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/form.service.ts:83",{"_index":1923,"title":{},"body":{"injectables/FormService.html":{}}}],["packages/ui/src/lib/form/max",{"_index":2865,"title":{},"body":{"pipes/MaxItemsPipe.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.t",{"_index":4289,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:19",{"_index":4300,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:21",{"_index":4292,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:24",{"_index":4296,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:29",{"_index":4297,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:33",{"_index":4299,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:36",{"_index":4293,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/toggle/toggle.component.ts:40",{"_index":4294,"title":{},"body":{"components/ToggleComponent.html":{}}}],["packages/ui/src/lib/form/vis",{"_index":4479,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["packages/ui/src/lib/icon/icon.component.t",{"_index":2080,"title":{},"body":{"components/IconComponent.html":{}}}],["packages/ui/src/lib/icon/icon.component.ts:17",{"_index":2090,"title":{},"body":{"components/IconComponent.html":{}}}],["packages/ui/src/lib/icon/icon.component.ts:19",{"_index":2089,"title":{},"body":{"components/IconComponent.html":{}}}],["packages/ui/src/lib/icon/icon.component.ts:23",{"_index":2093,"title":{},"body":{"components/IconComponent.html":{}}}],["packages/ui/src/lib/icon/icon.component.ts:29",{"_index":2092,"title":{},"body":{"components/IconComponent.html":{}}}],["packages/ui/src/lib/icon/icon.component.ts:32",{"_index":2091,"title":{},"body":{"components/IconComponent.html":{}}}],["packages/ui/src/lib/icon/icon.module.t",{"_index":2119,"title":{},"body":{"modules/IconModule.html":{}}}],["packages/ui/src/lib/icon/icon.service.t",{"_index":2121,"title":{},"body":{"injectables/IconService.html":{}}}],["packages/ui/src/lib/icon/icon.service.ts:11",{"_index":2123,"title":{},"body":{"injectables/IconService.html":{}}}],["packages/ui/src/lib/io/dynam",{"_index":1432,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{}}}],["packages/ui/src/lib/io/input",{"_index":2298,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.t",{"_index":2236,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:102",{"_index":2256,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:109",{"_index":2265,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:113",{"_index":2254,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:118",{"_index":2255,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:23",{"_index":2247,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:25",{"_index":2243,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:27",{"_index":2251,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:29",{"_index":2245,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:31",{"_index":2246,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:33",{"_index":2249,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:35",{"_index":2248,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:37",{"_index":2241,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:39",{"_index":2240,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:42",{"_index":2258,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:44",{"_index":2266,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:46",{"_index":2253,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/input/input.component.ts:88",{"_index":2252,"title":{},"body":{"components/InputComponent.html":{}}}],["packages/ui/src/lib/io/io.module.t",{"_index":2319,"title":{},"body":{"modules/IoModule.html":{}}}],["packages/ui/src/lib/io/output/output.component.t",{"_index":3314,"title":{},"body":{"components/OutputComponent.html":{}}}],["packages/ui/src/lib/io/output/output.component.ts:14",{"_index":3315,"title":{},"body":{"components/OutputComponent.html":{}}}],["packages/ui/src/lib/io/output/output.component.ts:16",{"_index":3316,"title":{},"body":{"components/OutputComponent.html":{}}}],["packages/ui/src/lib/io/output/output.component.ts:20",{"_index":3317,"title":{},"body":{"components/OutputComponent.html":{}}}],["packages/ui/src/lib/io/slot",{"_index":4021,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["packages/ui/src/lib/list/group.pipe.t",{"_index":2028,"title":{},"body":{"pipes/GroupPipe.html":{}}}],["packages/ui/src/lib/list/group.pipe.ts:10",{"_index":2030,"title":{},"body":{"pipes/GroupPipe.html":{}}}],["packages/ui/src/lib/list/list",{"_index":2465,"title":{},"body":{"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{}}}],["packages/ui/src/lib/list/list.component.t",{"_index":2338,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:102",{"_index":2370,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:110",{"_index":2387,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:116",{"_index":2386,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:123",{"_index":2377,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:129",{"_index":2378,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:142",{"_index":2379,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:155",{"_index":2376,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:27",{"_index":2389,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:30",{"_index":2391,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:32",{"_index":2359,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:34",{"_index":2360,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:36",{"_index":2358,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:38",{"_index":2364,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:40",{"_index":2365,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:42",{"_index":2367,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:44",{"_index":2368,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:46",{"_index":2361,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:48",{"_index":2362,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:50",{"_index":2363,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:52",{"_index":2357,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:54",{"_index":2390,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:56",{"_index":2355,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:59",{"_index":2392,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:60",{"_index":2388,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:66",{"_index":2383,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.component.ts:75",{"_index":2382,"title":{},"body":{"components/ListComponent.html":{}}}],["packages/ui/src/lib/list/list.module.t",{"_index":2582,"title":{},"body":{"modules/ListModule.html":{}}}],["packages/ui/src/lib/list/pagination/pagin",{"_index":3423,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.t",{"_index":3384,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:15",{"_index":3389,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:17",{"_index":3397,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:19",{"_index":3403,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:21",{"_index":3400,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:23",{"_index":3388,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:26",{"_index":3394,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:31",{"_index":3392,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:39",{"_index":3391,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/list/pagination/pagination.component.ts:45",{"_index":3396,"title":{},"body":{"components/PaginationComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.t",{"_index":2592,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.ts:14",{"_index":2607,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.ts:16",{"_index":2608,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.ts:18",{"_index":2601,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.ts:25",{"_index":2603,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.ts:31",{"_index":2602,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.component.ts:38",{"_index":2605,"title":{},"body":{"components/LoaderComponent.html":{}}}],["packages/ui/src/lib/loader/loader.module.t",{"_index":2645,"title":{},"body":{"modules/LoaderModule.html":{}}}],["packages/ui/src/lib/loader/loader.service.t",{"_index":2648,"title":{},"body":{"injectables/LoaderService.html":{}}}],["packages/ui/src/lib/loader/loader.service.ts:11",{"_index":2650,"title":{},"body":{"injectables/LoaderService.html":{}}}],["packages/ui/src/lib/loader/loader.service.ts:16",{"_index":2651,"title":{},"body":{"injectables/LoaderService.html":{}}}],["packages/ui/src/lib/loader/loader.service.ts:8",{"_index":2652,"title":{},"body":{"injectables/LoaderService.html":{}}}],["packages/ui/src/lib/loader/with",{"_index":4489,"title":{},"body":{"interfaces/WithLoader.html":{}}}],["packages/ui/src/lib/modal/modal.component.t",{"_index":3012,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:18",{"_index":3051,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:27",{"_index":3038,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:29",{"_index":3028,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:31",{"_index":3026,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:33",{"_index":3033,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:35",{"_index":3030,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:37",{"_index":3032,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:39",{"_index":3047,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:41",{"_index":3031,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:43",{"_index":3023,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:46",{"_index":3045,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:47",{"_index":3044,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:48",{"_index":3043,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:52",{"_index":3039,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:72",{"_index":3042,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/modal/modal.component.ts:76",{"_index":3041,"title":{},"body":{"components/ModalComponent.html":{}}}],["packages/ui/src/lib/notifications/error/error.component.t",{"_index":1607,"title":{},"body":{"components/ErrorComponent.html":{}}}],["packages/ui/src/lib/notifications/error/error.component.ts:12",{"_index":1610,"title":{},"body":{"components/ErrorComponent.html":{}}}],["packages/ui/src/lib/notifications/error/error.component.ts:18",{"_index":1612,"title":{},"body":{"components/ErrorComponent.html":{}}}],["packages/ui/src/lib/notifications/error/error.component.ts:22",{"_index":1611,"title":{},"body":{"components/ErrorComponent.html":{}}}],["packages/ui/src/lib/notifications/error/error.component.ts:26",{"_index":1613,"title":{},"body":{"components/ErrorComponent.html":{}}}],["packages/ui/src/lib/notifications/notification.t",{"_index":3187,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:10",{"_index":3196,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:12",{"_index":3202,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:14",{"_index":3200,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:16",{"_index":3206,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:18",{"_index":3193,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:20",{"_index":3194,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:22",{"_index":3192,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:24",{"_index":3190,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:6",{"_index":3204,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notification.ts:8",{"_index":3197,"title":{},"body":{"classes/Notification.html":{}}}],["packages/ui/src/lib/notifications/notifications.component.t",{"_index":3209,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["packages/ui/src/lib/notifications/notifications.component.ts:19",{"_index":3214,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["packages/ui/src/lib/notifications/notifications.component.ts:21",{"_index":3213,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["packages/ui/src/lib/notifications/notifications.module.t",{"_index":3270,"title":{},"body":{"modules/NotificationsModule.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.t",{"_index":3273,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.ts:22",{"_index":3292,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.ts:24",{"_index":3294,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.ts:26",{"_index":3281,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.ts:34",{"_index":3288,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.ts:48",{"_index":3290,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/notifications.service.ts:61",{"_index":3283,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["packages/ui/src/lib/notifications/with",{"_index":4492,"title":{},"body":{"interfaces/WithNotifications.html":{}}}],["packages/ui/src/lib/pop/pop.component.t",{"_index":3469,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:29",{"_index":3475,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:31",{"_index":3484,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:33",{"_index":3477,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:35",{"_index":3476,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:37",{"_index":3478,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:39",{"_index":3485,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:42",{"_index":3479,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:52",{"_index":3474,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:55",{"_index":3486,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:61",{"_index":3481,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:67",{"_index":3483,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:77",{"_index":3482,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.component.ts:90",{"_index":3480,"title":{},"body":{"components/PopComponent.html":{}}}],["packages/ui/src/lib/pop/pop.module.t",{"_index":3511,"title":{},"body":{"modules/PopModule.html":{}}}],["packages/ui/src/lib/pop/pop.service.t",{"_index":3515,"title":{},"body":{"injectables/PopService.html":{}}}],["packages/ui/src/lib/pop/pop.service.ts:11",{"_index":3520,"title":{},"body":{"injectables/PopService.html":{}}}],["packages/ui/src/lib/pop/pop.service.ts:9",{"_index":3521,"title":{},"body":{"injectables/PopService.html":{}}}],["packages/ui/src/lib/select/select.module.t",{"_index":3958,"title":{},"body":{"modules/SelectModule.html":{}}}],["packages/ui/src/lib/symbol/symbol.interface.t",{"_index":4068,"title":{},"body":{"interfaces/Symbol.html":{}}}],["packages/ui/src/lib/symbol/symbol.module.t",{"_index":4076,"title":{},"body":{"modules/SymbolModule.html":{}}}],["packages/ui/src/lib/symbol/symbol.pipe.t",{"_index":4092,"title":{},"body":{"injectables/SymbolPipe.html":{}}}],["packages/ui/src/lib/symbol/symbol.pipe.ts:21",{"_index":4094,"title":{},"body":{"injectables/SymbolPipe.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.t",{"_index":4098,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:12",{"_index":4122,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:15",{"_index":4120,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:17",{"_index":4121,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:18",{"_index":4123,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:23",{"_index":4103,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:28",{"_index":4108,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:37",{"_index":4111,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:46",{"_index":4101,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:53",{"_index":4115,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:58",{"_index":4117,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:66",{"_index":4106,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:71",{"_index":4109,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/symbol/symbol.service.ts:77",{"_index":4113,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packages/ui/src/lib/ui.module.t",{"_index":4356,"title":{},"body":{"modules/UiModule.html":{}}}],["packages/ui/src/lib/utility/focus/focus.directive.t",{"_index":1860,"title":{},"body":{"directives/FocusDirective.html":{}}}],["packages/ui/src/lib/utility/focus/focus.directive.ts:13",{"_index":1863,"title":{},"body":{"directives/FocusDirective.html":{}}}],["packages/ui/src/lib/utility/focus/focus.directive.ts:8",{"_index":1862,"title":{},"body":{"directives/FocusDirective.html":{}}}],["packages/ui/src/lib/utility/focus/focus.interface.t",{"_index":1856,"title":{},"body":{"interfaces/Focus.html":{}}}],["packages/ui/src/lib/utility/focus/focus.interface.ts:6",{"_index":1859,"title":{},"body":{"interfaces/Focus.html":{}}}],["packages/ui/src/lib/utility/login",{"_index":2787,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.t",{"_index":2921,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:106",{"_index":2976,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:15",{"_index":2952,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:17",{"_index":2951,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:19",{"_index":2953,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:21",{"_index":2950,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:23",{"_index":2945,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:25",{"_index":2956,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:27",{"_index":2949,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:29",{"_index":2980,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:31",{"_index":2939,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:38",{"_index":2979,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:48",{"_index":2970,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:53",{"_index":2978,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:59",{"_index":2964,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:64",{"_index":2960,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:69",{"_index":2962,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:74",{"_index":2973,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:84",{"_index":2957,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:91",{"_index":2974,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/menu/menu.component.ts:98",{"_index":2967,"title":{},"body":{"components/MenuComponent.html":{}}}],["packages/ui/src/lib/utility/signup",{"_index":3987,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.t",{"_index":4143,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:11",{"_index":4149,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:13",{"_index":4151,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:15",{"_index":4150,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:17",{"_index":4152,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:19",{"_index":4153,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:21",{"_index":4147,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:24",{"_index":4157,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:27",{"_index":4154,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tab/tab.component.ts:32",{"_index":4155,"title":{},"body":{"components/TabComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.t",{"_index":4161,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.ts:14",{"_index":4178,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.ts:16",{"_index":4169,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.ts:27",{"_index":4176,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.ts:38",{"_index":4170,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.ts:48",{"_index":4171,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/tabs/tabs.component.ts:53",{"_index":4174,"title":{},"body":{"components/TabsComponent.html":{}}}],["packages/ui/src/lib/utility/utility.module.t",{"_index":4474,"title":{},"body":{"modules/UtilityModule.html":{}}}],["packagr/issues/696",{"_index":4126,"title":{},"body":{"injectables/SymbolService.html":{}}}],["packagr/ng",{"_index":4125,"title":{},"body":{"injectables/SymbolService.html":{}}}],["page",{"_index":601,"title":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}},"body":{"guards/AuthGuard.html":{},"directives/EntriesDirective.html":{},"interfaces/FileOptions.html":{},"interfaces/ListConfig.html":{},"components/LoaderComponent.html":{},"components/LoginComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/SignupComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["page!==1",{"_index":1504,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["pagecontain",{"_index":3386,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagin",{"_index":2352,"title":{"classes/Pagination.html":{}},"body":{"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["pagination'},{'nam",{"_index":268,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["pagination.component.html",{"_index":3385,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.first",{"_index":3410,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.getpag",{"_index":3361,"title":{},"body":{"classes/Pagination.html":{}}}],["pagination.last",{"_index":3415,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.next",{"_index":3414,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.of",{"_index":3418,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.prev",{"_index":3411,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.s",{"_index":3422,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination.settotal(50",{"_index":3360,"title":{},"body":{"classes/Pagination.html":{}}}],["pagination/pagin",{"_index":2409,"title":{},"body":{"components/ListComponent.html":{}}}],["pagination/pagination.compon",{"_index":2588,"title":{},"body":{"modules/ListModule.html":{}}}],["pagination?.params()?.from",{"_index":3416,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination?.params()?.to",{"_index":3417,"title":{},"body":{"components/PaginationComponent.html":{}}}],["pagination?.params()?.tot",{"_index":3419,"title":{},"body":{"components/PaginationComponent.html":{}}}],["paginationcompon",{"_index":267,"title":{"components/PaginationComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["paginationconfig",{"_index":2353,"title":{"classes/PaginationConfig.html":{}},"body":{"components/ListComponent.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{}}}],["paginationconfig(this.config",{"_index":3406,"title":{},"body":{"components/PaginationComponent.html":{}}}],["param",{"_index":3322,"title":{},"body":{"classes/Pagination.html":{},"classes/Sorter.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["paramet",{"_index":91,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"miscellaneous/functions.html":{}}}],["parent",{"_index":873,"title":{},"body":{"classes/Collection.html":{},"interfaces/ItemConfig.html":{},"components/ListItemsComponent.html":{},"components/MenuComponent.html":{},"components/TabComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["parent.getpath(item",{"_index":2990,"title":{},"body":{"components/MenuComponent.html":{}}}],["parent=0",{"_index":2965,"title":{},"body":{"components/MenuComponent.html":{}}}],["pars",{"_index":3040,"title":{},"body":{"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["parsetyp",{"_index":4883,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["part",{"_index":954,"title":{},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"classes/Sorter.html":{},"additional-documentation/readme/calendar-readme.html":{}}}],["pass",{"_index":2048,"title":{},"body":{"injectables/HistoryService.html":{},"components/InputComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LoginFormComponent.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"components/SignupFormComponent.html":{},"modules/SymbolModule.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["password",{"_index":270,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["passwordlabel",{"_index":2800,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["passwordplacehold",{"_index":2801,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["passwordreset.button",{"_index":3468,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["passwordresetcompon",{"_index":269,"title":{"components/PasswordResetComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/AuthModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["passwort",{"_index":2864,"title":{},"body":{"components/LoginFormComponent.html":{},"components/PasswordResetComponent.html":{},"components/SignupFormComponent.html":{}}}],["past",{"_index":3791,"title":{},"body":{"components/ResourceListPopComponent.html":{}}}],["path",{"_index":343,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/ItemConfig.html":{},"components/MenuComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/TabsComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["paths.length",{"_index":3574,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["paths[paths.length",{"_index":4186,"title":{},"body":{"components/TabsComponent.html":{}}}],["pattern",{"_index":1220,"title":{},"body":{"pipes/DatetimePipe.html":{},"interfaces/ItemConfig.html":{},"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["pattern[0",{"_index":1233,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["pend",{"_index":3674,"title":{},"body":{"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{}}}],["per",{"_index":2460,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["peripher",{"_index":2549,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["permiss",{"_index":676,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/CrudConfig.html":{},"injectables/NotificationsService.html":{},"injectables/ResourceConfig.html":{}}}],["permissions[method",{"_index":745,"title":{},"body":{"injectables/AuthService.html":{}}}],["phone",{"_index":4325,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["pick",{"_index":2171,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/LocationPickerComponent.html":{}}}],["picker",{"_index":2708,"title":{},"body":{"components/LocationPickerComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["picker'},{'nam",{"_index":247,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["picker.compon",{"_index":2697,"title":{},"body":{"modules/LocationModule.html":{}}}],["picker.component.html",{"_index":2710,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.scss",{"_index":2709,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.t",{"_index":2707,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:24",{"_index":2715,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:26",{"_index":2717,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:28",{"_index":2716,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:30",{"_index":2727,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:32",{"_index":2730,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:34",{"_index":2714,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:37",{"_index":2725,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:43",{"_index":2721,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:55",{"_index":2724,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:61",{"_index":2722,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:77",{"_index":2728,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:79",{"_index":2718,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["picker.component.ts:83",{"_index":2719,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["pictur",{"_index":4722,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["pipe",{"_index":1214,"title":{"pipes/DatetimePipe.html":{},"pipes/GroupPipe.html":{},"pipes/MaxItemsPipe.html":{},"pipes/VisibleFieldsPipe.html":{}},"body":{"pipes/DatetimePipe.html":{},"pipes/GroupPipe.html":{},"components/InputComponent.html":{},"pipes/MaxItemsPipe.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"pipes/VisibleFieldsPipe.html":{},"overview.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["pipe(debouncetime(100",{"_index":1275,"title":{},"body":{"interfaces/Day.html":{}}}],["pipe(debouncetime(this.debounc",{"_index":4255,"title":{},"body":{"components/TinymceComponent.html":{}}}],["pipe(switchmap",{"_index":2012,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["pipetransform",{"_index":1224,"title":{},"body":{"pipes/DatetimePipe.html":{},"pipes/GroupPipe.html":{},"pipes/MaxItemsPipe.html":{},"injectables/SymbolPipe.html":{},"pipes/VisibleFieldsPipe.html":{}}}],["place",{"_index":2000,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LoaderComponent.html":{},"modules/LocationModule.html":{},"components/NotificationsComponent.html":{},"components/TabComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["place.geometri",{"_index":2003,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["place.geometry.location.lat",{"_index":2006,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["place.geometry.location.lng",{"_index":2008,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["placehold",{"_index":558,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"classes/Field.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"injectables/ModelConfigService.html":{},"components/PasswordResetComponent.html":{},"interfaces/SdkField.html":{},"components/SignupFormComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{}}}],["plain",{"_index":1751,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["plan",{"_index":659,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["platform",{"_index":3687,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["platformid",{"_index":3688,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["platformtyp",{"_index":3690,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["play",{"_index":4769,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["pleas",{"_index":1805,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["plug",{"_index":2593,"title":{},"body":{"components/LoaderComponent.html":{}}}],["plurallabel",{"_index":1034,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["plus/lib'to",{"_index":4636,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["plus/lib/jsonpath.j",{"_index":4633,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["polici",{"_index":3649,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["policy.method",{"_index":3651,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["polyfil",{"_index":2063,"title":{},"body":{"injectables/HistoryService.html":{}}}],["pop",{"_index":967,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/TinymceComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["pop'},{'nam",{"_index":197,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["pop.alt",{"_index":2221,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.compon",{"_index":979,"title":{},"body":{"components/CrudComponent.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"components/ResourceCrudComponent.html":{},"modules/ResourceModule.html":{}}}],["pop.component.html",{"_index":1544,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.t",{"_index":1543,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:15",{"_index":1556,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:16",{"_index":1555,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:17",{"_index":1557,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:18",{"_index":1563,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:19",{"_index":1591,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:20",{"_index":2174,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:21",{"_index":1567,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:22",{"_index":1554,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{}}}],["pop.component.ts:23",{"_index":3792,"title":{},"body":{"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:24",{"_index":2180,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:25",{"_index":1588,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["pop.component.ts:26",{"_index":1589,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{}}}],["pop.component.ts:27",{"_index":1587,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:28",{"_index":1586,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:29",{"_index":2181,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:30",{"_index":2182,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:31",{"_index":2178,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.component.ts:32",{"_index":2177,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.component.ts:33",{"_index":1573,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{}}}],["pop.component.ts:35",{"_index":3793,"title":{},"body":{"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:37",{"_index":2176,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.component.ts:41",{"_index":1575,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["pop.component.ts:45",{"_index":3794,"title":{},"body":{"components/ResourceListPopComponent.html":{}}}],["pop.component.ts:50",{"_index":1572,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["pop.head",{"_index":2235,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.height",{"_index":2233,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.keepratio",{"_index":2224,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.servic",{"_index":3489,"title":{},"body":{"components/PopComponent.html":{},"modules/PopModule.html":{}}}],["pop.submitbuttonlabel",{"_index":2187,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop.toggl",{"_index":2539,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["pop.width",{"_index":2229,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["pop/asset",{"_index":1846,"title":{},"body":{"modules/FilesModule.html":{}}}],["pop/entri",{"_index":978,"title":{},"body":{"components/CrudComponent.html":{},"modules/DataModule.html":{},"components/EntryListPopComponent.html":{}}}],["pop/imag",{"_index":1853,"title":{},"body":{"modules/FilesModule.html":{},"components/ImageSelectPopComponent.html":{}}}],["pop/pop.compon",{"_index":2538,"title":{},"body":{"components/ListHeaderComponent.html":{},"components/ModalComponent.html":{}}}],["pop/pop.modul",{"_index":1893,"title":{},"body":{"modules/FormModule.html":{},"modules/NotificationsModule.html":{},"modules/UiModule.html":{}}}],["pop/pop.servic",{"_index":3053,"title":{},"body":{"components/ModalComponent.html":{}}}],["pop/resourc",{"_index":3780,"title":{},"body":{"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{}}}],["pop_dialog",{"_index":4331,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["popcolumn",{"_index":1035,"title":{},"body":{"interfaces/CrudConfig.html":{},"interfaces/ListConfig.html":{}}}],["popcompon",{"_index":272,"title":{"components/PopComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["popcomponent:29",{"_index":1559,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:31",{"_index":1592,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:33",{"_index":1562,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:35",{"_index":1561,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:37",{"_index":1564,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:39",{"_index":1594,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:42",{"_index":1569,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:55",{"_index":1595,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:61",{"_index":1579,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:67",{"_index":1585,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:77",{"_index":1583,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popcomponent:90",{"_index":1576,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popmodul",{"_index":1887,"title":{"modules/PopModule.html":{}},"body":{"modules/FormModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["popmoduleconfig",{"_index":3513,"title":{},"body":{"modules/PopModule.html":{}}}],["popservic",{"_index":1546,"title":{"injectables/PopService.html":{}},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"components/ResourceListPopComponent.html":{},"overview.html":{}}}],["popservice.defaultcolumn",{"_index":1066,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["popservice.stack",{"_index":1577,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["popth",{"_index":3488,"title":{},"body":{"components/PopComponent.html":{}}}],["popul",{"_index":2463,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["posit",{"_index":2676,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["possess",{"_index":502,"title":{},"body":{"components/AssetListComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["possibl",{"_index":1059,"title":{},"body":{"interfaces/CrudConfig.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"components/LoginFormComponent.html":{},"components/ModalComponent.html":{},"components/SignupFormComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["post",{"_index":741,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["prebuilt",{"_index":4821,"title":{},"body":{"additional-documentation/readme/style-readme.html":{}}}],["preced",{"_index":3240,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["preexist",{"_index":4088,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["prefil",{"_index":2225,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["prefix",{"_index":1114,"title":{},"body":{"injectables/CrudService.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/adding-new-packages.html":{}}}],["prequisit",{"_index":4662,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["present",{"_index":78,"title":{},"body":{"components/AceComponent.html":{},"guards/AuthGuard.html":{},"components/IconComponent.html":{},"injectables/SdkService.html":{},"components/TabsComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["preserv",{"_index":1731,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["preservefilenam",{"_index":1726,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["press",{"_index":3766,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["pretti",{"_index":4759,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["prev",{"_index":1471,"title":{},"body":{"directives/EntriesDirective.html":{},"classes/Pagination.html":{}}}],["prevent",{"_index":3869,"title":{},"body":{"injectables/SdkService.html":{}}}],["preview",{"_index":3696,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["previou",{"_index":2380,"title":{},"body":{"components/ListComponent.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{}}}],["primit",{"_index":2335,"title":{},"body":{"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"classes/Sorter.html":{},"additional-documentation/readme/core-readme.html":{}}}],["primitv",{"_index":4795,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["privat",{"_index":603,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"pipes/DatetimePipe.html":{},"directives/EntriesDirective.html":{},"interfaces/FileOptions.html":{},"injectables/GeocodeService.html":{},"directives/ImageDirective.html":{},"components/LoaderComponent.html":{},"components/LocationSearchComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"injectables/SdkService.html":{},"classes/Sorter.html":{},"components/TabsComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["pro",{"_index":4619,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["problem",{"_index":4657,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["process",{"_index":4214,"title":{},"body":{"components/TinymceComponent.html":{}}}],["prod",{"_index":4581,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["product",{"_index":4582,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["programmat",{"_index":2332,"title":{},"body":{"interfaces/ItemConfig.html":{}}}],["project",{"_index":4535,"title":{"additional-documentation/project-setup-tutorial.html":{}},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/publishing.html":{}}}],["project/node_modules/eventsource/lib",{"_index":4631,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["project/node_modules/jsonpath",{"_index":4635,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["promis",{"_index":121,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"injectables/CrudService.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"interfaces/FileOptions.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"interfaces/ItemConfig.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/MediumEditorComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["promise((resolv",{"_index":2014,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LoaderComponent.html":{},"components/TinymceComponent.html":{}}}],["promise.all(this.stack.item",{"_index":2639,"title":{},"body":{"components/LoaderComponent.html":{}}}],["promise.reject('api_not_found",{"_index":716,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.reject('cannot",{"_index":476,"title":{},"body":{"directives/AssetDirective.html":{}}}],["promise.reject('desktop",{"_index":3307,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["promise.reject('fehl",{"_index":3226,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["promise.reject('getaccount",{"_index":3950,"title":{},"body":{"injectables/SdkService.html":{}}}],["promise.reject('getschema",{"_index":3945,"title":{},"body":{"injectables/SdkService.html":{}}}],["promise.reject('no_api_found",{"_index":767,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.reject(`ecimag",{"_index":2154,"title":{},"body":{"directives/ImageDirective.html":{}}}],["promise.reject(err",{"_index":1127,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["promise.reject(this.noclientid",{"_index":709,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.resolv",{"_index":756,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/FileOptions.html":{},"injectables/NotificationsService.html":{},"injectables/SdkService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["promise.resolve().then",{"_index":1794,"title":{},"body":{"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/Upload.html":{}}}],["promise.resolve(>asset",{"_index":1810,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["promise.resolve(['get",{"_index":740,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.resolve(api",{"_index":710,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.resolve(item.config.onsave(item",{"_index":3845,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["promise.resolve(method",{"_index":735,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.resolve(result",{"_index":746,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.resolve(results.concat(method",{"_index":747,"title":{},"body":{"injectables/AuthService.html":{}}}],["promise.resolve(this.editor",{"_index":157,"title":{},"body":{"components/AceComponent.html":{},"components/MediumEditorComponent.html":{}}}],["promise.resolve(valu",{"_index":2858,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["propag",{"_index":1206,"title":{},"body":{"components/DatetimeComponent.html":{},"components/ListItemsComponent.html":{},"components/LocationPickerComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{}}}],["propagatechang",{"_index":41,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["proper",{"_index":4570,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["properli",{"_index":4717,"title":{},"body":{"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["properti",{"_index":38,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["property.interfac",{"_index":1707,"title":{},"body":{"classes/Field.html":{},"interfaces/FieldConfig.html":{}}}],["protect",{"_index":491,"title":{},"body":{"components/AssetListComponent.html":{},"classes/Collection.html":{},"interfaces/Day.html":{},"components/LoginFormComponent.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"components/SignupFormComponent.html":{}}}],["protractor",{"_index":4587,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["provd",{"_index":2558,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["provid",{"_index":24,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"components/InputComponent.html":{},"modules/IoModule.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/calendar-readme.html":{}}}],["pseudo",{"_index":4750,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["public",{"_index":44,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"injectables/HistoryService.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["publicapi",{"_index":439,"title":{},"body":{"directives/AssetDirective.html":{},"injectables/AuthService.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{}}}],["publicapi#getfieldconfig",{"_index":3096,"title":{},"body":{"injectables/ModelConfigService.html":{},"interfaces/SdkField.html":{}}}],["publicapi(shortid",{"_index":3940,"title":{},"body":{"injectables/SdkService.html":{}}}],["publicassetlist",{"_index":1736,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["publicassetresourc",{"_index":468,"title":{},"body":{"directives/AssetDirective.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"interfaces/Upload.html":{},"components/UploadSelectComponent.html":{}}}],["publicassetright",{"_index":3633,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["publish",{"_index":4566,"title":{"additional-documentation/publishing.html":{}},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["push",{"_index":3289,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["put",{"_index":742,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"injectables/HistoryService.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["qb1mro56u5katpx9j8o4",{"_index":2703,"title":{},"body":{"modules/LocationModule.html":{}}}],["queri",{"_index":2452,"title":{},"body":{"interfaces/ListConfig.html":{},"interfaces/ResourceActionbarState.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["queryfilt",{"_index":4323,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["querylist",{"_index":2534,"title":{},"body":{"components/ListHeaderComponent.html":{},"components/PaginationComponent.html":{},"components/TabsComponent.html":{}}}],["quick",{"_index":1019,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["quickli",{"_index":4707,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["rack",{"_index":1445,"title":{},"body":{"components/DynamicRackComponent.html":{}}}],["rack.compon",{"_index":2323,"title":{},"body":{"modules/IoModule.html":{}}}],["rack.component.html",{"_index":1436,"title":{},"body":{"components/DynamicRackComponent.html":{}}}],["rack.component.t",{"_index":1434,"title":{},"body":{"components/DynamicRackComponent.html":{}}}],["rack.component.ts:10",{"_index":1439,"title":{},"body":{"components/DynamicRackComponent.html":{}}}],["rack/dynam",{"_index":1433,"title":{},"body":{"components/DynamicRackComponent.html":{},"modules/IoModule.html":{}}}],["rang",{"_index":3426,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["rank",{"_index":4751,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["ratio",{"_index":2166,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["raw",{"_index":1221,"title":{},"body":{"pipes/DatetimePipe.html":{},"components/LocationPickerComponent.html":{}}}],["rawfilt",{"_index":3125,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["re",{"_index":84,"title":{},"body":{"components/AceComponent.html":{},"injectables/AuthService.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/ResourceService.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["reach",{"_index":3830,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["react",{"_index":587,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["reaction",{"_index":2767,"title":{},"body":{"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["reactiv",{"_index":2875,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["reactiveformsmodul",{"_index":631,"title":{},"body":{"modules/AuthModule.html":{},"modules/FormModule.html":{},"modules/IoModule.html":{},"modules/LocationModule.html":{},"modules/UtilityModule.html":{}}}],["read",{"_index":1060,"title":{},"body":{"interfaces/CrudConfig.html":{},"directives/ImageDirective.html":{}}}],["readabl",{"_index":1682,"title":{},"body":{"classes/Field.html":{}}}],["readi",{"_index":42,"title":{},"body":{"components/AceComponent.html":{},"injectables/AuthService.html":{},"components/MediumEditorComponent.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{}}}],["readm",{"_index":426,"title":{"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{}},"body":{"directives/AssetDirective.html":{},"classes/Collection.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"classes/Field.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ListComponent.html":{},"components/LoaderComponent.html":{},"components/LoginFormComponent.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PopComponent.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"components/TabsComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{}}}],["readonli",{"_index":559,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"interfaces/ItemConfig.html":{},"components/LocationMapComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"interfaces/SdkField.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["recent",{"_index":2838,"title":{},"body":{"components/LoginFormComponent.html":{},"components/NotificationsComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["recogn",{"_index":4884,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["recommend",{"_index":3234,"title":{},"body":{"components/NotificationsComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["reconstruct",{"_index":2384,"title":{},"body":{"components/ListComponent.html":{}}}],["redirect",{"_index":589,"title":{},"body":{"guards/AuthGuard.html":{},"components/LoginComponent.html":{},"components/SignupComponent.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["reduce((a",{"_index":752,"title":{},"body":{"injectables/AuthService.html":{}}}],["reduce((ha",{"_index":4052,"title":{},"body":{"classes/Sorter.html":{}}}],["reduce((match",{"_index":3837,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["reduce((max",{"_index":3142,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["refer",{"_index":2259,"title":{},"body":{"components/InputComponent.html":{},"injectables/LoaderService.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/publishing.html":{}}}],["referenc",{"_index":4788,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["reflect",{"_index":1255,"title":{},"body":{"interfaces/Day.html":{}}}],["regex",{"_index":3594,"title":{},"body":{"injectables/ResourceConfig.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["regexp",{"_index":2329,"title":{},"body":{"interfaces/ItemConfig.html":{},"injectables/ResourceConfig.html":{}}}],["regist",{"_index":88,"title":{},"body":{"components/AceComponent.html":{},"injectables/IconService.html":{},"components/InputComponent.html":{},"injectables/LoaderService.html":{},"injectables/SymbolService.html":{},"components/ToggleComponent.html":{}}}],["registeronchang",{"_index":53,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{}}}],["registeronchange(fn",{"_index":86,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["registerontouch",{"_index":54,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["registr",{"_index":3982,"title":{},"body":{"components/SignupComponent.html":{}}}],["registri",{"_index":2081,"title":{},"body":{"components/IconComponent.html":{},"injectables/IconService.html":{},"injectables/SymbolService.html":{}}}],["registry.find(",{"_index":4127,"title":{},"body":{"injectables/SymbolService.html":{}}}],["registry.indexof(this.get(symbol.nam",{"_index":4132,"title":{},"body":{"injectables/SymbolService.html":{}}}],["registry.push(symbol",{"_index":4133,"title":{},"body":{"injectables/SymbolService.html":{}}}],["registry[index",{"_index":4134,"title":{},"body":{"injectables/SymbolService.html":{}}}],["regular",{"_index":4484,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["reinstanti",{"_index":4922,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["reject",{"_index":2015,"title":{},"body":{"injectables/GeocodeService.html":{},"components/TinymceComponent.html":{}}}],["reject(statu",{"_index":2020,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["rel",{"_index":1366,"title":{},"body":{"interfaces/Day.html":{},"components/TabComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["relat",{"_index":499,"title":{},"body":{"components/AssetListComponent.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"modules/LocationModule.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"modules/SymbolModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["relationnam",{"_index":3600,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["relativeto",{"_index":4199,"title":{},"body":{"components/TabsComponent.html":{}}}],["releas",{"_index":1120,"title":{},"body":{"injectables/CrudService.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["releaseto",{"_index":4565,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["relev",{"_index":405,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"classes/Pagination.html":{},"injectables/ResourceService.html":{},"classes/Sorter.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["relevantkey",{"_index":3174,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["relevantkeys.foreach(key",{"_index":3178,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["relevantkeys.length",{"_index":3177,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["reli",{"_index":4794,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["reload",{"_index":957,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{}}}],["remain",{"_index":1049,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["remov",{"_index":817,"title":{},"body":{"classes/Collection.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["remove(item",{"_index":854,"title":{},"body":{"classes/Collection.html":{}}}],["removeal",{"_index":818,"title":{},"body":{"classes/Collection.html":{}}}],["removeall(item",{"_index":857,"title":{},"body":{"classes/Collection.html":{}}}],["removefilt",{"_index":2515,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["removefilter(properti",{"_index":2527,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["removeitem",{"_index":4889,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["renam",{"_index":2337,"title":{},"body":{"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"components/PopComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["render",{"_index":919,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"interfaces/FormConfig.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/MenuComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/ResourceCrudComponent.html":{},"components/TinymceComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["replac",{"_index":701,"title":{},"body":{"injectables/AuthService.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"components/LoginComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/SignupComponent.html":{},"injectables/SymbolService.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/adding-new-packages.html":{}}}],["replacewith",{"_index":819,"title":{},"body":{"classes/Collection.html":{}}}],["replacewith(item",{"_index":860,"title":{},"body":{"classes/Collection.html":{}}}],["repo",{"_index":4558,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["repositori",{"_index":4547,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["repres",{"_index":1241,"title":{},"body":{"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"classes/Field.html":{}}}],["request",{"_index":2133,"title":{},"body":{"directives/ImageDirective.html":{},"components/PasswordResetComponent.html":{},"injectables/SdkService.html":{}}}],["requir",{"_index":402,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"classes/Field.html":{},"injectables/IconService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"injectables/ResourceConfig.html":{},"interfaces/SdkField.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["require(\"path",{"_index":4652,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["reset",{"_index":330,"title":{},"body":{"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"components/ListHeaderComponent.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"components/LoginFormComponent.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"components/PasswordResetComponent.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"components/SignupFormComponent.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["reset'},{'nam",{"_index":271,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["reset.compon",{"_index":640,"title":{},"body":{"modules/AuthModule.html":{}}}],["reset.component.html",{"_index":3440,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.t",{"_index":3436,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:17",{"_index":3450,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:19",{"_index":3449,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:21",{"_index":3443,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:23",{"_index":3445,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:25",{"_index":3446,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:27",{"_index":3442,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:29",{"_index":3448,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset.component.ts:32",{"_index":3447,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["reset/password",{"_index":639,"title":{},"body":{"modules/AuthModule.html":{},"components/PasswordResetComponent.html":{}}}],["reset?e=1",{"_index":3439,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["resetpassword",{"_index":669,"title":{},"body":{"injectables/AuthService.html":{}}}],["resetpassword(email",{"_index":697,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolut",{"_index":2209,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["resolution.height",{"_index":2215,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["resolution.width",{"_index":2214,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["resolv",{"_index":123,"title":{},"body":{"components/AceComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"interfaces/ItemConfig.html":{},"components/LoaderComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{},"components/TinymceComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["resolve(nam",{"_index":4107,"title":{},"body":{"injectables/SymbolService.html":{}}}],["resolve(result",{"_index":2019,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["resolve(tinymce.init(set",{"_index":4269,"title":{},"body":{"components/TinymceComponent.html":{}}}],["resolveassets(asset",{"_index":1800,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["resolved.find((resourc",{"_index":1822,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["resolvedapi",{"_index":714,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolvefn",{"_index":2495,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["resolvefn(list",{"_index":2497,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["resolvevari",{"_index":670,"title":{},"body":{"injectables/AuthService.html":{}}}],["resolvevariables(str",{"_index":699,"title":{},"body":{"injectables/AuthService.html":{}}}],["resourc",{"_index":274,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["resource.assetid",{"_index":1823,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["resource.del().then((r",{"_index":3857,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["resource.newhistori",{"_index":2072,"title":{},"body":{"injectables/HistoryService.html":{}}}],["resource.sav",{"_index":3847,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["resource.save().then((_resourc",{"_index":3854,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["resource/resource.modul",{"_index":1181,"title":{},"body":{"modules/DataModule.html":{},"modules/FilesModule.html":{}}}],["resource[identifi",{"_index":3540,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["resource[key",{"_index":3852,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["resource[label",{"_index":3541,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["resourceact",{"_index":3564,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["resourceactionbarcompon",{"_index":273,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourceactionbarst",{"_index":3531,"title":{"interfaces/ResourceActionbarState.html":{}},"body":{"interfaces/ResourceActionbarState.html":{}}}],["resourceconfig",{"_index":489,"title":{"injectables/ResourceConfig.html":{}},"body":{"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"interfaces/FileOptions.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"overview.html":{}}}],["resourcecrudcompon",{"_index":275,"title":{"components/ResourceCrudComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourcedeletepopcompon",{"_index":276,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourceform",{"_index":3610,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["resourceformcompon",{"_index":278,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourcelist",{"_index":524,"title":{},"body":{"components/AssetListComponent.html":{},"interfaces/FileOptions.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["resourcelistcompon",{"_index":279,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourcelistcomponent:119",{"_index":534,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:128",{"_index":526,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:132",{"_index":530,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:25",{"_index":544,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:27",{"_index":508,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:29",{"_index":521,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:31",{"_index":515,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:33",{"_index":540,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:35",{"_index":506,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:37",{"_index":518,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:39",{"_index":510,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:48",{"_index":543,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:49",{"_index":539,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:50",{"_index":546,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:62",{"_index":523,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistcomponent:83",{"_index":535,"title":{},"body":{"components/AssetListComponent.html":{}}}],["resourcelistpopcompon",{"_index":280,"title":{"components/ResourceListPopComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourcemodul",{"_index":1155,"title":{"modules/ResourceModule.html":{}},"body":{"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/ResourceModule.html":{},"modules.html":{},"overview.html":{}}}],["resourcepopcompon",{"_index":281,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourceselectcompon",{"_index":282,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["resourceservic",{"_index":1077,"title":{"injectables/ResourceService.html":{}},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"overview.html":{}}}],["resourceservice.chang",{"_index":1112,"title":{},"body":{"injectables/CrudService.html":{}}}],["respons",{"_index":1799,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["response['getallitem",{"_index":1798,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["rest",{"_index":655,"title":{},"body":{"injectables/AuthService.html":{},"components/IconComponent.html":{},"injectables/SdkService.html":{}}}],["result",{"_index":320,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"changelog.html":{},"dependencies.html":{},"miscellaneous/functions.html":{},"index.html":{},"modules.html":{},"overview.html":{},"miscellaneous/typealiases.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/core-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["results.length",{"_index":2739,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["results.push(method",{"_index":750,"title":{},"body":{"injectables/AuthService.html":{}}}],["results[0].formatted_address",{"_index":2740,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["retriev",{"_index":2470,"title":{},"body":{"injectables/ListConfigService.html":{},"injectables/ModelConfigService.html":{},"classes/Pagination.html":{}}}],["retrieve(key",{"_index":2476,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["return",{"_index":81,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["revers",{"_index":1985,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LocationPickerComponent.html":{},"classes/Sorter.html":{}}}],["right",{"_index":3635,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["role",{"_index":407,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{}}}],["roleid",{"_index":3736,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["root",{"_index":381,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"classes/Config.html":{},"injectables/SdkService.html":{},"modules/SymbolModule.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/adding-new-packages.html":{}}}],["rout",{"_index":490,"title":{"additional-documentation/project-setup-tutorial/routes.html":{}},"body":{"components/AssetListComponent.html":{},"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"components/MenuComponent.html":{},"components/ResourceCrudComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["route.data",{"_index":2986,"title":{},"body":{"components/MenuComponent.html":{}}}],["route.data.hidden",{"_index":2987,"title":{},"body":{"components/MenuComponent.html":{}}}],["route.param",{"_index":982,"title":{},"body":{"components/CrudComponent.html":{}}}],["route.path",{"_index":2984,"title":{},"body":{"components/MenuComponent.html":{}}}],["route.path.indexof",{"_index":2985,"title":{},"body":{"components/MenuComponent.html":{}}}],["route.queryparam",{"_index":983,"title":{},"body":{"components/CrudComponent.html":{}}}],["router",{"_index":928,"title":{},"body":{"components/CrudComponent.html":{},"injectables/HistoryService.html":{},"components/MenuComponent.html":{},"components/ResourceCrudComponent.html":{},"components/TabsComponent.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["routermodul",{"_index":1163,"title":{},"body":{"modules/DataModule.html":{},"modules/UtilityModule.html":{}}}],["routing.module.t",{"_index":4711,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["row",{"_index":2328,"title":{},"body":{"interfaces/ItemConfig.html":{}}}],["run",{"_index":1680,"title":{},"body":{"classes/Field.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["runtim",{"_index":3872,"title":{},"body":{"injectables/SdkService.html":{}}}],["rxfilter",{"_index":3828,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["rxfilter((chang",{"_index":3842,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["rxj",{"_index":598,"title":{},"body":{"guards/AuthGuard.html":{},"classes/Collection.html":{},"injectables/CrudService.html":{},"interfaces/Day.html":{},"injectables/GeocodeService.html":{},"components/LoginFormComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"dependencies.html":{},"additional-documentation/adding-new-packages.html":{}}}],["rxjs';9",{"_index":5007,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["rxjs/oper",{"_index":1246,"title":{},"body":{"interfaces/Day.html":{},"injectables/GeocodeService.html":{},"components/InputComponent.html":{},"injectables/ResourceService.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{}}}],["rxjs/subject",{"_index":5006,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["s.name",{"_index":4128,"title":{},"body":{"injectables/SymbolService.html":{}}}],["safedelet",{"_index":1036,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["safeput",{"_index":1102,"title":{},"body":{"injectables/CrudService.html":{}}}],["same",{"_index":828,"title":{},"body":{"classes/Collection.html":{},"pipes/DatetimePipe.html":{},"pipes/GroupPipe.html":{},"components/MenuComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["sandbox.scss",{"_index":4679,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["save",{"_index":1051,"title":{},"body":{"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["save(item",{"_index":3822,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["save(model",{"_index":1097,"title":{},"body":{"injectables/CrudService.html":{}}}],["save2",{"_index":4816,"title":{},"body":{"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{}}}],["savethi",{"_index":4674,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme/style-readme.html":{}}}],["scaffold",{"_index":4577,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["scale",{"_index":3087,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["schema",{"_index":3071,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["schemarequest",{"_index":3875,"title":{},"body":{"injectables/SdkService.html":{}}}],["script",{"_index":4562,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["scss",{"_index":4624,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme/style-readme.html":{}}}],["scssmake",{"_index":4671,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["sdk",{"_index":412,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DefaultEntryInputComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["sdk.api",{"_index":438,"title":{},"body":{"directives/AssetDirective.html":{},"components/PasswordResetComponent.html":{},"components/UploadComponent.html":{}}}],["sdk.init",{"_index":3870,"title":{},"body":{"injectables/SdkService.html":{}}}],["sdk.servic",{"_index":3867,"title":{},"body":{"modules/SdkModule.html":{}}}],["sdk/history.servic",{"_index":1182,"title":{},"body":{"modules/DataModule.html":{}}}],["sdk/sdk.modul",{"_index":1183,"title":{},"body":{"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/ResourceModule.html":{}}}],["sdk/sdk.servic",{"_index":417,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DefaultEntryInputComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["sdkfield",{"_index":3858,"title":{"interfaces/SdkField.html":{}},"body":{"interfaces/SdkField.html":{}}}],["sdkmodul",{"_index":1156,"title":{"modules/SdkModule.html":{}},"body":{"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules.html":{},"overview.html":{}}}],["sdkservic",{"_index":414,"title":{"injectables/SdkService.html":{}},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"components/DefaultEntryInputComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"injectables/ResourceService.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"overview.html":{}}}],["sdkservice#api",{"_index":2764,"title":{},"body":{"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["search",{"_index":1642,"title":{},"body":{"classes/Field.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["search'},{'nam",{"_index":249,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["search.compon",{"_index":2698,"title":{},"body":{"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{}}}],["search.component.html",{"_index":2744,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["search.component.t",{"_index":2742,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["search.component.ts:16",{"_index":2747,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["search.component.ts:18",{"_index":2751,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["search.component.ts:20",{"_index":2746,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["search.component.ts:28",{"_index":2748,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["search.component.ts:34",{"_index":2749,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["searchbar",{"_index":1547,"title":{},"body":{"components/EntryListPopComponent.html":{},"injectables/GeocodeService.html":{},"interfaces/ItemConfig.html":{},"components/LocationSearchComponent.html":{},"components/ResourceListPopComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["searchbar'},{'nam",{"_index":284,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["searchbar/searchbar.compon",{"_index":2589,"title":{},"body":{"modules/ListModule.html":{}}}],["searchbarcompon",{"_index":283,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["searchinput",{"_index":2745,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["second",{"_index":2403,"title":{},"body":{"components/ListComponent.html":{}}}],["section",{"_index":3487,"title":{},"body":{"components/PopComponent.html":{}}}],["see",{"_index":503,"title":{},"body":{"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"components/ResourceCrudComponent.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"injectables/SymbolPipe.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["sein",{"_index":4734,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["seit",{"_index":607,"title":{},"body":{"guards/AuthGuard.html":{}}}],["select",{"_index":232,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["select'},{'nam",{"_index":191,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select(item",{"_index":1574,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["select(pag",{"_index":3347,"title":{},"body":{"classes/Pagination.html":{}}}],["select(tab",{"_index":4172,"title":{},"body":{"components/TabsComponent.html":{}}}],["select.compon",{"_index":1177,"title":{},"body":{"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/ResourceModule.html":{},"modules/SelectModule.html":{}}}],["select.component.html",{"_index":554,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select.component.t",{"_index":553,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select.component.ts:12",{"_index":566,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["select.component.ts:13",{"_index":563,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["select.component.ts:14",{"_index":564,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["select.component.ts:15",{"_index":565,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["select.component.ts:16",{"_index":567,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select.component.ts:17",{"_index":562,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select.component.ts:18",{"_index":4443,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:19",{"_index":4441,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:20",{"_index":569,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select.component.ts:21",{"_index":4444,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:23",{"_index":568,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"components/UploadSelectComponent.html":{}}}],["select.component.ts:25",{"_index":4446,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:26",{"_index":4445,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:27",{"_index":4442,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:29",{"_index":4457,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:31",{"_index":4458,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:33",{"_index":4455,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:35",{"_index":4440,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:37",{"_index":4454,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:39",{"_index":4447,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:42",{"_index":4448,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:47",{"_index":4449,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:54",{"_index":4453,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.component.ts:60",{"_index":4451,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["select.emit(item",{"_index":2373,"title":{},"body":{"components/ListComponent.html":{}}}],["select/asset",{"_index":1847,"title":{},"body":{"modules/FilesModule.html":{}}}],["select/assetgroup",{"_index":552,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"modules/FilesModule.html":{}}}],["select/entri",{"_index":1176,"title":{},"body":{"modules/DataModule.html":{}}}],["select/resourc",{"_index":3804,"title":{},"body":{"modules/ResourceModule.html":{}}}],["select/select.compon",{"_index":348,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["select/select.component.html",{"_index":353,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["select/select.modul",{"_index":4358,"title":{},"body":{"modules/UiModule.html":{}}}],["select/tag",{"_index":1854,"title":{},"body":{"modules/FilesModule.html":{}}}],["select/upload",{"_index":1852,"title":{},"body":{"modules/FilesModule.html":{},"components/UploadSelectComponent.html":{}}}],["selectbyurl",{"_index":4168,"title":{},"body":{"components/TabsComponent.html":{}}}],["selectbyurl(url",{"_index":4175,"title":{},"body":{"components/TabsComponent.html":{}}}],["selectcompon",{"_index":285,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["selectday(_mo",{"_index":1354,"title":{},"body":{"interfaces/Day.html":{}}}],["selectentri",{"_index":932,"title":{},"body":{"components/CrudComponent.html":{}}}],["selectentry(item",{"_index":963,"title":{},"body":{"components/CrudComponent.html":{}}}],["selectindex",{"_index":2349,"title":{},"body":{"components/ListComponent.html":{}}}],["selectindex(index",{"_index":2385,"title":{},"body":{"components/ListComponent.html":{}}}],["selection.config.solo",{"_index":1834,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["selection.select(upload.item",{"_index":1835,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["selection.toggl",{"_index":2375,"title":{},"body":{"components/ListComponent.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["selection.toggleall(upload.item",{"_index":1836,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["selectmod",{"_index":2453,"title":{},"body":{"interfaces/ListConfig.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["selectmodul",{"_index":3952,"title":{"modules/SelectModule.html":{}},"body":{"modules/SelectModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["selectmoduleconfig",{"_index":3961,"title":{},"body":{"modules/SelectModule.html":{}}}],["selector",{"_index":31,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["selecttempl",{"_index":3535,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["selectupload(upload",{"_index":1832,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["self",{"_index":3570,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["self.indexof(valu",{"_index":3571,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["semicolon",{"_index":5008,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["send",{"_index":3437,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["sensit",{"_index":4047,"title":{},"body":{"classes/Sorter.html":{}}}],["sent",{"_index":3453,"title":{},"body":{"components/PasswordResetComponent.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["seper",{"_index":4739,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["serv",{"_index":4574,"title":{},"body":{"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["server",{"_index":4162,"title":{},"body":{"components/TabsComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{}}}],["server:generic\",now",{"_index":4650,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["servic",{"_index":627,"title":{},"body":{"modules/AuthModule.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/IconService.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"modules/LocationModule.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"injectables/ResourceService.html":{},"modules/SymbolModule.html":{},"injectables/SymbolService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["session",{"_index":3876,"title":{},"body":{"injectables/SdkService.html":{}}}],["session(environment.environ",{"_index":3930,"title":{},"body":{"injectables/SdkService.html":{}}}],["set",{"_index":79,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"interfaces/CrudConfig.html":{},"interfaces/Day.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceListPopComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"interfaces/Symbol.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/publishing.html":{}}}],["set([this.config.s",{"_index":3365,"title":{},"body":{"classes/Pagination.html":{}}}],["set(key",{"_index":2478,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["set(properti",{"_index":3108,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["set(symbol",{"_index":4110,"title":{},"body":{"injectables/SymbolService.html":{}}}],["set(typ",{"_index":4315,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["setapi(api",{"_index":3912,"title":{},"body":{"injectables/SdkService.html":{}}}],["setclientid",{"_index":661,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{}}}],["setdate(d",{"_index":1348,"title":{},"body":{"interfaces/Day.html":{}}}],["setemptystringstonul",{"_index":3810,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["setgroup",{"_index":4366,"title":{},"body":{"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["setgroup(group",{"_index":4382,"title":{},"body":{"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["setmod",{"_index":55,"title":{},"body":{"components/AceComponent.html":{}}}],["setmode(mod",{"_index":96,"title":{},"body":{"components/AceComponent.html":{}}}],["setter",{"_index":902,"title":{},"body":{"classes/Config.html":{}}}],["setthem",{"_index":56,"title":{},"body":{"components/AceComponent.html":{}}}],["settheme(them",{"_index":101,"title":{},"body":{"components/AceComponent.html":{}}}],["settimeout",{"_index":393,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/MenuComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/TinymceComponent.html":{},"components/UploadSelectComponent.html":{}}}],["settimeout(resolv",{"_index":2621,"title":{},"body":{"components/LoaderComponent.html":{}}}],["settot",{"_index":3323,"title":{},"body":{"classes/Pagination.html":{}}}],["settotal(itemcount",{"_index":3379,"title":{},"body":{"classes/Pagination.html":{}}}],["settotal(tot",{"_index":3350,"title":{},"body":{"classes/Pagination.html":{}}}],["setup",{"_index":4077,"title":{"additional-documentation/project-setup-tutorial.html":{}},"body":{"modules/SymbolModule.html":{},"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/publishing.html":{}}}],["seturl",{"_index":2129,"title":{},"body":{"directives/ImageDirective.html":{}}}],["seturl(url",{"_index":2142,"title":{},"body":{"directives/ImageDirective.html":{}}}],["setvalu",{"_index":2659,"title":{},"body":{"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{}}}],["setvalue(valu",{"_index":2672,"title":{},"body":{"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{}}}],["short",{"_index":3895,"title":{},"body":{"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial/routes.html":{}}}],["shorthand",{"_index":4672,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["shortid",{"_index":3168,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["shouldbepartofform",{"_index":1916,"title":{},"body":{"injectables/FormService.html":{}}}],["shouldbepartofform(field",{"_index":1931,"title":{},"body":{"injectables/FormService.html":{}}}],["shouldn't",{"_index":4781,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["show",{"_index":1258,"title":{},"body":{"interfaces/Day.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ListConfig.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/publishing.html":{}}}],["show(",{"_index":1582,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["showerror",{"_index":2795,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["showerror(err",{"_index":2833,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["showhead",{"_index":2350,"title":{},"body":{"components/ListComponent.html":{}}}],["showlabel",{"_index":2802,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["shown",{"_index":509,"title":{},"body":{"components/AssetListComponent.html":{},"guards/AuthGuard.html":{},"interfaces/CrudConfig.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{},"components/LoginFormComponent.html":{},"components/MenuComponent.html":{},"classes/Notification.html":{},"injectables/NotificationsService.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["shownotif",{"_index":3219,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["showrawvalu",{"_index":2712,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["showurlinput",{"_index":4433,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["sie",{"_index":612,"title":{},"body":{"guards/AuthGuard.html":{},"components/PasswordResetComponent.html":{}}}],["signup",{"_index":289,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{}}}],["signup'},{'nam",{"_index":287,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["signup(undefin",{"_index":702,"title":{},"body":{"injectables/AuthService.html":{},"components/SignupComponent.html":{}}}],["signup(valu",{"_index":4006,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["signup.component.html",{"_index":3965,"title":{},"body":{"components/SignupComponent.html":{}}}],["signup/signup.compon",{"_index":641,"title":{},"body":{"modules/AuthModule.html":{}}}],["signupcompon",{"_index":286,"title":{"components/SignupComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"modules/AuthModule.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["signupformcompon",{"_index":288,"title":{"components/SignupFormComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["silent",{"_index":3348,"title":{},"body":{"classes/Pagination.html":{},"interfaces/WithNotifications.html":{}}}],["simi",{"_index":911,"title":{},"body":{"classes/Config.html":{}}}],["simibug",{"_index":1500,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["similar",{"_index":1657,"title":{},"body":{"classes/Field.html":{},"components/IconComponent.html":{},"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["simpl",{"_index":3216,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["sind",{"_index":613,"title":{},"body":{"guards/AuthGuard.html":{}}}],["singl",{"_index":460,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntryDirective.html":{}}}],["singleton",{"_index":4030,"title":{},"body":{"classes/Sorter.html":{}}}],["singularlabel",{"_index":1037,"title":{},"body":{"interfaces/CrudConfig.html":{}}}],["site",{"_index":2626,"title":{},"body":{"components/LoaderComponent.html":{}}}],["situat",{"_index":4302,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["size",{"_index":1815,"title":{},"body":{"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ListConfig.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["skip",{"_index":507,"title":{},"body":{"components/AssetListComponent.html":{}}}],["skiprout",{"_index":4173,"title":{},"body":{"components/TabsComponent.html":{}}}],["slice",{"_index":2867,"title":{},"body":{"pipes/MaxItemsPipe.html":{},"classes/Pagination.html":{}}}],["slice(item",{"_index":3354,"title":{},"body":{"classes/Pagination.html":{}}}],["slot",{"_index":1448,"title":{},"body":{"components/DynamicSlotComponent.html":{},"modules/IoModule.html":{},"components/TabsComponent.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["slot'},{'nam",{"_index":215,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["slot.compon",{"_index":2270,"title":{},"body":{"components/InputComponent.html":{},"modules/IoModule.html":{},"components/OutputComponent.html":{}}}],["slot.component.html",{"_index":1449,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["slot.component.t",{"_index":1447,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["slot.component.ts:11",{"_index":1452,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["slot.component.ts:14",{"_index":1456,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["slot.component.ts:18",{"_index":1454,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["slot/dynam",{"_index":1446,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"modules/IoModule.html":{},"components/OutputComponent.html":{}}}],["slothostdirect",{"_index":317,"title":{"directives/SlotHostDirective.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["sm",{"_index":1716,"title":{},"body":{"classes/Field.html":{}}}],["smoother",{"_index":3432,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["snackbar",{"_index":3050,"title":{},"body":{"components/ModalComponent.html":{}}}],["snippet",{"_index":4735,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["soeben",{"_index":3457,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["solo",{"_index":500,"title":{},"body":{"components/AssetListComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListItemsComponent.html":{}}}],["somebodi",{"_index":1803,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["somemodul",{"_index":2100,"title":{},"body":{"components/IconComponent.html":{}}}],["sometim",{"_index":4938,"title":{},"body":{"additional-documentation/changelog/core-changelog.html":{}}}],["somewher",{"_index":145,"title":{},"body":{"components/AceComponent.html":{},"components/NotificationsComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["soon",{"_index":425,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"directives/EntryDirective.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["sophist",{"_index":811,"title":{},"body":{"classes/Collection.html":{}}}],["sort",{"_index":1691,"title":{},"body":{"classes/Field.html":{},"interfaces/ListConfig.html":{},"classes/Sorter.html":{},"miscellaneous/functions.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{}}}],["sort(((a",{"_index":3368,"title":{},"body":{"classes/Pagination.html":{}}}],["sort(item",{"_index":4040,"title":{},"body":{"classes/Sorter.html":{}}}],["sortabl",{"_index":1633,"title":{},"body":{"classes/Field.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{}}}],["sortbi",{"_index":2454,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["sortboolean",{"_index":4035,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["sortboolean(a",{"_index":4051,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["sorter",{"_index":4028,"title":{"classes/Sorter.html":{}},"body":{"classes/Sorter.html":{}}}],["sortnumb",{"_index":4034,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["sortnumber(a",{"_index":4050,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["sortstr",{"_index":4033,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["sortstring(a",{"_index":4048,"title":{},"body":{"classes/Sorter.html":{},"miscellaneous/functions.html":{}}}],["sorttyp",{"_index":4031,"title":{},"body":{"classes/Sorter.html":{}}}],["sourc",{"_index":3,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"modules/AuthModule.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"modules/DataModule.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"modules/FormModule.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"modules/IconModule.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"modules/IoModule.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"modules/ListModule.html":{},"components/LoaderComponent.html":{},"modules/LoaderModule.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"modules/LocationModule.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"modules/PopModule.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"modules/ResourceModule.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"modules/SdkModule.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"modules/UiModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/readme.html":{}}}],["source.addeventlistener('entrycr",{"_index":2078,"title":{},"body":{"injectables/HistoryService.html":{}}}],["source.addeventlistener('entryupd",{"_index":2075,"title":{},"body":{"injectables/HistoryService.html":{}}}],["span",{"_index":1257,"title":{},"body":{"interfaces/Day.html":{}}}],["spanchang",{"_index":1267,"title":{},"body":{"interfaces/Day.html":{}}}],["spancolor",{"_index":1259,"title":{},"body":{"interfaces/Day.html":{}}}],["speakingurl",{"_index":4790,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["specif",{"_index":1675,"title":{},"body":{"classes/Field.html":{},"components/LoaderComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/TypeConfigService.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{}}}],["specifi",{"_index":98,"title":{},"body":{"components/AceComponent.html":{},"components/LoginComponent.html":{},"components/ModalComponent.html":{},"injectables/NotificationsService.html":{},"interfaces/ResourceActionbarState.html":{},"components/SignupComponent.html":{},"interfaces/Symbol.html":{},"injectables/SymbolService.html":{}}}],["splice(1).join",{"_index":3061,"title":{},"body":{"components/ModalComponent.html":{}}}],["spreadsheet",{"_index":1753,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["squar",{"_index":2136,"title":{},"body":{"directives/ImageDirective.html":{}}}],["src",{"_index":2127,"title":{},"body":{"directives/ImageDirective.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["src/app/app",{"_index":4710,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["src/app/app.component.html",{"_index":4699,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["src/app/app.modul",{"_index":4688,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["src/app/muffins/muffins.component.html",{"_index":4709,"title":{},"body":{"additional-documentation/project-setup-tutorial/routes.html":{}}}],["src/environ",{"_index":4681,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["src/environments/environment.prod.t",{"_index":4685,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["src/environments/environment.t",{"_index":4683,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["ssl",{"_index":4694,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["ssl\",without",{"_index":4695,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["stack",{"_index":2598,"title":{},"body":{"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["stackblitz",{"_index":5014,"title":{"additional-documentation/stackblitz.html":{}},"body":{"additional-documentation/stackblitz.html":{}}}],["stage",{"_index":653,"title":{},"body":{"injectables/AuthService.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["stand",{"_index":904,"title":{},"body":{"classes/Config.html":{}}}],["standard",{"_index":4988,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["start",{"_index":1193,"title":{"changelog.html":{},"index.html":{}},"body":{"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"pipes/MaxItemsPipe.html":{},"components/TabComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{}}}],["startnow",{"_index":4703,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["startth",{"_index":4561,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["state",{"_index":1074,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"components/ListHeaderComponent.html":{},"classes/Pagination.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["statement",{"_index":4860,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{}}}],["static",{"_index":783,"title":{},"body":{"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/LocationModule.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{}}}],["statu",{"_index":2017,"title":{},"body":{"injectables/GeocodeService.html":{},"components/LoaderComponent.html":{}}}],["stay",{"_index":1593,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/SymbolService.html":{}}}],["step",{"_index":3163,"title":{},"body":{"injectables/ModelConfigService.html":{},"additional-documentation/adding-new-packages.html":{}}}],["sticki",{"_index":1012,"title":{},"body":{"components/CrudComponent.html":{},"components/LoginComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/PasswordResetComponent.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{}}}],["still",{"_index":4340,"title":{},"body":{"injectables/TypeConfigService.html":{},"additional-documentation/readme/ui-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["stop",{"_index":1804,"title":{},"body":{"interfaces/FileOptions.html":{},"components/LoaderComponent.html":{},"interfaces/Upload.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["storag",{"_index":2462,"title":{},"body":{"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{}}}],["storagekey",{"_index":2455,"title":{},"body":{"interfaces/ListConfig.html":{}}}],["storagekeyresolv",{"_index":2467,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["store",{"_index":2052,"title":{},"body":{"injectables/HistoryService.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["store(key",{"_index":2480,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["storeconfig",{"_index":2471,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["storeconfig(list",{"_index":2482,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["strategy=endless",{"_index":1505,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["stream",{"_index":2043,"title":{},"body":{"injectables/HistoryService.html":{}}}],["string",{"_index":70,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FieldConfig.html":{},"interfaces/FileOptions.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/LocationPickerComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"miscellaneous/functions.html":{}}}],["string,valu",{"_index":529,"title":{},"body":{"components/AssetListComponent.html":{}}}],["string.replac",{"_index":733,"title":{},"body":{"injectables/AuthService.html":{}}}],["stringfield",{"_index":3588,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["stringfield(label",{"_index":3603,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["stringifi",{"_index":4867,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["strong",{"_index":4757,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["strong.component.t",{"_index":4756,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["strongcompon",{"_index":4755,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["structur",{"_index":1677,"title":{},"body":{"classes/Field.html":{},"components/ListComponent.html":{}}}],["stuff",{"_index":2595,"title":{},"body":{"components/LoaderComponent.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/adding-new-packages.html":{}}}],["style",{"_index":5,"title":{"additional-documentation/readme/style-readme.html":{},"additional-documentation/changelog/style-changelog.html":{}},"body":{"components/AceComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/stackblitz.html":{}}}],["styles.scss",{"_index":4675,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["styleurl",{"_index":33,"title":{},"body":{"components/AceComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/TinymceComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["sub",{"_index":905,"title":{},"body":{"classes/Config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["subbranch",{"_index":2334,"title":{},"body":{"interfaces/ItemConfig.html":{}}}],["subclass",{"_index":2830,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["subject",{"_index":597,"title":{},"body":{"guards/AuthGuard.html":{},"classes/Collection.html":{},"interfaces/Day.html":{},"components/LoginComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"injectables/ResourceService.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"additional-documentation/adding-new-packages.html":{}}}],["submenu",{"_index":2940,"title":{},"body":{"components/MenuComponent.html":{}}}],["submit",{"_index":1876,"title":{},"body":{"interfaces/FormConfig.html":{},"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["submitbuttonlabel",{"_index":1875,"title":{},"body":{"interfaces/FormConfig.html":{},"components/ImageSelectPopComponent.html":{}}}],["subscrib",{"_index":537,"title":{},"body":{"components/AssetListComponent.html":{},"components/CrudComponent.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"components/LocationSearchComponent.html":{},"components/PaginationComponent.html":{},"injectables/ResourceService.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["subscribe((chang",{"_index":2286,"title":{},"body":{"components/InputComponent.html":{}}}],["subscribe((day",{"_index":1276,"title":{},"body":{"interfaces/Day.html":{}}}],["subscribe((ev",{"_index":1867,"title":{},"body":{"directives/FocusDirective.html":{}}}],["subscribe(editor",{"_index":4256,"title":{},"body":{"components/TinymceComponent.html":{}}}],["subscribe(timespan",{"_index":1279,"title":{},"body":{"interfaces/Day.html":{}}}],["subtract(weeksbefor",{"_index":1325,"title":{},"body":{"interfaces/Day.html":{}}}],["succes",{"_index":2825,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["success",{"_index":2759,"title":{},"body":{"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/PasswordResetComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadComponent.html":{}}}],["success/error",{"_index":3232,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["successfulli",{"_index":1050,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/LoginFormComponent.html":{},"components/NotificationsComponent.html":{},"components/SignupFormComponent.html":{}}}],["such",{"_index":1678,"title":{},"body":{"classes/Field.html":{}}}],["suitabl",{"_index":1683,"title":{},"body":{"classes/Field.html":{},"additional-documentation/readme/location-readme.html":{}}}],["summary.json",{"_index":5013,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["super",{"_index":420,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/LocationPickerComponent.html":{},"injectables/ModelConfigService.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["super(elementref",{"_index":360,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/ResourceActionbarState.html":{}}}],["super(popservic",{"_index":1598,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["super(sdk",{"_index":2148,"title":{},"body":{"directives/ImageDirective.html":{}}}],["super.filterdropdownlist(listcompon",{"_index":3575,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["super.load",{"_index":2139,"title":{},"body":{"directives/ImageDirective.html":{}}}],["super.load(id).then(this.use.bind(thi",{"_index":2152,"title":{},"body":{"directives/ImageDirective.html":{}}}],["support",{"_index":1058,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/ModalComponent.html":{},"injectables/NotificationsService.html":{},"modules.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["sure",{"_index":67,"title":{},"body":{"components/AceComponent.html":{},"injectables/CrudService.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/ResourceListPopComponent.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{},"additional-documentation/publishing.html":{}}}],["svg",{"_index":4591,"title":{},"body":{"modules.html":{}}}],["switch",{"_index":1047,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/LoaderComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["switchmap",{"_index":1994,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["symbol",{"_index":938,"title":{"interfaces/Symbol.html":{}},"body":{"components/CrudComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/ErrorComponent.html":{},"injectables/FormService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputErrorsComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"injectables/ModelConfigService.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceConfig.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["symbol'",{"_index":4082,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["symbol.cont",{"_index":4130,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symbol.interfac",{"_index":4096,"title":{},"body":{"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{}}}],["symbol.languag",{"_index":4086,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["symbol.pip",{"_index":4091,"title":{},"body":{"modules/SymbolModule.html":{}}}],["symbol.servic",{"_index":4090,"title":{},"body":{"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{}}}],["symbol/symbol.interfac",{"_index":2106,"title":{},"body":{"components/IconComponent.html":{},"injectables/IconService.html":{}}}],["symbol/symbol.modul",{"_index":1903,"title":{},"body":{"modules/FormModule.html":{},"modules/ListModule.html":{},"modules/UiModule.html":{}}}],["symbol/symbol.servic",{"_index":1225,"title":{},"body":{"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"injectables/FormService.html":{},"injectables/IconService.html":{},"components/InputErrorsComponent.html":{},"components/LoginFormComponent.html":{},"classes/PaginationConfig.html":{}}}],["symbolmodul",{"_index":1890,"title":{"modules/SymbolModule.html":{}},"body":{"modules/FormModule.html":{},"modules/ListModule.html":{},"modules/SymbolModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{}}}],["symbolpip",{"_index":4075,"title":{"injectables/SymbolPipe.html":{}},"body":{"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"overview.html":{}}}],["symbols.map(symbol",{"_index":4131,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symbolservic",{"_index":939,"title":{"injectables/SymbolService.html":{}},"body":{"components/CrudComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/ErrorComponent.html":{},"injectables/FormService.html":{},"injectables/IconService.html":{},"components/ImageSelectPopComponent.html":{},"components/InputErrorsComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"injectables/ModelConfigService.html":{},"classes/PaginationConfig.html":{},"injectables/ResourceConfig.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["symbolservice#set",{"_index":4083,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["symbolservice.get(nam",{"_index":4129,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symbolservice.registri",{"_index":4105,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symbolservice.resolv",{"_index":4095,"title":{},"body":{"injectables/SymbolPipe.html":{}}}],["symbolservice.resolve('moment.format.d",{"_index":1905,"title":{},"body":{"modules/FormModule.html":{}}}],["symbolservice.resolve('moment.format.month",{"_index":1907,"title":{},"body":{"modules/FormModule.html":{}}}],["symbolservice.resolve('moment.format.tim",{"_index":1906,"title":{},"body":{"modules/FormModule.html":{}}}],["symbolservice.resolve(nam",{"_index":4141,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symbolservice.set(symbol",{"_index":4142,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symbolservice.sets[object.keys(symbolservice.sets)[0",{"_index":4119,"title":{},"body":{"injectables/SymbolService.html":{}}}],["symlink",{"_index":4553,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["sync",{"_index":3652,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["syntax",{"_index":4745,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["system",{"_index":1096,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"interfaces/Update.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["t",{"_index":829,"title":{},"body":{"classes/Collection.html":{},"interfaces/ItemConfig.html":{}}}],["tab",{"_index":4144,"title":{},"body":{"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["tab'",{"_index":4148,"title":{},"body":{"components/TabComponent.html":{}}}],["tab'},{'nam",{"_index":291,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["tab.activ",{"_index":4196,"title":{},"body":{"components/TabsComponent.html":{}}}],["tab.component.html",{"_index":4145,"title":{},"body":{"components/TabComponent.html":{}}}],["tab.el.nativeelement.getattribute('select",{"_index":4191,"title":{},"body":{"components/TabsComponent.html":{}}}],["tab.label",{"_index":4200,"title":{},"body":{"components/TabsComponent.html":{}}}],["tab.par",{"_index":4190,"title":{},"body":{"components/TabsComponent.html":{}}}],["tab.rout",{"_index":4197,"title":{},"body":{"components/TabsComponent.html":{}}}],["tab/tab.compon",{"_index":4180,"title":{},"body":{"components/TabsComponent.html":{},"modules/UtilityModule.html":{}}}],["tabcompon",{"_index":290,"title":{"components/TabComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["tabl",{"_index":1248,"title":{},"body":{"interfaces/Day.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["tabs'},{'nam",{"_index":293,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["tabs.component.html",{"_index":4165,"title":{},"body":{"components/TabsComponent.html":{}}}],["tabs/tabs.compon",{"_index":4158,"title":{},"body":{"components/TabComponent.html":{},"modules/UtilityModule.html":{}}}],["tabscompon",{"_index":292,"title":{"components/TabsComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["tag",{"_index":295,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["tagselectcompon",{"_index":294,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["tagsfield",{"_index":3589,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["tagsfield(label",{"_index":3605,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["take",{"_index":918,"title":{},"body":{"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/ErrorComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["target",{"_index":135,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/LoaderComponent.html":{},"components/LocationPickerComponent.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"components/TinymceComponent.html":{}}}],["targetid",{"_index":3751,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["targettyp",{"_index":3752,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["task",{"_index":4564,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["tell",{"_index":1664,"title":{},"body":{"classes/Field.html":{},"interfaces/ListConfig.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"classes/Pagination.html":{},"interfaces/SdkField.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["templat",{"_index":4,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"modules/SymbolModule.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/publishing.html":{}}}],["template::view",{"_index":3678,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["templateid",{"_index":3677,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["templateref",{"_index":3029,"title":{},"body":{"components/ModalComponent.html":{}}}],["templateurl",{"_index":35,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"modules/SymbolModule.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["test",{"_index":4042,"title":{},"body":{"classes/Sorter.html":{},"index.html":{},"additional-documentation/readme.html":{}}}],["text",{"_index":1391,"title":{},"body":{"components/DefaultOutputComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/MenuComponent.html":{},"interfaces/Symbol.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["textarea",{"_index":4319,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["that",{"_index":4702,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["theme",{"_index":59,"title":{},"body":{"components/AceComponent.html":{}}}],["themelist.j",{"_index":153,"title":{},"body":{"components/AceComponent.html":{}}}],["then((_entri",{"_index":1125,"title":{},"body":{"injectables/CrudService.html":{}}}],["then((_resourc",{"_index":3850,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["then((_upload",{"_index":4417,"title":{},"body":{"components/UploadComponent.html":{}}}],["then((asset",{"_index":482,"title":{},"body":{"directives/AssetDirective.html":{},"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["then((assetlist",{"_index":1784,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["then((avail",{"_index":769,"title":{},"body":{"injectables/AuthService.html":{}}}],["then((entri",{"_index":1146,"title":{},"body":{"injectables/CrudService.html":{},"directives/EntryDirective.html":{}}}],["then((fieldconfig",{"_index":3172,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["then((loadedentri",{"_index":1003,"title":{},"body":{"components/CrudComponent.html":{}}}],["then((method",{"_index":987,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["then((minlevel",{"_index":996,"title":{},"body":{"components/CrudComponent.html":{}}}],["then((modelconfig",{"_index":3131,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["then((r",{"_index":724,"title":{},"body":{"injectables/AuthService.html":{},"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["then((resolvedapi",{"_index":712,"title":{},"body":{"injectables/AuthService.html":{}}}],["then((resourc",{"_index":3856,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["then((respons",{"_index":1797,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["then((upload",{"_index":1790,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["then((us",{"_index":2779,"title":{},"body":{"components/LoginComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{}}}],["then(_method",{"_index":757,"title":{},"body":{"injectables/AuthService.html":{}}}],["then(act",{"_index":3560,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["then(asset",{"_index":2193,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["then(dmassetlist",{"_index":1817,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["then(list",{"_index":1508,"title":{},"body":{"directives/EntriesDirective.html":{},"interfaces/ResourceActionbarState.html":{}}}],["then(r",{"_index":749,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["then(result",{"_index":2738,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["then(sourc",{"_index":2068,"title":{},"body":{"injectables/HistoryService.html":{}}}],["then(this.seturl.bind(thi",{"_index":2161,"title":{},"body":{"directives/ImageDirective.html":{}}}],["then(url",{"_index":2195,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["therefor",{"_index":2333,"title":{},"body":{"interfaces/ItemConfig.html":{},"additional-documentation/readme/core-readme.html":{}}}],["this._api",{"_index":3887,"title":{},"body":{"injectables/SdkService.html":{}}}],["this._api.m",{"_index":3951,"title":{},"body":{"injectables/SdkService.html":{}}}],["this._api.resolve().then",{"_index":3923,"title":{},"body":{"injectables/SdkService.html":{}}}],["this._api.resolve().then(api",{"_index":3942,"title":{},"body":{"injectables/SdkService.html":{}}}],["this._api.setclientid(environment.clientid",{"_index":3943,"title":{},"body":{"injectables/SdkService.html":{}}}],["this._toggle.emit(this.act",{"_index":3501,"title":{},"body":{"components/PopComponent.html":{}}}],["this.account",{"_index":3883,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.act",{"_index":1424,"title":{},"body":{"directives/DropzoneDirective.html":{},"components/PopComponent.html":{}}}],["this.actionstack[this.currentid",{"_index":375,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.activ",{"_index":3502,"title":{},"body":{"components/PopComponent.html":{}}}],["this.activated.next",{"_index":4159,"title":{},"body":{"components/TabComponent.html":{}}}],["this.add(item",{"_index":887,"title":{},"body":{"classes/Collection.html":{}}}],["this.add.subscribe((item",{"_index":361,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.addall(item",{"_index":892,"title":{},"body":{"classes/Collection.html":{}}}],["this.additem(item",{"_index":3584,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.api",{"_index":422,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"components/SignupComponent.html":{}}}],["this.apiresolv",{"_index":3924,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.app.tick",{"_index":4259,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.asset",{"_index":483,"title":{},"body":{"directives/AssetDirective.html":{}}}],["this.assetgroup",{"_index":576,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["this.assetgroupid",{"_index":2204,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["this.assetgrouplistpromis",{"_index":1826,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.assetid",{"_index":473,"title":{},"body":{"directives/AssetDirective.html":{},"directives/ImageDirective.html":{}}}],["this.auth.getallowedmodelmethods(this.model",{"_index":985,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.auth.getallowedresourcemethods(this.rel",{"_index":3783,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.auth.login",{"_index":2778,"title":{},"body":{"components/LoginComponent.html":{}}}],["this.auth.resetpassword(this.email",{"_index":3454,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["this.auth.signup",{"_index":3983,"title":{},"body":{"components/SignupComponent.html":{}}}],["this.autofocusfirst",{"_index":2423,"title":{},"body":{"components/ListComponent.html":{}}}],["this.autoload",{"_index":474,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"directives/ImageDirective.html":{}}}],["this.backdrop",{"_index":3064,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.bakery.bake().then",{"_index":3238,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.base64uuid",{"_index":3713,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.calendar.writevalue(valu",{"_index":1213,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["this.canalter(valu",{"_index":1368,"title":{},"body":{"interfaces/Day.html":{}}}],["this.cdr.markforcheck",{"_index":988,"title":{},"body":{"components/CrudComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/PopComponent.html":{}}}],["this.cel",{"_index":1320,"title":{},"body":{"interfaces/Day.html":{}}}],["this.cells[0",{"_index":1295,"title":{},"body":{"interfaces/Day.html":{}}}],["this.cells[this.cells.length",{"_index":1296,"title":{},"body":{"interfaces/Day.html":{}}}],["this.cent",{"_index":2675,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["this.change.asobserv",{"_index":3329,"title":{},"body":{"classes/Pagination.html":{}}}],["this.change.next(this.config",{"_index":3376,"title":{},"body":{"classes/Pagination.html":{}}}],["this.changed.emit",{"_index":2197,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.changed.emit(chang",{"_index":2287,"title":{},"body":{"components/InputComponent.html":{}}}],["this.changed.emit(coord",{"_index":2756,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["this.changed.emit(posit",{"_index":2680,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["this.changed.emit(this.list",{"_index":2427,"title":{},"body":{"components/ListComponent.html":{}}}],["this.changed.emit(this.valu",{"_index":4258,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.changes.asobserv",{"_index":3840,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.changes.asobservable().pip",{"_index":3841,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.changes.next",{"_index":3834,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.changesenvironment.next(environ",{"_index":3928,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.changespan.asobservable().pipe(debouncetime(800",{"_index":1278,"title":{},"body":{"interfaces/Day.html":{}}}],["this.changespan.next(this.timespan",{"_index":1294,"title":{},"body":{"interfaces/Day.html":{}}}],["this.checkpermission(`${model}:${method",{"_index":761,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.checkpermission(`${this.resolvevariables(permissions[method",{"_index":748,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.class",{"_index":3060,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.clean(oldvalu",{"_index":1138,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.clean(valu",{"_index":1133,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.clear",{"_index":4398,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.clickev",{"_index":3495,"title":{},"body":{"components/PopComponent.html":{}}}],["this.collect",{"_index":2418,"title":{},"body":{"components/ListComponent.html":{}}}],["this.color",{"_index":1308,"title":{},"body":{"interfaces/Day.html":{}}}],["this.colors.length",{"_index":2996,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.colors[_moment.toisostr",{"_index":1309,"title":{},"body":{"interfaces/Day.html":{}}}],["this.colors[this.getlevel(level",{"_index":2995,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.column",{"_index":1714,"title":{},"body":{"classes/Field.html":{}}}],["this.columnclicked.emit(item",{"_index":1014,"title":{},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["this.columnclicked.observers.length",{"_index":1013,"title":{},"body":{"components/CrudComponent.html":{},"components/EntryListPopComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["this.componentfactoryresolver.resolvecomponentfactory(compon",{"_index":1461,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["this.componentinst",{"_index":2280,"title":{},"body":{"components/InputComponent.html":{}}}],["this.componentinstance.registeronchang",{"_index":2293,"title":{},"body":{"components/InputComponent.html":{}}}],["this.componentinstance.registeronchange(this.propagatechang",{"_index":2294,"title":{},"body":{"components/InputComponent.html":{}}}],["this.componentinstance.writevalu",{"_index":2296,"title":{},"body":{"components/InputComponent.html":{}}}],["this.componentinstance.writevalue(valu",{"_index":2297,"title":{},"body":{"components/InputComponent.html":{}}}],["this.config",{"_index":391,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/EntryListPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/ResourceListPopComponent.html":{}}}],["this.config.alwaysloadentri",{"_index":999,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.config.availables",{"_index":3383,"title":{},"body":{"classes/Pagination.html":{}}}],["this.config.field",{"_index":995,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.config.level",{"_index":998,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.config.method",{"_index":986,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["this.config.methods.indexof(method",{"_index":989,"title":{},"body":{"components/CrudComponent.html":{},"components/ResourceCrudComponent.html":{}}}],["this.config.pag",{"_index":3370,"title":{},"body":{"classes/Pagination.html":{}}}],["this.config.s",{"_index":3367,"title":{},"body":{"classes/Pagination.html":{}}}],["this.config.singularlabel",{"_index":1605,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["this.config[key",{"_index":914,"title":{},"body":{"classes/Config.html":{}}}],["this.config[key][properti",{"_index":915,"title":{},"body":{"classes/Config.html":{}}}],["this.config[relationnam",{"_index":3611,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.configinput",{"_index":2414,"title":{},"body":{"components/ListComponent.html":{}}}],["this.configure('model",{"_index":3117,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.connectcontrol",{"_index":2282,"title":{},"body":{"components/InputComponent.html":{}}}],["this.container.nativeel",{"_index":4264,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.container.nativeelement.innerhtml",{"_index":2902,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["this.control",{"_index":2274,"title":{},"body":{"components/InputComponent.html":{}}}],["this.control.errors[key",{"_index":2311,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["this.create(model",{"_index":1124,"title":{},"body":{"injectables/CrudService.html":{}}}],["this.create(rel",{"_index":3849,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.create.emit(queri",{"_index":3583,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.create.observers.length",{"_index":3582,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.createclicked.next",{"_index":3788,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.createclicked.observers.length",{"_index":3787,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.created(this.symbol.resolve('field.label.cr",{"_index":3637,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.crud.change({model:'muffin",{"_index":1115,"title":{},"body":{"injectables/CrudService.html":{}}}],["this.crud.save(model",{"_index":3170,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.currentact",{"_index":3566,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.custom",{"_index":4409,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.dat",{"_index":1349,"title":{},"body":{"interfaces/Day.html":{}}}],["this.datamanag",{"_index":3938,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.datamanager.datamanager(this._api.datamanagerid",{"_index":3919,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.date.clone().add(valu",{"_index":1364,"title":{},"body":{"interfaces/Day.html":{}}}],["this.dateformat",{"_index":1223,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["this.dayclicked.emit(_mo",{"_index":1357,"title":{},"body":{"interfaces/Day.html":{}}}],["this.deactivated.next",{"_index":4160,"title":{},"body":{"components/TabComponent.html":{}}}],["this.defaultmonthformat",{"_index":1273,"title":{},"body":{"interfaces/Day.html":{}}}],["this.defaulttim",{"_index":3313,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["this.desktopnotification(inst",{"_index":3300,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["this.destroy",{"_index":4262,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.dis",{"_index":1422,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["this.disabledragend",{"_index":1302,"title":{},"body":{"interfaces/Day.html":{}}}],["this.disabledragstart",{"_index":1301,"title":{},"body":{"interfaces/Day.html":{}}}],["this.disableupdates(key",{"_index":2066,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.displaydate(tru",{"_index":4326,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["this.dmassetconfig",{"_index":1761,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.drag",{"_index":1282,"title":{},"body":{"interfaces/Day.html":{}}}],["this.drag.asobserv",{"_index":1274,"title":{},"body":{"interfaces/Day.html":{}}}],["this.drag.next(day",{"_index":1306,"title":{},"body":{"interfaces/Day.html":{}}}],["this.dragged.first",{"_index":1284,"title":{},"body":{"interfaces/Day.html":{}}}],["this.dragged.last",{"_index":1286,"title":{},"body":{"interfaces/Day.html":{}}}],["this.dropday(day",{"_index":1277,"title":{},"body":{"interfaces/Day.html":{}}}],["this.dropdownlist",{"_index":394,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.dropdownlist.focusfirst",{"_index":395,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.ecasset",{"_index":472,"title":{},"body":{"directives/AssetDirective.html":{}}}],["this.ecdropzone.emit(",{"_index":1429,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["this.ecfocu",{"_index":1866,"title":{},"body":{"directives/FocusDirective.html":{}}}],["this.ecimag",{"_index":2149,"title":{},"body":{"directives/ImageDirective.html":{}}}],["this.ecimage.assetid",{"_index":2150,"title":{},"body":{"directives/ImageDirective.html":{}}}],["this.editor",{"_index":154,"title":{},"body":{"components/AceComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["this.editor.buttons.image.onclick(tru",{"_index":4275,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.editor.destroy",{"_index":2908,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["this.editor.execcommand('mceinsertcont",{"_index":4280,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.editor.getcont",{"_index":2906,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["this.editor.on('chang",{"_index":4277,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.editor.on('dblclick",{"_index":4273,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.editor.remov",{"_index":4261,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.editor.session.setmode('ace/mod",{"_index":169,"title":{},"body":{"components/AceComponent.html":{}}}],["this.editor.setcontent(this.valu",{"_index":4272,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.editor.settheme('ace/them",{"_index":170,"title":{},"body":{"components/AceComponent.html":{}}}],["this.editor.setvalue(this.valu",{"_index":163,"title":{},"body":{"components/AceComponent.html":{}}}],["this.editor.subscribe('editableinput",{"_index":2905,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["this.element.nativeelement.blur",{"_index":1869,"title":{},"body":{"directives/FocusDirective.html":{}}}],["this.element.nativeelement.focu",{"_index":1868,"title":{},"body":{"directives/FocusDirective.html":{}}}],["this.elementref",{"_index":3496,"title":{},"body":{"components/PopComponent.html":{}}}],["this.elementref.nativeel",{"_index":3499,"title":{},"body":{"components/PopComponent.html":{}}}],["this.elementref.nativeelement.classlist.add(`${this.typ",{"_index":3065,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.elementref.nativeelement.classlist.remove(`${typ",{"_index":3063,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.elementref.nativeelement.contains(el",{"_index":3498,"title":{},"body":{"components/PopComponent.html":{}}}],["this.elementref.nativeelement.src",{"_index":2163,"title":{},"body":{"directives/ImageDirective.html":{}}}],["this.emitter.asobserv",{"_index":3293,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["this.emitter.next(inst",{"_index":3301,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["this.enableupdates(resourc",{"_index":2067,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.endless",{"_index":1501,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entri",{"_index":1540,"title":{},"body":{"directives/EntryDirective.html":{}}}],["this.entryid",{"_index":1538,"title":{},"body":{"directives/EntryDirective.html":{}}}],["this.entrylist",{"_index":1513,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entrylist.follownextlink().then(list",{"_index":1519,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entrylist.followprevlink().then(list",{"_index":1520,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entrylist.getallitem",{"_index":1514,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entrylist.hasfirstlink",{"_index":1522,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entrylist.hasnextlink",{"_index":1521,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.entrypop.edit(loadedentri",{"_index":1004,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.environ",{"_index":3890,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.error",{"_index":1616,"title":{},"body":{"components/ErrorComponent.html":{}}}],["this.error.cod",{"_index":1618,"title":{},"body":{"components/ErrorComponent.html":{}}}],["this.error.emit(err",{"_index":2855,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["this.error.messag",{"_index":1619,"title":{},"body":{"components/ErrorComponent.html":{}}}],["this.error.next(error",{"_index":2784,"title":{},"body":{"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["this.errormessag",{"_index":2852,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.ev",{"_index":4410,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.eventsources[key",{"_index":2069,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.eventsources[key].clos",{"_index":2071,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.eventsources[rel",{"_index":2065,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.fb.group",{"_index":2848,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.field",{"_index":2271,"title":{},"body":{"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["this.field.init",{"_index":2289,"title":{},"body":{"components/InputComponent.html":{}}}],["this.field.init(this.componentinst",{"_index":2290,"title":{},"body":{"components/InputComponent.html":{}}}],["this.field.input",{"_index":2279,"title":{},"body":{"components/InputComponent.html":{}}}],["this.field.properti",{"_index":2277,"title":{},"body":{"components/InputComponent.html":{}}}],["this.fieldhost.viewcontainerref",{"_index":1462,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["this.fileinput",{"_index":4397,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.fileinput.nativeelement.click",{"_index":4399,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.fileinput.nativeelement.valu",{"_index":4405,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.fileservice.assetgrouplist().then(assetgroup",{"_index":575,"title":{},"body":{"components/AssetgroupSelectComponent.html":{}}}],["this.fileservice.defaultopt",{"_index":4373,"title":{},"body":{"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["this.fileservice.isnewassetgroupid(this.assetgroupid",{"_index":4414,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.fileservice.isoldassetgroupid(this.assetgroupid",{"_index":2184,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/UploadComponent.html":{}}}],["this.fileservice.uploadassets(fil",{"_index":4415,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.fileservice.uploadfiles(fil",{"_index":4416,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.filestoupload",{"_index":4408,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.focusevent.emit(tru",{"_index":4460,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["this.focusfirst",{"_index":2425,"title":{},"body":{"components/ListComponent.html":{}}}],["this.focusitem",{"_index":2426,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{}}}],["this.focusnext",{"_index":2440,"title":{},"body":{"components/ListComponent.html":{}}}],["this.form",{"_index":2847,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.form.get('password').setvalu",{"_index":2854,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["this.form.reset",{"_index":2862,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.form.valid",{"_index":2860,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.format",{"_index":1351,"title":{},"body":{"interfaces/Day.html":{}}}],["this.formservice.shouldbepartofform(field",{"_index":4487,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["this.generateconfig(model",{"_index":3130,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.geocodelatlng",{"_index":2022,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["this.geocodeservice.autocompleteaddress(this.searchinput.nativeel",{"_index":2755,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["this.geocodeservice.getnearestaddress(valu",{"_index":2737,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.getaccount",{"_index":3936,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.getalgorithm(item",{"_index":4061,"title":{},"body":{"classes/Sorter.html":{}}}],["this.getapi(email",{"_index":711,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.getcolor(1",{"_index":2998,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.getdaycolor(d",{"_index":1339,"title":{},"body":{"interfaces/Day.html":{}}}],["this.getdayheat(d",{"_index":1340,"title":{},"body":{"interfaces/Day.html":{}}}],["this.getfieldconfig(model",{"_index":3171,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.getformdata(fil",{"_index":1782,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.getmonth(date.clon",{"_index":1353,"title":{},"body":{"interfaces/Day.html":{}}}],["this.getmonth(this.date.clon",{"_index":1321,"title":{},"body":{"interfaces/Day.html":{}}}],["this.getpag",{"_index":3381,"title":{},"body":{"classes/Pagination.html":{}}}],["this.getpath(item",{"_index":2992,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.getpermission().then",{"_index":3310,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["this.getresourcelistactions(list",{"_index":3559,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.getstoragekey(list",{"_index":2498,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["this.getsystemfield",{"_index":3147,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.getvalidators(field",{"_index":1948,"title":{},"body":{"injectables/FormService.html":{}}}],["this.group",{"_index":2275,"title":{},"body":{"components/InputComponent.html":{}}}],["this.group.get(this.field.properti",{"_index":2276,"title":{},"body":{"components/InputComponent.html":{}}}],["this.groupchanged.emit(group",{"_index":4400,"title":{},"body":{"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["this.has(item",{"_index":883,"title":{},"body":{"classes/Collection.html":{}}}],["this.heatmap",{"_index":1311,"title":{},"body":{"interfaces/Day.html":{}}}],["this.heatmap[_moment.toisostr",{"_index":1312,"title":{},"body":{"interfaces/Day.html":{}}}],["this.hexcolor",{"_index":3627,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.hid",{"_index":2196,"title":{},"body":{"components/ImageSelectPopComponent.html":{},"components/LoaderComponent.html":{},"components/PopComponent.html":{}}}],["this.hideonclickoutsid",{"_index":3494,"title":{},"body":{"components/PopComponent.html":{}}}],["this.host.nativeelement.classlist.add('i",{"_index":2633,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.host.nativeelement.classlist.remove('i",{"_index":2634,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.hov",{"_index":2999,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.hoverdelay",{"_index":3001,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.icon",{"_index":2107,"title":{},"body":{"components/IconComponent.html":{}}}],["this.iconservice.get(this.nam",{"_index":2108,"title":{},"body":{"components/IconComponent.html":{}}}],["this.iconservice.registri",{"_index":2112,"title":{},"body":{"components/IconComponent.html":{}}}],["this.iconservice.set(emojiicon",{"_index":2103,"title":{},"body":{"components/IconComponent.html":{}}}],["this.iconservice.use(emojiicon",{"_index":2101,"title":{},"body":{"components/IconComponent.html":{}}}],["this.id",{"_index":1709,"title":{},"body":{"classes/Field.html":{}}}],["this.imageform",{"_index":2185,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.imageloader.wait(loadimag",{"_index":2202,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.imageloader.wait(loadimg",{"_index":2220,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.index(item",{"_index":879,"title":{},"body":{"classes/Collection.html":{}}}],["this.init",{"_index":171,"title":{},"body":{"components/AceComponent.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{}}}],["this.init(new",{"_index":2415,"title":{},"body":{"components/ListComponent.html":{}}}],["this.initmethod",{"_index":3781,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.initmod",{"_index":3066,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.initselect",{"_index":392,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.inittab",{"_index":4194,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.invit",{"_index":4018,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["this.isactive(item",{"_index":2997,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.isfirst",{"_index":3374,"title":{},"body":{"classes/Pagination.html":{}}}],["this.isimmutableproperty(key",{"_index":1144,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.islast",{"_index":3373,"title":{},"body":{"classes/Pagination.html":{}}}],["this.isnewasset(a",{"_index":1765,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.isnewasset(unresolv",{"_index":1811,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.isoldassetgroupid(assetgroupid",{"_index":1757,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.isoutside($event.target",{"_index":3497,"title":{},"body":{"components/PopComponent.html":{}}}],["this.item",{"_index":875,"title":{},"body":{"classes/Collection.html":{},"directives/EntriesDirective.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/OutputComponent.html":{}}}],["this.item.getfield(this.properti",{"_index":2272,"title":{},"body":{"components/InputComponent.html":{}}}],["this.items.concat(item",{"_index":1515,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.items.filter((item",{"_index":1516,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.items.find((_item",{"_index":1517,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.items.indexof(item",{"_index":878,"title":{},"body":{"classes/Collection.html":{}}}],["this.items.length",{"_index":886,"title":{},"body":{"classes/Collection.html":{}}}],["this.items.push(item",{"_index":877,"title":{},"body":{"classes/Collection.html":{}}}],["this.items.splice(index",{"_index":893,"title":{},"body":{"classes/Collection.html":{}}}],["this.items.splice(this.index(item",{"_index":888,"title":{},"body":{"classes/Collection.html":{}}}],["this.items.splice(this.items.indexof(item",{"_index":894,"title":{},"body":{"classes/Collection.html":{}}}],["this.label",{"_index":1712,"title":{},"body":{"classes/Field.html":{}}}],["this.lazi",{"_index":4260,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.legacyassetconfig",{"_index":1758,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.level",{"_index":1539,"title":{},"body":{"directives/EntryDirective.html":{}}}],["this.lightmodel",{"_index":1600,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["this.list",{"_index":389,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{}}}],["this.list.change$.subscrib",{"_index":2422,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.change$.subscribe(newlist",{"_index":2572,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["this.list.config",{"_index":2428,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.config.alwaysshowhead",{"_index":2436,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.config.disablehead",{"_index":2433,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.config.selectmod",{"_index":2431,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{}}}],["this.list.config.titl",{"_index":2435,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.fields.length",{"_index":2434,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.filter(properti",{"_index":2444,"title":{},"body":{"components/ListComponent.html":{},"components/ListHeaderComponent.html":{}}}],["this.list.isempti",{"_index":2437,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.isfilt",{"_index":2424,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.item",{"_index":3549,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.list.items[index",{"_index":2438,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.pag",{"_index":2571,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["this.list.page.indexof(this.focusitem",{"_index":2441,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.page.length",{"_index":2443,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.page[index",{"_index":2442,"title":{},"body":{"components/ListComponent.html":{}}}],["this.list.togglevisibility(field",{"_index":2543,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["this.listconfig.applyconfig(this.list",{"_index":2421,"title":{},"body":{"components/ListComponent.html":{}}}],["this.listconfig.storeconfig(this.list",{"_index":2544,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["this.load",{"_index":475,"title":{},"body":{"directives/AssetDirective.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"directives/ImageDirective.html":{},"injectables/LoaderService.html":{},"components/LoginFormComponent.html":{},"classes/Pagination.html":{},"components/SignupFormComponent.html":{},"components/UploadComponent.html":{}}}],["this.loadact",{"_index":3579,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.loadactions(actionsbefor",{"_index":376,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.loadactions(concat",{"_index":3555,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.loadactions(item.getbody().children",{"_index":368,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.loadactions(this.act",{"_index":377,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.loadactions(this.actionstack[this.currentid",{"_index":385,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.loadactionsbefor",{"_index":372,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.loadcomponent(this.compon",{"_index":2278,"title":{},"body":{"components/InputComponent.html":{}}}],["this.loadcomponent(this.field.output",{"_index":3318,"title":{},"body":{"components/OutputComponent.html":{}}}],["this.loaded.emit(asset",{"_index":484,"title":{},"body":{"directives/AssetDirective.html":{}}}],["this.loaded.emit(entri",{"_index":1541,"title":{},"body":{"directives/EntryDirective.html":{}}}],["this.loader.wait(login",{"_index":2786,"title":{},"body":{"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.loader.wait(registr",{"_index":3986,"title":{},"body":{"components/SignupComponent.html":{}}}],["this.loader.wait(reset",{"_index":3467,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["this.loader.wait(this.promis",{"_index":1512,"title":{},"body":{"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{}}}],["this.loaderservice.use(this.globalload",{"_index":2619,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.loaderservice.wait(load",{"_index":2079,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.loaderservice.wait(new",{"_index":2620,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.loaderservice.wait(this.loadentry(item",{"_index":1015,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.loaderservice.wait(this.promises[key",{"_index":2070,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.loaderservice.wait(this.uploadpromis",{"_index":4424,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.loadresourcelistact",{"_index":3536,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.localload",{"_index":2623,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.localloader.wait(new",{"_index":2624,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.lockform",{"_index":3463,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["this.login(this.form.valu",{"_index":2861,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["this.map.setvalue(valu",{"_index":2732,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.map.valu",{"_index":2735,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.maploader.load().then",{"_index":2021,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["this.matches(chang",{"_index":3843,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.mod",{"_index":158,"title":{},"body":{"components/AceComponent.html":{},"components/ModalComponent.html":{}}}],["this.mode.replace(this.typ",{"_index":3057,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.mode.split",{"_index":3055,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.model",{"_index":984,"title":{},"body":{"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/MediumEditorComponent.html":{}}}],["this.modelconfig.getlightmodel(this.model).then(model",{"_index":1599,"title":{},"body":{"components/EntryListPopComponent.html":{}}}],["this.modelconfig.getminlevel(this.model",{"_index":994,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.modelconfig.set('muffin",{"_index":4721,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["this.monthformat",{"_index":1271,"title":{},"body":{"interfaces/Day.html":{}}}],["this.mustreload(item",{"_index":1000,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.nam",{"_index":2110,"title":{},"body":{"components/IconComponent.html":{}}}],["this.nestedcrudconfig",{"_index":4336,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["this.ngzone.run",{"_index":1999,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["this.noapi",{"_index":3920,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.noapi(api",{"_index":3944,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.noclientid",{"_index":708,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.notif",{"_index":1007,"title":{},"body":{"components/CrudComponent.html":{},"components/LoginComponent.html":{},"components/NotificationsComponent.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{}}}],["this.notifications.add(notif",{"_index":3259,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.notifications.emit",{"_index":605,"title":{},"body":{"guards/AuthGuard.html":{},"components/NotificationsComponent.html":{},"components/PasswordResetComponent.html":{}}}],["this.notifications.remove(notif",{"_index":3263,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.notifications.removeall(notification.hid",{"_index":3250,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.notificationservice.defaulttim",{"_index":3247,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.notificationservice.emit",{"_index":1005,"title":{},"body":{"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"components/LoginComponent.html":{},"components/NotificationsComponent.html":{},"interfaces/ResourceActionbarState.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{}}}],["this.notificationservice.emitter$.subscribe((notif",{"_index":3248,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.observeelement(el",{"_index":2013,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["this.oldassetgroupids.includes(assetgroupid",{"_index":1759,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.opt",{"_index":1507,"title":{},"body":{"directives/EntriesDirective.html":{},"components/MediumEditorComponent.html":{},"components/UploadComponent.html":{}}}],["this.options.pag",{"_index":1502,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.options.placehold",{"_index":2903,"title":{},"body":{"components/MediumEditorComponent.html":{}}}],["this.pag",{"_index":3371,"title":{},"body":{"classes/Pagination.html":{}}}],["this.pages.length",{"_index":3372,"title":{},"body":{"classes/Pagination.html":{}}}],["this.pagin",{"_index":2417,"title":{},"body":{"components/ListComponent.html":{},"components/PaginationComponent.html":{}}}],["this.pagination.getpag",{"_index":3407,"title":{},"body":{"components/PaginationComponent.html":{}}}],["this.par",{"_index":2989,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.parent.getlevel(++level",{"_index":2994,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.parent.getpath(this.rout",{"_index":3005,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.placehold",{"_index":1711,"title":{},"body":{"classes/Field.html":{},"components/MediumEditorComponent.html":{}}}],["this.pop",{"_index":3789,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.pop.cr",{"_index":3790,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.pop.edit(item.getbodi",{"_index":3784,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["this.pop.hid",{"_index":4420,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.pop.show",{"_index":4411,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.popservice.stack.add(thi",{"_index":3503,"title":{},"body":{"components/PopComponent.html":{}}}],["this.popservice.stack.remove(thi",{"_index":3505,"title":{},"body":{"components/PopComponent.html":{}}}],["this.promis",{"_index":480,"title":{},"body":{"directives/AssetDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{}}}],["this.promises[key",{"_index":2064,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.propagatechang",{"_index":173,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["this.propagatechange(++this.valu",{"_index":4809,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["this.propagatechange(chang",{"_index":2288,"title":{},"body":{"components/InputComponent.html":{}}}],["this.propagatechange(this.editor.getvalu",{"_index":168,"title":{},"body":{"components/AceComponent.html":{}}}],["this.propagatechange(this.valu",{"_index":2907,"title":{},"body":{"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{}}}],["this.propagatechange(valu",{"_index":2734,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.properti",{"_index":1713,"title":{},"body":{"classes/Field.html":{},"components/InputComponent.html":{}}}],["this.property}_${date.now",{"_index":1710,"title":{},"body":{"classes/Field.html":{}}}],["this.readi",{"_index":156,"title":{},"body":{"components/AceComponent.html":{},"components/MediumEditorComponent.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{}}}],["this.ready.then",{"_index":3918,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.ready.then((editor",{"_index":165,"title":{},"body":{"components/AceComponent.html":{},"components/MediumEditorComponent.html":{}}}],["this.ready.then(editor",{"_index":4270,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.redirect.next",{"_index":615,"title":{},"body":{"guards/AuthGuard.html":{}}}],["this.registri",{"_index":4135,"title":{},"body":{"injectables/SymbolService.html":{}}}],["this.rel",{"_index":3782,"title":{},"body":{"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["this.reload",{"_index":3585,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.remove(item",{"_index":889,"title":{},"body":{"classes/Collection.html":{}}}],["this.remove.subscribe((item",{"_index":370,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.removeall(undefin",{"_index":890,"title":{},"body":{"classes/Collection.html":{}}}],["this.resolv",{"_index":2113,"title":{},"body":{"components/IconComponent.html":{}}}],["this.resourceconfig.get('dmasset",{"_index":1743,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.resourceconfig.get('legacyasset",{"_index":1745,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.resourceconfig.get(rel",{"_index":736,"title":{},"body":{"injectables/AuthService.html":{},"interfaces/ResourceActionbarState.html":{}}}],["this.resourceconfig.get(relation).permiss",{"_index":737,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.resourceconfig.get(this.rel",{"_index":3795,"title":{},"body":{"components/ResourceListPopComponent.html":{}}}],["this.resourceconfig.get(this.state.rel",{"_index":3576,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.resourceservice.change(filt",{"_index":1121,"title":{},"body":{"injectables/CrudService.html":{}}}],["this.resourceservice.change({relation:'model.muffin",{"_index":1117,"title":{},"body":{"injectables/CrudService.html":{}}}],["this.resourceservice.changes.next",{"_index":1136,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"injectables/HistoryService.html":{},"interfaces/Upload.html":{}}}],["this.retrieve(key",{"_index":2489,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["this.roots[this._api.datamanagerid",{"_index":3917,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.rout",{"_index":2981,"title":{},"body":{"components/MenuComponent.html":{},"components/TabsComponent.html":{}}}],["this.route.children",{"_index":2982,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.router.events.subscribe((ev",{"_index":4181,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.router.navig",{"_index":4198,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.router.navigate(['profil",{"_index":4719,"title":{},"body":{"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["this.router.url",{"_index":2991,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.router.url.indexof(path",{"_index":2993,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.router.url.split('?')[0",{"_index":2044,"title":{},"body":{"injectables/HistoryService.html":{}}}],["this.schemarequests[model",{"_index":3946,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.schemarequests[model].api",{"_index":3947,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.schemarequests[model].request",{"_index":3949,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.sdk.account",{"_index":762,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.accounts.m",{"_index":726,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.accounts.signup(email",{"_index":723,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.api",{"_index":477,"title":{},"body":{"directives/AssetDirective.html":{},"injectables/AuthService.html":{},"interfaces/FileOptions.html":{},"interfaces/ResourceActionbarState.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["this.sdk.api.asset(unresolved[0]).then(asset",{"_index":1819,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.sdk.api.asset(value).then(asset",{"_index":2206,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.sdk.api.asset(value.img",{"_index":2192,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.sdk.api.assetgrouplist",{"_index":1827,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.sdk.api.assetlist",{"_index":1820,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.sdk.api.createasset(data",{"_index":1795,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.sdk.api.createassets(data",{"_index":1796,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.sdk.api.createentry(model",{"_index":1145,"title":{},"body":{"injectables/CrudService.html":{}}}],["this.sdk.api.dmasset(this.assetgroupid",{"_index":2200,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.sdk.api.dmassetlist(assetgroupid",{"_index":1814,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.sdk.api.emailavailable(email",{"_index":768,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.api.entry(this.model",{"_index":1001,"title":{},"body":{"components/CrudComponent.html":{},"directives/EntryDirective.html":{}}}],["this.sdk.api.entrylist(this.model",{"_index":1506,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.sdk.api.getfieldconfig(model).then((fieldconfig",{"_index":3145,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.sdk.api.logout",{"_index":766,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.api.m",{"_index":728,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.api.modellist()).then((model",{"_index":3183,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.sdk.api.signup(email",{"_index":721,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.changesenvironment.subscribe(env",{"_index":3833,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.sdk.environ",{"_index":770,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.environment.clientid",{"_index":771,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.init",{"_index":718,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.ready.then",{"_index":3182,"title":{},"body":{"injectables/ModelConfigService.html":{},"interfaces/ResourceActionbarState.html":{}}}],["this.sdk.ready.then((us",{"_index":729,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.ready.then(account",{"_index":3904,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.sdk.ready.then(us",{"_index":604,"title":{},"body":{"guards/AuthGuard.html":{}}}],["this.sdk.root.then((root",{"_index":421,"title":{},"body":{"components/AdminEntryInputComponent.html":{}}}],["this.sdk.sess",{"_index":715,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.session.logout().catch",{"_index":765,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.sdk.us",{"_index":730,"title":{},"body":{"injectables/AuthService.html":{}}}],["this.search.clear",{"_index":2731,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.search.searchinput.nativeelement.valu",{"_index":2736,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.searchbar.clear",{"_index":369,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/ResourceActionbarState.html":{}}}],["this.searchbar.focusevent.emit(tru",{"_index":1604,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["this.searchinput",{"_index":2753,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["this.searchinput.nativeelement.valu",{"_index":2754,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["this.select",{"_index":379,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"interfaces/Day.html":{},"components/EntryListPopComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ResourceListPopComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{}}}],["this.select(match",{"_index":4188,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.select(tab",{"_index":4192,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.selectbyurl(event.url",{"_index":4182,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.selectbyurl(this.router.url",{"_index":4193,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.selected.deactiv",{"_index":4195,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.selected.emit(select",{"_index":2430,"title":{},"body":{"components/ListComponent.html":{}}}],["this.selected.startof('day').diff(_mo",{"_index":1361,"title":{},"body":{"interfaces/Day.html":{}}}],["this.selection.add(item",{"_index":364,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.selection.getvalu",{"_index":397,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.selection.isempti",{"_index":380,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.selection.items[this.selection.items.length",{"_index":382,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.selection.remove(item",{"_index":371,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.selection.removeal",{"_index":384,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{}}}],["this.selection.select(this.list.items[index",{"_index":2439,"title":{},"body":{"components/ListComponent.html":{}}}],["this.selection.toggle(item",{"_index":1603,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["this.selection.update$.subscribe((select",{"_index":2429,"title":{},"body":{"components/ListComponent.html":{}}}],["this.selection.update$.subscribe(newlist",{"_index":2573,"title":{},"body":{"components/ListItemsComponent.html":{}}}],["this.sess",{"_index":3929,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.session.setclientid(environment.clientid",{"_index":3932,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.set",{"_index":4263,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.setd",{"_index":1299,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setdate(_mo",{"_index":1355,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setdate(day.date.clone().subtract(1",{"_index":1298,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setdate(mo",{"_index":1370,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setdate(this.d",{"_index":1316,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setdate(this.date.clone().add(valu",{"_index":1369,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setdate(this.select",{"_index":1314,"title":{},"body":{"interfaces/Day.html":{}}}],["this.setmode(this.mod",{"_index":159,"title":{},"body":{"components/AceComponent.html":{}}}],["this.sets[key",{"_index":4138,"title":{},"body":{"injectables/SymbolService.html":{}}}],["this.sets[object.keys(this.sets)[0",{"_index":4137,"title":{},"body":{"injectables/SymbolService.html":{}}}],["this.settheme(this.them",{"_index":161,"title":{},"body":{"components/AceComponent.html":{}}}],["this.settings.setup",{"_index":4266,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.settings.setup(editor",{"_index":4267,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.settotal(tot",{"_index":3369,"title":{},"body":{"classes/Pagination.html":{}}}],["this.setup.emit(editor",{"_index":4268,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.setvalue(posit",{"_index":2679,"title":{},"body":{"components/LocationMapComponent.html":{}}}],["this.shouldbepartofform(field",{"_index":1946,"title":{},"body":{"injectables/FormService.html":{}}}],["this.show",{"_index":2636,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.show(",{"_index":3500,"title":{},"body":{"components/PopComponent.html":{}}}],["this.showurlinput",{"_index":4459,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["this.signup(this.form.valu",{"_index":4020,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["this.solo",{"_index":2432,"title":{},"body":{"components/ListComponent.html":{},"components/ListItemsComponent.html":{}}}],["this.sorttype[types[0",{"_index":4059,"title":{},"body":{"classes/Sorter.html":{}}}],["this.spanchanged.emit(this.timespan",{"_index":1280,"title":{},"body":{"interfaces/Day.html":{}}}],["this.stack.add(promis",{"_index":2635,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.stack.items.length",{"_index":3526,"title":{},"body":{"injectables/PopService.html":{}}}],["this.stack.items[this.stack.items.length",{"_index":3528,"title":{},"body":{"injectables/PopService.html":{}}}],["this.stack.remove(latestpop",{"_index":3530,"title":{},"body":{"injectables/PopService.html":{}}}],["this.stack.removeal",{"_index":2640,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.stat",{"_index":3556,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["this.storagekeyresolv",{"_index":2496,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["this.store(key",{"_index":2502,"title":{},"body":{"injectables/ListConfigService.html":{}}}],["this.stringfield(this.symbol.resolve('field.label.nam",{"_index":3656,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.submit",{"_index":2859,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.success.emit",{"_index":3464,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["this.success.emit(_upload",{"_index":4418,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.success.emit(r",{"_index":2863,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.success.emit(us",{"_index":2781,"title":{},"body":{"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["this.symbol",{"_index":3638,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('account.field.label.group",{"_index":3665,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('account.field.label.haspendingemail",{"_index":3661,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('account.field.label.languag",{"_index":3662,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('account.field.label.st",{"_index":3668,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('app.field.label.app",{"_index":3686,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('asset.field.label.assetgroupid",{"_index":3701,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('asset.field.label.fil",{"_index":3698,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('asset.field.label.thumb",{"_index":3695,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('client.field.label.callbackurl",{"_index":3731,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('client.field.label.clientid",{"_index":3729,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('datetime.loc",{"_index":3160,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.symbol.resolve('dmaccount.field.label.haspassword",{"_index":3673,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmaccount.field.label.pend",{"_index":3675,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.assetid",{"_index":3719,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.capt",{"_index":3721,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.dupl",{"_index":3722,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.fil",{"_index":3714,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.tag",{"_index":3727,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.thumbnail",{"_index":3724,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('dmasset.field.label.typ",{"_index":3726,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('entries.load.error",{"_index":1511,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.symbol.resolve('entry.load.error",{"_index":1542,"title":{},"body":{"directives/EntryDirective.html":{}}}],["this.symbol.resolve('error",{"_index":1617,"title":{},"body":{"components/ErrorComponent.html":{}}}],["this.symbol.resolve('error.input",{"_index":2312,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["this.symbol.resolve('error.input.invalid",{"_index":2313,"title":{},"body":{"components/InputErrorsComponent.html":{}}}],["this.symbol.resolve('error.load",{"_index":1011,"title":{},"body":{"components/CrudComponent.html":{}}}],["this.symbol.resolve('error.upload",{"_index":4423,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.symbol.resolve('field.creator.ecus",{"_index":4351,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["this.symbol.resolve('field.label.config",{"_index":3630,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.cr",{"_index":3122,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.symbol.resolve('field.label.descript",{"_index":3629,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.email",{"_index":3657,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.id",{"_index":3120,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.label",{"_index":3738,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.modifi",{"_index":3127,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.symbol.resolve('field.label.nam",{"_index":3737,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.password",{"_index":3659,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.shortid",{"_index":3685,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.titl",{"_index":3670,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('field.label.typ",{"_index":3748,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('imag",{"_index":2186,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["this.symbol.resolve('login.button.label",{"_index":2809,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('login.email.label",{"_index":2812,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('login.email.placehold",{"_index":2814,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('login.error",{"_index":2783,"title":{},"body":{"components/LoginComponent.html":{}}}],["this.symbol.resolve('login.password.label",{"_index":2818,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('login.password.placehold",{"_index":2820,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('login.success",{"_index":2780,"title":{},"body":{"components/LoginComponent.html":{}}}],["this.symbol.resolve('moment.format.d",{"_index":1228,"title":{},"body":{"pipes/DatetimePipe.html":{},"injectables/TypeConfigService.html":{}}}],["this.symbol.resolve('moment.format.month",{"_index":1272,"title":{},"body":{"interfaces/Day.html":{}}}],["this.symbol.resolve('moment.format.tim",{"_index":4349,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["this.symbol.resolve('platform.field.label.platform",{"_index":3689,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('platform.field.label.platformtyp",{"_index":3691,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('resourc",{"_index":1964,"title":{},"body":{"injectables/FormService.html":{}}}],["this.symbol.resolve('resource.gener",{"_index":1924,"title":{},"body":{"injectables/FormService.html":{}}}],["this.symbol.resolve('role.field.label.account",{"_index":3739,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('role.field.label.addregist",{"_index":3742,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('role.field.label.addunregist",{"_index":3744,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('signup.button.label",{"_index":3990,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('signup.error",{"_index":3985,"title":{},"body":{"components/SignupComponent.html":{}}}],["this.symbol.resolve('signup.invite.placehold",{"_index":3993,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["this.symbol.resolve('signup.success",{"_index":3984,"title":{},"body":{"components/SignupComponent.html":{}}}],["this.symbol.resolve('success.upload",{"_index":4419,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.symbol.resolve('template.field.label.templ",{"_index":3679,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve('template.field.label.vers",{"_index":3681,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.symbol.resolve(nam",{"_index":4097,"title":{},"body":{"injectables/SymbolPipe.html":{}}}],["this.symbols.set(en",{"_index":4081,"title":{},"body":{"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["this.tab",{"_index":4183,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.tabs.find((tab",{"_index":4185,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.tabs.foreach((tab",{"_index":4189,"title":{},"body":{"components/TabsComponent.html":{}}}],["this.tagsfield(this.symbol.resolve('account.field.label.permiss",{"_index":3664,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.tagsfield(this.symbol.resolve('asset.field.label.tag",{"_index":3699,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.tagsfield(this.symbol.resolve('client.field.label.disablestrategi",{"_index":3735,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.tagsfield(this.symbol.resolve('client.field.label.tokenmethod",{"_index":3733,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.tagsfield(this.symbol.resolve('datamanager.field.label.publicassetright",{"_index":3634,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.tagsfield(this.symbol.resolve('field.label.local",{"_index":3632,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.them",{"_index":160,"title":{},"body":{"components/AceComponent.html":{}}}],["this.thumb",{"_index":2158,"title":{},"body":{"directives/ImageDirective.html":{}}}],["this.tim",{"_index":3246,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["this.timeout",{"_index":3000,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.timespan",{"_index":1293,"title":{},"body":{"interfaces/Day.html":{}}}],["this.timespan[1",{"_index":1338,"title":{},"body":{"interfaces/Day.html":{}}}],["this.timestamp",{"_index":2638,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.tot",{"_index":3375,"title":{},"body":{"classes/Pagination.html":{}}}],["this.tre",{"_index":2396,"title":{},"body":{"components/ListComponent.html":{}}}],["this.typ",{"_index":3054,"title":{},"body":{"components/ModalComponent.html":{},"classes/Notification.html":{}}}],["this.typeconfig.displayaccount",{"_index":3129,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.typeconfig.displayd",{"_index":3123,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["this.typeconfig.get(fieldconfig[field].type).inputview",{"_index":3138,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.typeconfig.get(typ",{"_index":3158,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["this.typeconfig.groupd",{"_index":3124,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["this.typeconfig.set('loc",{"_index":4827,"title":{},"body":{"additional-documentation/readme/location-readme.html":{}}}],["this.types.foreach(typ",{"_index":3062,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.types.includes(this.typ",{"_index":3056,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.types.join",{"_index":3059,"title":{},"body":{"components/ModalComponent.html":{}}}],["this.types[typ",{"_index":4341,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["this.upd",{"_index":1615,"title":{},"body":{"components/ErrorComponent.html":{},"components/TinymceComponent.html":{}}}],["this.update(model",{"_index":1123,"title":{},"body":{"injectables/CrudService.html":{}}}],["this.update(rel",{"_index":3848,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["this.update.asobserv",{"_index":831,"title":{},"body":{"classes/Collection.html":{}}}],["this.update.next(thi",{"_index":884,"title":{},"body":{"classes/Collection.html":{}}}],["this.update.next(this.editor",{"_index":4279,"title":{},"body":{"components/TinymceComponent.html":{}}}],["this.updateaddress",{"_index":2733,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["this.upload(fil",{"_index":4412,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.uploader.trigger(",{"_index":4464,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["this.uploader.uploadfiles(url",{"_index":4461,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["this.uploadfiles(e.target.fil",{"_index":4404,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.uploadpromis",{"_index":4413,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.uploadpromise.then",{"_index":4425,"title":{},"body":{"components/UploadComponent.html":{}}}],["this.uploads.emit(upload",{"_index":1791,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["this.url",{"_index":2162,"title":{},"body":{"directives/ImageDirective.html":{}}}],["this.urlstoupload",{"_index":4463,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["this.us",{"_index":3937,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.use(this.ecimag",{"_index":2151,"title":{},"body":{"directives/ImageDirective.html":{}}}],["this.use(this.sets[key",{"_index":4140,"title":{},"body":{"injectables/SymbolService.html":{}}}],["this.usedatamanager(environment.datamanagerid",{"_index":3935,"title":{},"body":{"injectables/SdkService.html":{}}}],["this.usedesktopnotif",{"_index":3299,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["this.uselist(list",{"_index":1509,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["this.uuid",{"_index":3623,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["this.valu",{"_index":162,"title":{},"body":{"components/AceComponent.html":{},"components/InputComponent.html":{},"components/LocationMapComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["this.vanishdelay",{"_index":3003,"title":{},"body":{"components/MenuComponent.html":{}}}],["this.vis",{"_index":2632,"title":{},"body":{"components/LoaderComponent.html":{}}}],["this.writevalue(this.valu",{"_index":2295,"title":{},"body":{"components/InputComponent.html":{}}}],["those",{"_index":1704,"title":{},"body":{"classes/Field.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["three",{"_index":3083,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["through",{"_index":2049,"title":{},"body":{"injectables/HistoryService.html":{},"components/PasswordResetComponent.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["throw",{"_index":478,"title":{},"body":{"directives/AssetDirective.html":{},"injectables/HistoryService.html":{},"components/LoaderComponent.html":{},"components/ModalComponent.html":{},"classes/Pagination.html":{},"injectables/SdkService.html":{},"injectables/SymbolService.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["thrown",{"_index":1614,"title":{},"body":{"components/ErrorComponent.html":{}}}],["thumb",{"_index":2130,"title":{},"body":{"directives/ImageDirective.html":{},"injectables/ResourceConfig.html":{}}}],["thumbnail",{"_index":3723,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["thumbsiz",{"_index":3706,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["tick",{"_index":4212,"title":{},"body":{"components/TinymceComponent.html":{}}}],["time",{"_index":804,"title":{},"body":{"modules/CalendarModule.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/ListHeaderComponent.html":{},"components/LoaderComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["timeout",{"_index":2926,"title":{},"body":{"components/MenuComponent.html":{}}}],["timespan",{"_index":1243,"title":{},"body":{"interfaces/Day.html":{}}}],["timestamp",{"_index":2599,"title":{},"body":{"components/LoaderComponent.html":{}}}],["tini",{"_index":4216,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymc",{"_index":4202,"title":{"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}},"body":{"components/TinymceComponent.html":{},"dependencies.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["tinymce'},{'nam",{"_index":297,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["tinymce.component.html",{"_index":4205,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce.component.scss",{"_index":4204,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/autolink",{"_index":4239,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/autores",{"_index":4240,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/cod",{"_index":4241,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/colorpick",{"_index":4242,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/contextmenu",{"_index":4243,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/fullscreen",{"_index":4244,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/link",{"_index":4245,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/list",{"_index":4246,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/past",{"_index":4247,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/t",{"_index":4248,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/templ",{"_index":4249,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/textcolor",{"_index":4250,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/plugins/visualblock",{"_index":4251,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/themes/modern",{"_index":4252,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/tinymc",{"_index":4238,"title":{},"body":{"components/TinymceComponent.html":{}}}],["tinymce/tinymce.compon",{"_index":4286,"title":{},"body":{"modules/TinymceModule.html":{}}}],["tinymcecompon",{"_index":296,"title":{"components/TinymceComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"modules/TinymceModule.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["tinymcemodul",{"_index":4281,"title":{"modules/TinymceModule.html":{}},"body":{"modules/TinymceModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/readme/tinymce-readme.html":{}}}],["tinymcemoduleconfig",{"_index":4287,"title":{},"body":{"modules/TinymceModule.html":{}}}],["tip",{"_index":4620,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["titel",{"_index":3119,"title":{},"body":{"injectables/ModelConfigService.html":{},"components/NotificationsComponent.html":{}}}],["titel'",{"_index":3112,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["titl",{"_index":344,"title":{},"body":{"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"guards/AuthGuard.html":{},"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ItemConfig.html":{},"interfaces/ListConfig.html":{},"components/LoginComponent.html":{},"components/MenuComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/PasswordResetComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"interfaces/SdkField.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["titlefield",{"_index":3643,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["toast",{"_index":1565,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ModalComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["today",{"_index":1240,"title":{},"body":{"interfaces/Day.html":{}}}],["todo",{"_index":571,"title":{},"body":{"components/AssetgroupSelectComponent.html":{},"classes/Config.html":{},"injectables/CrudService.html":{},"directives/DropzoneDirective.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"injectables/FormService.html":{},"interfaces/ItemConfig.html":{},"components/MenuComponent.html":{},"components/PaginationComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/TabsComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["togeth",{"_index":1684,"title":{},"body":{"classes/Field.html":{}}}],["toggl",{"_index":820,"title":{},"body":{"classes/Collection.html":{},"components/EntryListPopComponent.html":{},"injectables/HistoryService.html":{},"components/ImageSelectPopComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"components/ToggleComponent.html":{}}}],["toggle'},{'nam",{"_index":299,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["toggle(",{"_index":1584,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["toggle(item",{"_index":862,"title":{},"body":{"classes/Collection.html":{}}}],["toggle(resourc",{"_index":2050,"title":{},"body":{"injectables/HistoryService.html":{}}}],["toggle.component.html",{"_index":4291,"title":{},"body":{"components/ToggleComponent.html":{}}}],["toggle/toggle.compon",{"_index":1898,"title":{},"body":{"modules/FormModule.html":{}}}],["togglecompon",{"_index":298,"title":{"components/ToggleComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FormModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["toggleurlinput",{"_index":4435,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["togglevis",{"_index":2516,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["togglevisibility(field",{"_index":2529,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["token",{"_index":4686,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["tokenmethod",{"_index":3732,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["top",{"_index":3085,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["total",{"_index":3320,"title":{},"body":{"classes/Pagination.html":{}}}],["total>0",{"_index":4928,"title":{},"body":{"additional-documentation/changelog/ui-changelog.html":{}}}],["touch",{"_index":4295,"title":{},"body":{"components/ToggleComponent.html":{}}}],["track",{"_index":2034,"title":{},"body":{"injectables/HistoryService.html":{},"components/InputErrorsComponent.html":{},"classes/Pagination.html":{}}}],["transform",{"_index":1218,"title":{},"body":{"pipes/DatetimePipe.html":{},"classes/Field.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"interfaces/ListConfig.html":{},"pipes/MaxItemsPipe.html":{},"injectables/SymbolPipe.html":{},"pipes/VisibleFieldsPipe.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["transform(array",{"_index":2869,"title":{},"body":{"pipes/MaxItemsPipe.html":{}}}],["transform(field",{"_index":4482,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["transform(item",{"_index":2029,"title":{},"body":{"pipes/GroupPipe.html":{}}}],["transform(nam",{"_index":4093,"title":{},"body":{"injectables/SymbolPipe.html":{}}}],["transform(valu",{"_index":1219,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["translat",{"_index":3393,"title":{},"body":{"components/PaginationComponent.html":{},"modules/SymbolModule.html":{},"injectables/SymbolPipe.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["tree",{"_index":7,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/ui-readme.html":{}}}],["tri",{"_index":2758,"title":{},"body":{"components/LoginComponent.html":{},"components/SignupComponent.html":{}}}],["trigger",{"_index":2372,"title":{},"body":{"components/ListComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/UploadComponent.html":{}}}],["trigger(",{"_index":4384,"title":{},"body":{"components/UploadComponent.html":{}}}],["triggerupload",{"_index":4436,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["triggerupload(",{"_index":4450,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["true",{"_index":30,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"directives/DropzoneDirective.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"modules/SelectModule.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"interfaces/WithNotifications.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["ts",{"_index":3925,"title":{},"body":{"injectables/SdkService.html":{}}}],["tsconfig.json",{"_index":4996,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["tslib",{"_index":4528,"title":{},"body":{"dependencies.html":{}}}],["tslint:dis",{"_index":1864,"title":{},"body":{"directives/FocusDirective.html":{},"components/ListComponent.html":{},"components/PopComponent.html":{}}}],["turn",{"_index":513,"title":{},"body":{"components/AssetListComponent.html":{},"directives/DropzoneDirective.html":{},"injectables/GeocodeService.html":{},"interfaces/ListConfig.html":{}}}],["tutori",{"_index":4661,"title":{"additional-documentation/project-setup-tutorial.html":{}},"body":{"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/routes.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/publishing.html":{}}}],["twice",{"_index":4857,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{}}}],["two",{"_index":3086,"title":{},"body":{"injectables/ModelConfigService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["type",{"_index":69,"title":{},"body":{"components/AceComponent.html":{},"interfaces/Action.html":{},"interfaces/ActionbarConfig.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"interfaces/Day.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"interfaces/Focus.html":{},"directives/FocusDirective.html":{},"interfaces/FormConfig.html":{},"injectables/FormService.html":{},"injectables/GeocodeService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"interfaces/ModelConfig.html":{},"injectables/ModelConfigService.html":{},"interfaces/ModelConfiguration.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"interfaces/ResourceActionbarState.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"interfaces/Symbol.html":{},"injectables/SymbolPipe.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"pipes/VisibleFieldsPipe.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"miscellaneous/typealiases.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["type'",{"_index":4301,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["type.includes('asset",{"_index":3153,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["type.replace('a",{"_index":3154,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["typealias",{"_index":4597,"title":{"miscellaneous/typealiases.html":{}},"body":{}}],["typeconfig",{"_index":1755,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"additional-documentation/readme/location-readme.html":{}}}],["typeconfig.inputview",{"_index":3162,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["typeconfig.placehold",{"_index":3161,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["typeconfigservic",{"_index":1158,"title":{"injectables/TypeConfigService.html":{}},"body":{"modules/DataModule.html":{},"interfaces/FileOptions.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"overview.html":{},"additional-documentation/readme/location-readme.html":{}}}],["typeconfigservice#get",{"_index":3097,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["typed.isvalid",{"_index":1231,"title":{},"body":{"pipes/DatetimePipe.html":{}}}],["typeof",{"_index":1766,"title":{},"body":{"interfaces/FileOptions.html":{},"directives/ImageDirective.html":{},"components/InputComponent.html":{},"injectables/ListConfigService.html":{},"classes/Sorter.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{}}}],["types.length",{"_index":4058,"title":{},"body":{"classes/Sorter.html":{}}}],["types[0",{"_index":4060,"title":{},"body":{"classes/Sorter.html":{}}}],["typescript",{"_index":874,"title":{},"body":{"classes/Collection.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/core-readme.html":{}}}],["typic",{"_index":3231,"title":{},"body":{"components/NotificationsComponent.html":{}}}],["ui",{"_index":944,"title":{"additional-documentation/readme/ui-readme.html":{},"additional-documentation/changelog/ui-changelog.html":{}},"body":{"components/CrudComponent.html":{},"components/LoginFormComponent.html":{},"classes/PaginationConfig.html":{},"components/ResourceCrudComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["ui/src/notifications/notif",{"_index":5002,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["ui/src/notifications/with",{"_index":5003,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["uimodul",{"_index":622,"title":{"modules/UiModule.html":{}},"body":{"modules/AuthModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/LocationModule.html":{},"modules/ResourceModule.html":{},"modules/UiModule.html":{},"modules.html":{},"overview.html":{},"additional-documentation/readme/ui-readme.html":{}}}],["uimoduleconfig",{"_index":4359,"title":{},"body":{"modules/UiModule.html":{}}}],["ul",{"_index":3404,"title":{},"body":{"components/PaginationComponent.html":{}}}],["undefin",{"_index":1087,"title":{},"body":{"injectables/CrudService.html":{},"injectables/GeocodeService.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"injectables/ResourceService.html":{},"classes/Sorter.html":{},"interfaces/Update.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["under",{"_index":2053,"title":{},"body":{"injectables/HistoryService.html":{},"interfaces/Symbol.html":{},"additional-documentation/adding-new-packages.html":{}}}],["underlin",{"_index":3011,"title":{},"body":{"components/MenuComponent.html":{}}}],["ungültig",{"_index":4329,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["uniqu",{"_index":833,"title":{},"body":{"classes/Collection.html":{},"injectables/ModelConfigService.html":{},"interfaces/SdkField.html":{},"interfaces/Symbol.html":{},"modules/SymbolModule.html":{},"additional-documentation/project-setup-tutorial/localization.html":{}}}],["unit",{"_index":4583,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["unresolv",{"_index":1806,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["unresolved.length",{"_index":1809,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["until",{"_index":2606,"title":{},"body":{"components/LoaderComponent.html":{}}}],["up",{"_index":1043,"title":{},"body":{"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"interfaces/ModelConfig.html":{},"interfaces/ModelConfiguration.html":{},"components/NotificationsComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceService.html":{},"modules/SymbolModule.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/readme.html":{},"additional-documentation/publishing.html":{}}}],["updat",{"_index":495,"title":{"interfaces/Update.html":{}},"body":{"components/AssetListComponent.html":{},"classes/Collection.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"interfaces/Day.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"injectables/HistoryService.html":{},"components/LocationPickerComponent.html":{},"components/MenuComponent.html":{},"classes/Pagination.html":{},"injectables/ResourceService.html":{},"components/TinymceComponent.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["update(model",{"_index":1101,"title":{},"body":{"injectables/CrudService.html":{}}}],["update(rel",{"_index":3825,"title":{},"body":{"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["updateaddress",{"_index":2711,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["updateon",{"_index":1951,"title":{},"body":{"injectables/FormService.html":{}}}],["updates",{"_index":3324,"title":{},"body":{"classes/Pagination.html":{},"components/PaginationComponent.html":{}}}],["updatesize(s",{"_index":3357,"title":{},"body":{"classes/Pagination.html":{}}}],["updatesize(valu",{"_index":3395,"title":{},"body":{"components/PaginationComponent.html":{}}}],["upgrad",{"_index":4600,"title":{"additional-documentation/angular-7-upgrade-guide.html":{}},"body":{}}],["upload",{"_index":303,"title":{"interfaces/Upload.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"interfaces/FileOptions.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["upload'},{'nam",{"_index":301,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["upload(fil",{"_index":4386,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.assetgroup",{"_index":4426,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.brows",{"_index":4468,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["upload.component.html",{"_index":4362,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.dedupl",{"_index":4430,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.ignoredupl",{"_index":4429,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.includeassetidinpath",{"_index":4428,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.link",{"_index":4465,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["upload.or",{"_index":4466,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["upload.preservefilenam",{"_index":4427,"title":{},"body":{"components/UploadComponent.html":{}}}],["upload.url",{"_index":4467,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["upload.url.start",{"_index":4469,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["upload/upload.compon",{"_index":1851,"title":{},"body":{"modules/FilesModule.html":{},"components/UploadSelectComponent.html":{}}}],["uploadassets(fil",{"_index":1777,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["uploadcompon",{"_index":300,"title":{"components/UploadComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["uploadfil",{"_index":4367,"title":{},"body":{"components/UploadComponent.html":{}}}],["uploadfiles(fil",{"_index":1793,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{}}}],["uploadfromurl",{"_index":4437,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["uploadfromurls(url",{"_index":4452,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["uploadpromis",{"_index":4365,"title":{},"body":{"components/UploadComponent.html":{}}}],["uploadselectcompon",{"_index":302,"title":{"components/UploadSelectComponent.html":{}},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"modules/FilesModule.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"overview.html":{}}}],["upon",{"_index":1076,"title":{},"body":{"injectables/CrudService.html":{},"interfaces/FileOptions.html":{},"components/LoaderComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["url",{"_index":1048,"title":{},"body":{"interfaces/CrudConfig.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["url.split",{"_index":4184,"title":{},"body":{"components/TabsComponent.html":{}}}],["urlexpir",{"_index":3703,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["urlstoupload",{"_index":4434,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["us",{"_index":60,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"components/IconComponent.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"directives/SlotHostDirective.html":{},"classes/Sorter.html":{},"modules/SymbolModule.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{},"components/UploadComponent.html":{},"interfaces/WithLoader.html":{},"interfaces/WithNotifications.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/project-setup-tutorial/authorization.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/data-readme.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/calendar-readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/stackblitz.html":{},"additional-documentation/publishing.html":{}}}],["usag",{"_index":1685,"title":{},"body":{"classes/Field.html":{},"components/LoaderComponent.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"classes/Sorter.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{}}}],["use(asset",{"_index":2144,"title":{},"body":{"directives/ImageDirective.html":{}}}],["use(load",{"_index":2649,"title":{},"body":{"injectables/LoaderService.html":{}}}],["use(symbol",{"_index":4114,"title":{},"body":{"injectables/SymbolService.html":{}}}],["usedatamanag",{"_index":3879,"title":{},"body":{"injectables/SdkService.html":{}}}],["usedatamanager(shortid",{"_index":3893,"title":{},"body":{"injectables/SdkService.html":{}}}],["usedesktopnotif",{"_index":3272,"title":{},"body":{"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{}}}],["useexist",{"_index":27,"title":{},"body":{"components/AceComponent.html":{},"modules/AceModule.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"modules/MediumEditorModule.html":{},"modules/SelectModule.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"overview.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["uselist",{"_index":1472,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["uselist(entrylist",{"_index":1491,"title":{},"body":{"directives/EntriesDirective.html":{}}}],["user",{"_index":583,"title":{},"body":{"guards/AuthGuard.html":{},"injectables/AuthService.html":{},"classes/Notification.html":{},"injectables/NotificationsService.html":{},"components/PasswordResetComponent.html":{},"injectables/ResourceConfig.html":{},"injectables/SdkService.html":{},"components/TinymceComponent.html":{}}}],["uses",{"_index":4311,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["useset",{"_index":4100,"title":{},"body":{"injectables/SymbolService.html":{}}}],["useset(key",{"_index":4116,"title":{},"body":{"injectables/SymbolService.html":{}}}],["usevalu",{"_index":650,"title":{},"body":{"injectables/AuthService.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FormModule.html":{},"modules/LocationModule.html":{},"modules/NotificationsModule.html":{},"injectables/NotificationsService.html":{},"injectables/SdkService.html":{}}}],["util",{"_index":3095,"title":{},"body":{"injectables/ModelConfigService.html":{},"additional-documentation/readme/ui-readme.html":{}}}],["utility/utility.modul",{"_index":2584,"title":{},"body":{"modules/ListModule.html":{},"modules/UiModule.html":{}}}],["utility/validators/field",{"_index":4017,"title":{},"body":{"components/SignupFormComponent.html":{}}}],["utilitymodul",{"_index":2581,"title":{"modules/UtilityModule.html":{}},"body":{"modules/ListModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"modules.html":{},"overview.html":{}}}],["utilitymoduleconfig",{"_index":4477,"title":{},"body":{"modules/UtilityModule.html":{}}}],["uuid",{"_index":3590,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["ux",{"_index":3433,"title":{},"body":{"classes/PaginationConfig.html":{}}}],["v",{"_index":3573,"title":{},"body":{"interfaces/ResourceActionbarState.html":{}}}],["v.name",{"_index":3140,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["valid",{"_index":1634,"title":{},"body":{"classes/Field.html":{},"interfaces/FileOptions.html":{},"injectables/FormService.html":{},"components/LoginFormComponent.html":{},"injectables/ModelConfigService.html":{},"interfaces/SdkField.html":{},"components/SignupFormComponent.html":{},"interfaces/Symbol.html":{},"injectables/TypeConfigService.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["validatefactori",{"_index":1917,"title":{},"body":{"injectables/FormService.html":{}}}],["validatefactory(field",{"_index":1934,"title":{},"body":{"injectables/FormService.html":{}}}],["validationerror",{"_index":1937,"title":{},"body":{"injectables/FormService.html":{}}}],["validatorfn",{"_index":1930,"title":{},"body":{"injectables/FormService.html":{}}}],["validators.push(this.validatefactory(field",{"_index":1961,"title":{},"body":{"injectables/FormService.html":{}}}],["validators.push(validators.requir",{"_index":1960,"title":{},"body":{"injectables/FormService.html":{}}}],["validators.requir",{"_index":2849,"title":{},"body":{"components/LoginFormComponent.html":{},"components/SignupFormComponent.html":{}}}],["validators/field",{"_index":2845,"title":{},"body":{"components/LoginFormComponent.html":{}}}],["valu",{"_index":43,"title":{},"body":{"components/AceComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"classes/Config.html":{},"components/CrudComponent.html":{},"interfaces/CrudConfig.html":{},"injectables/CrudService.html":{},"components/DatetimeComponent.html":{},"pipes/DatetimePipe.html":{},"components/DefaultOutputComponent.html":{},"directives/DropzoneDirective.html":{},"components/DynamicSlotComponent.html":{},"directives/EntriesDirective.html":{},"components/EntryListPopComponent.html":{},"classes/Field.html":{},"injectables/FormService.html":{},"pipes/GroupPipe.html":{},"injectables/HistoryService.html":{},"injectables/IconService.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"interfaces/ItemConfig.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"pipes/MaxItemsPipe.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"injectables/PopService.html":{},"injectables/ResourceConfig.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/SdkField.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"classes/Sorter.html":{},"injectables/SymbolService.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"interfaces/Update.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["value).then(asset",{"_index":2212,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["value.alt",{"_index":2198,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["value.hasownproperty(key",{"_index":1141,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["value.height",{"_index":2191,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["value.img",{"_index":2201,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["value.latitud",{"_index":4338,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["value.length",{"_index":1689,"title":{},"body":{"classes/Field.html":{},"injectables/ResourceConfig.html":{}}}],["value.longitud",{"_index":4337,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["value.map(group",{"_index":3666,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["value.nam",{"_index":4339,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["value.split",{"_index":4324,"title":{},"body":{"injectables/TypeConfigService.html":{}}}],["value.titl",{"_index":3740,"title":{},"body":{"injectables/ResourceConfig.html":{},"injectables/TypeConfigService.html":{}}}],["value.touppercas",{"_index":1688,"title":{},"body":{"classes/Field.html":{}}}],["value.url",{"_index":3715,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["value[key",{"_index":1142,"title":{},"body":{"injectables/CrudService.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{}}}],["values.map(valu",{"_index":3725,"title":{},"body":{"injectables/ResourceConfig.html":{}}}],["vanishdelay",{"_index":2937,"title":{},"body":{"components/MenuComponent.html":{}}}],["var",{"_index":181,"title":{},"body":{"components/AceComponent.html":{},"components/AdminEntryInputComponent.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{},"components/DefaultInputComponent.html":{},"components/DefaultOutputComponent.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"injectables/GeocodeService.html":{},"components/IconComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/InputErrorsComponent.html":{},"components/ListComponent.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"components/NotificationsComponent.html":{},"components/OutputComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["variabl",{"_index":685,"title":{},"body":{"injectables/AuthService.html":{},"components/TabsComponent.html":{}}}],["variables[key",{"_index":734,"title":{},"body":{"injectables/AuthService.html":{}}}],["variou",{"_index":2594,"title":{},"body":{"components/LoaderComponent.html":{}}}],["verifi",{"_index":2002,"title":{},"body":{"injectables/GeocodeService.html":{}}}],["versendet",{"_index":3455,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["version",{"_index":3680,"title":{},"body":{"injectables/ResourceConfig.html":{},"index.html":{},"additional-documentation/angular-7-upgrade-guide.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{},"additional-documentation/changelog/core-changelog.html":{},"additional-documentation/changelog/style-changelog.html":{},"additional-documentation/changelog/calendar-changelog.html":{},"additional-documentation/changelog/location-changelog.html":{},"additional-documentation/changelog/ace-changelog.html":{},"additional-documentation/changelog/medium-editor-changelog.html":{},"additional-documentation/changelog/tinymce-changelog.html":{},"additional-documentation/adding-new-packages.html":{}}}],["via",{"_index":588,"title":{},"body":{"guards/AuthGuard.html":{},"classes/Config.html":{},"interfaces/CrudConfig.html":{},"components/InputComponent.html":{},"components/LoginComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"classes/Pagination.html":{},"components/SignupComponent.html":{},"modules/SymbolModule.html":{},"components/TabsComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/localization.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{}}}],["viabl",{"_index":1701,"title":{},"body":{"classes/Field.html":{}}}],["video",{"_index":1749,"title":{},"body":{"interfaces/FileOptions.html":{},"interfaces/Upload.html":{}}}],["view",{"_index":1251,"title":{},"body":{"interfaces/Day.html":{},"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"classes/Field.html":{},"components/ImageSelectPopComponent.html":{},"interfaces/ListConfig.html":{},"injectables/ModelConfigService.html":{},"injectables/NotificationsService.html":{},"injectables/ResourceConfig.html":{},"directives/SlotHostDirective.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["viewchild",{"_index":136,"title":{},"body":{"components/AceComponent.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"components/DynamicSlotComponent.html":{},"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ListHeaderComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/MediumEditorComponent.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"components/SignupComponent.html":{},"components/TinymceComponent.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["viewchild('contain",{"_index":111,"title":{},"body":{"components/AceComponent.html":{},"components/MediumEditorComponent.html":{},"components/PaginationComponent.html":{},"components/TinymceComponent.html":{}}}],["viewchild('fileinput",{"_index":4390,"title":{},"body":{"components/UploadComponent.html":{}}}],["viewchild('filterform",{"_index":2531,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["viewchild('globalload",{"_index":2615,"title":{},"body":{"components/LoaderComponent.html":{}}}],["viewchild('imageload",{"_index":2179,"title":{},"body":{"components/ImageSelectPopComponent.html":{}}}],["viewchild('localload",{"_index":2617,"title":{},"body":{"components/LoaderComponent.html":{}}}],["viewchild('pagecontain",{"_index":3402,"title":{},"body":{"components/PaginationComponent.html":{}}}],["viewchild('search",{"_index":2750,"title":{},"body":{"components/LocationSearchComponent.html":{}}}],["viewchild(calendarcompon",{"_index":1203,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["viewchild(entrylistcompon",{"_index":969,"title":{},"body":{"components/CrudComponent.html":{}}}],["viewchild(entrypopcompon",{"_index":965,"title":{},"body":{"components/CrudComponent.html":{}}}],["viewchild(loadercompon",{"_index":971,"title":{},"body":{"components/CrudComponent.html":{},"components/LoginComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{}}}],["viewchild(locationmapcompon",{"_index":2726,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["viewchild(locationsearchcompon",{"_index":2729,"title":{},"body":{"components/LocationPickerComponent.html":{}}}],["viewchild(popcompon",{"_index":4394,"title":{},"body":{"components/UploadComponent.html":{}}}],["viewchild(resourcelistcompon",{"_index":3773,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["viewchild(resourcepopcompon",{"_index":3776,"title":{},"body":{"components/ResourceCrudComponent.html":{}}}],["viewchild(searchbarcompon",{"_index":1590,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ResourceListPopComponent.html":{}}}],["viewchild(slothostdirect",{"_index":1457,"title":{},"body":{"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{},"components/OutputComponent.html":{}}}],["viewchild(uploadcompon",{"_index":4456,"title":{},"body":{"components/UploadSelectComponent.html":{}}}],["viewchildren",{"_index":2537,"title":{},"body":{"components/ListHeaderComponent.html":{},"components/PaginationComponent.html":{}}}],["viewchildren('filterpop",{"_index":2535,"title":{},"body":{"components/ListHeaderComponent.html":{}}}],["viewchildren('pag",{"_index":3399,"title":{},"body":{"components/PaginationComponent.html":{}}}],["viewcontain",{"_index":4026,"title":{},"body":{"directives/SlotHostDirective.html":{}}}],["viewcontainerref",{"_index":1440,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"directives/SlotHostDirective.html":{}}}],["viewcontainerref.clear",{"_index":1463,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["viewcontainerref.createcomponent(componentfactori",{"_index":1464,"title":{},"body":{"components/DynamicSlotComponent.html":{}}}],["viewencapsul",{"_index":2408,"title":{},"body":{"components/ListComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["viewencapsulation.non",{"_index":2342,"title":{},"body":{"components/ListComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{}}}],["views.find(v",{"_index":3139,"title":{},"body":{"injectables/ModelConfigService.html":{}}}],["visibl",{"_index":960,"title":{},"body":{"components/CrudComponent.html":{},"classes/Field.html":{},"modules/FormModule.html":{},"components/ListComponent.html":{},"interfaces/ListConfig.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"components/LocationPickerComponent.html":{},"classes/Notification.html":{},"components/NotificationsComponent.html":{},"components/PaginationComponent.html":{},"classes/PaginationConfig.html":{},"components/PopComponent.html":{},"components/UploadSelectComponent.html":{}}}],["visiblefield",{"_index":4481,"title":{},"body":{"pipes/VisibleFieldsPipe.html":{}}}],["visiblefieldspip",{"_index":1885,"title":{"pipes/VisibleFieldsPipe.html":{}},"body":{"modules/FormModule.html":{},"pipes/VisibleFieldsPipe.html":{},"overview.html":{}}}],["vm",{"_index":4634,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["void",{"_index":82,"title":{},"body":{"components/AceComponent.html":{},"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"components/AssetgroupSelectComponent.html":{},"classes/Collection.html":{},"components/CrudComponent.html":{},"components/DatetimeComponent.html":{},"interfaces/Day.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/EntryListPopComponent.html":{},"components/ErrorComponent.html":{},"directives/FocusDirective.html":{},"injectables/FormService.html":{},"injectables/HistoryService.html":{},"components/IconComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/InputComponent.html":{},"components/ListComponent.html":{},"injectables/ListConfigService.html":{},"components/ListHeaderComponent.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/LocationMapComponent.html":{},"components/LocationPickerComponent.html":{},"components/LocationSearchComponent.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/MediumEditorComponent.html":{},"components/MenuComponent.html":{},"components/ModalComponent.html":{},"injectables/NotificationsService.html":{},"components/OutputComponent.html":{},"classes/Pagination.html":{},"components/PaginationComponent.html":{},"components/PasswordResetComponent.html":{},"components/PopComponent.html":{},"components/ResourceCrudComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/SdkService.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"injectables/SymbolService.html":{},"components/TabComponent.html":{},"components/TabsComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"injectables/TypeConfigService.html":{},"components/UploadComponent.html":{},"components/UploadSelectComponent.html":{}}}],["vscode",{"_index":4621,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["wait",{"_index":511,"title":{},"body":{"components/AssetListComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{}}}],["wait(promis",{"_index":2604,"title":{},"body":{"components/LoaderComponent.html":{},"injectables/LoaderService.html":{}}}],["want",{"_index":2261,"title":{},"body":{"components/InputComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/readme/ace-readme.html":{}}}],["warn",{"_index":2094,"title":{},"body":{"components/IconComponent.html":{},"components/ModalComponent.html":{}}}],["way",{"_index":64,"title":{},"body":{"components/AceComponent.html":{},"components/ListComponent.html":{},"components/LoaderComponent.html":{}}}],["webpack",{"_index":4637,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["webpack.config.j",{"_index":4651,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["webpack.config.js\"},notic",{"_index":4649,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["webpack:brows",{"_index":4647,"title":{},"body":{"additional-documentation/angular-7-upgrade-guide.html":{}}}],["week",{"_index":1209,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["weekday",{"_index":1190,"title":{},"body":{"components/DatetimeComponent.html":{}}}],["weiteren",{"_index":3460,"title":{},"body":{"components/PasswordResetComponent.html":{}}}],["well",{"_index":1435,"title":{},"body":{"components/DynamicRackComponent.html":{},"components/DynamicSlotComponent.html":{},"components/InputComponent.html":{}}}],["werden",{"_index":611,"title":{},"body":{"guards/AuthGuard.html":{}}}],["wether",{"_index":1646,"title":{},"body":{"classes/Field.html":{},"components/UploadSelectComponent.html":{},"additional-documentation/readme/data-readme.html":{}}}],["whenev",{"_index":2250,"title":{},"body":{"components/InputComponent.html":{}}}],["whitelistednonpeerdepend",{"_index":5000,"title":{},"body":{"additional-documentation/adding-new-packages.html":{}}}],["whole",{"_index":1703,"title":{},"body":{"classes/Field.html":{},"components/LoaderComponent.html":{},"injectables/ResourceConfig.html":{},"additional-documentation/angular-7-upgrade-guide.html":{}}}],["whose",{"_index":3471,"title":{},"body":{"components/PopComponent.html":{}}}],["width",{"_index":1065,"title":{},"body":{"interfaces/CrudConfig.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{}}}],["wildcard",{"_index":1674,"title":{},"body":{"classes/Field.html":{}}}],["window",{"_index":3295,"title":{},"body":{"injectables/NotificationsService.html":{},"components/UploadComponent.html":{}}}],["window.addeventlistener('keydown",{"_index":3522,"title":{},"body":{"injectables/PopService.html":{}}}],["window.notification(notification.titl",{"_index":3311,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["window.notification.permiss",{"_index":3303,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["window.notification.requestpermission().then((permiss",{"_index":3304,"title":{},"body":{"injectables/NotificationsService.html":{}}}],["withload",{"_index":923,"title":{"interfaces/WithLoader.html":{}},"body":{"components/CrudComponent.html":{},"directives/EntriesDirective.html":{},"directives/EntryDirective.html":{},"components/LoginComponent.html":{},"components/LoginFormComponent.html":{},"components/PasswordResetComponent.html":{},"components/ResourceCrudComponent.html":{},"components/SignupComponent.html":{},"components/SignupFormComponent.html":{},"components/UploadComponent.html":{},"interfaces/WithLoader.html":{}}}],["withnotif",{"_index":924,"title":{"interfaces/WithNotifications.html":{}},"body":{"components/CrudComponent.html":{},"components/LoginComponent.html":{},"components/NotificationsComponent.html":{},"components/SignupComponent.html":{},"components/UploadComponent.html":{},"interfaces/WithNotifications.html":{},"additional-documentation/adding-new-packages.html":{}}}],["without",{"_index":1053,"title":{},"body":{"interfaces/CrudConfig.html":{},"classes/Field.html":{},"interfaces/FileOptions.html":{},"components/ListItemsComponent.html":{},"components/LoaderComponent.html":{},"injectables/LoaderService.html":{},"components/NotificationsComponent.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"interfaces/Upload.html":{},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme/style-readme.html":{},"additional-documentation/changelog/data-changelog.html":{}}}],["won't",{"_index":4697,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["wont",{"_index":2822,"title":{},"body":{"components/LoginFormComponent.html":{},"components/PopComponent.html":{},"components/SignupFormComponent.html":{},"components/TinymceComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["work",{"_index":677,"title":{},"body":{"injectables/AuthService.html":{},"directives/ImageDirective.html":{},"components/ListComponent.html":{},"components/LoaderComponent.html":{},"injectables/SdkService.html":{},"additional-documentation/project-setup-tutorial.html":{}}}],["workaround",{"_index":143,"title":{},"body":{"components/AceComponent.html":{},"injectables/NotificationsService.html":{}}}],["workspac",{"_index":4546,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["wrap",{"_index":12,"title":{},"body":{"components/AceComponent.html":{},"injectables/GeocodeService.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"index.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/location-readme.html":{},"additional-documentation/readme/ace-readme.html":{},"additional-documentation/readme/medium-editor-readme.html":{},"additional-documentation/readme/tinymce-readme.html":{}}}],["wrapper",{"_index":1566,"title":{},"body":{"components/EntryListPopComponent.html":{},"components/ImageSelectPopComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["write",{"_index":106,"title":{},"body":{"components/AceComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{}}}],["writevalu",{"_index":57,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{},"additional-documentation/changelog/tinymce-changelog.html":{}}}],["writevalue(valu",{"_index":104,"title":{},"body":{"components/AceComponent.html":{},"components/DatetimeComponent.html":{},"components/InputComponent.html":{},"components/LocationPickerComponent.html":{},"components/MediumEditorComponent.html":{},"components/TinymceComponent.html":{},"components/ToggleComponent.html":{},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["wrong",{"_index":4899,"title":{},"body":{"additional-documentation/changelog/data-changelog.html":{},"additional-documentation/changelog/ui-changelog.html":{}}}],["wysiwyg",{"_index":4541,"title":{},"body":{"index.html":{},"additional-documentation/readme.html":{}}}],["x",{"_index":759,"title":{},"body":{"injectables/AuthService.html":{}}}],["x.ui",{"_index":3014,"title":{},"body":{"components/ModalComponent.html":{},"index.html":{},"additional-documentation/readme.html":{},"additional-documentation/readme/style-readme.html":{}}}],["x.ui/src/_config",{"_index":4677,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["x.ui/src/x.ui",{"_index":4678,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["x.ui/src/x.ui.scss",{"_index":4825,"title":{},"body":{"additional-documentation/readme/style-readme.html":{}}}],["x1f682;🚃🚃🚃",{"_index":423,"title":{},"body":{"components/AdminEntryInputComponent.html":{},"components/DefaultEntryInputComponent.html":{},"components/DefaultEntryOutputComponent.html":{}}}],["xlcss/sass/xlcss.scss",{"_index":4676,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["xxxxxxxx",{"_index":4684,"title":{},"body":{"additional-documentation/project-setup-tutorial.html":{}}}],["yarn",{"_index":4545,"title":{},"body":{"index.html":{},"additional-documentation/project-setup-tutorial.html":{},"additional-documentation/readme.html":{},"additional-documentation/adding-new-packages.html":{}}}],["ye",{"_index":455,"title":{},"body":{"directives/AssetDirective.html":{},"components/AssetListComponent.html":{},"injectables/AuthService.html":{},"classes/Collection.html":{},"classes/Config.html":{},"injectables/CrudService.html":{},"pipes/DatetimePipe.html":{},"components/EntryListPopComponent.html":{},"directives/ImageDirective.html":{},"components/ImageSelectPopComponent.html":{},"components/ListComponent.html":{},"components/LocationPickerComponent.html":{},"components/ModalComponent.html":{},"injectables/ModelConfigService.html":{},"classes/Notification.html":{},"injectables/NotificationsService.html":{},"classes/Pagination.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"classes/Sorter.html":{}}}],["yield",{"_index":1084,"title":{},"body":{"injectables/CrudService.html":{},"components/EntryListPopComponent.html":{},"interfaces/FileOptions.html":{},"components/ImageSelectPopComponent.html":{},"components/ListItemsComponent.html":{},"components/ModalComponent.html":{},"components/PopComponent.html":{},"components/ResourceListPopComponent.html":{},"injectables/ResourceService.html":{},"interfaces/Update.html":{},"interfaces/Upload.html":{}}}],["you'll",{"_index":4767,"title":{},"body":{"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{}}}],["yourself",{"_index":3871,"title":{},"body":{"injectables/SdkService.html":{}}}],["yyyi",{"_index":801,"title":{},"body":{"modules/CalendarModule.html":{},"interfaces/Day.html":{}}}],["z",{"_index":3166,"title":{},"body":{"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{}}}],["z0",{"_index":1769,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{}}}],["za",{"_index":1768,"title":{},"body":{"interfaces/FileOptions.html":{},"injectables/ModelConfigService.html":{},"injectables/ResourceConfig.html":{},"interfaces/Upload.html":{}}}],["zone",{"_index":1393,"title":{},"body":{"directives/DropzoneDirective.html":{}}}],["zone.j",{"_index":4530,"title":{},"body":{"dependencies.html":{}}}],["zoom",{"_index":329,"title":{},"body":{"modules/AceModule.html":{},"modules/AuthModule.html":{},"modules/CalendarModule.html":{},"modules/DataModule.html":{},"modules/FilesModule.html":{},"modules/FormModule.html":{},"modules/IconModule.html":{},"modules/IoModule.html":{},"modules/ListModule.html":{},"modules/LoaderModule.html":{},"modules/LocationModule.html":{},"modules/MediumEditorModule.html":{},"modules/NotificationsModule.html":{},"modules/PopModule.html":{},"modules/ResourceModule.html":{},"modules/SdkModule.html":{},"modules/SelectModule.html":{},"modules/SymbolModule.html":{},"modules/TinymceModule.html":{},"modules/UiModule.html":{},"modules/UtilityModule.html":{},"overview.html":{}}}],["zurücksetzen",{"_index":3466,"title":{},"body":{"components/PasswordResetComponent.html":{}}}]],"pipeline":["stemmer"]}, + "store": {"components/AceComponent.html":{"url":"components/AceComponent.html","title":"component - AceComponent","body":"\n \n\n\n\n\n\n Components\n AceComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ace/src/lib/ace.component.ts\n\n\n \n Description\n \n \n Wraps ace editor as angular component. Implements ControlValueAccessor!\nhttps://components.entrecode.de/misc/ace?e=1\n\n \n\n \n Extends\n \n \n DefaultInputComponent\n \n\n \n Implements\n \n \n ControlValueAccessor\n OnInit\n OnChanges\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-ace\n \n\n \n styleUrls\n ace.component.scss\n \n\n\n\n \n templateUrl\n ace.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n container\n \n \n editor\n \n \n input\n \n \n propagateChange\n \n \n ready\n \n \n value\n \n \n Public\n control\n \n \n Public\n field\n \n \n Public\n group\n \n \n Public\n item\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n init\n \n \n ngOnChanges\n \n \n ngOnInit\n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n setMode\n \n \n setTheme\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n mode\n \n \n theme\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n mode\n \n \n mode that should be used (e.g. javascript). Depending on your way of importing ace you have to make sure, the mode is availabe.\n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:47\n \n \n \n \n \n \n \n \n \n theme\n \n \n theme that should be used (e.g. javascript). Depending on your way of importing ace you have to make sure, the theme is availabe.\n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:51\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \n \ninit()\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:54\n \n \n\n\n \n \n creates new ace instance if not present and sets mode and theme if given \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:97\n \n \n\n\n \n \n Re-inits the editor \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:93\n \n \n\n\n \n \n Inits the editor \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:116\n \n \n\n\n \n \n Registers change callback \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:120\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n setMode\n \n \n \n \n \n \n \nsetMode(mode: string)\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:75\n \n \n\n\n \n \n Sets the editor mode to the specified language (after ace/mode/) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n mode\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setTheme\n \n \n \n \n \n \n \nsetTheme(theme: string)\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:84\n \n \n\n\n \n \n Sets the editor theme to the specified theme (after ace/theme/) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n theme\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: any)\n \n \n\n\n \n \n Defined in packages/ace/src/lib/ace.component.ts:102\n \n \n\n\n \n \n writes value to editor on outside model change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n container\n \n \n \n \n \n \n \n container: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('container')\n \n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:43\n \n \n\n \n \n container element for ace editor\n\n \n \n\n \n \n \n \n \n \n \n \n \n editor\n \n \n \n \n \n \n \n editor: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:29\n \n \n\n \n \n The ace editor instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n input\n \n \n \n \n \n \n \n input: InputComponent\n\n \n \n \n \n Type : InputComponent\n\n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:39\n \n \n\n \n \n Form input component \n\n \n \n\n \n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => {\n }\n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:112\n \n \n\n\n \n \n \n \n \n \n \n \n \n ready\n \n \n \n \n \n \n \n ready: Promise\n\n \n \n \n \n Type : Promise\n\n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:37\n \n \n\n \n \n Promise that resolves when the editor has been initialized.\n\n \n \n\n \n \n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n value: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in packages/ace/src/lib/ace.component.ts:33\n \n \n\n \n \n The current value of the editor\n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n control\n \n \n \n \n \n \n \n control: FormControl\n\n \n \n \n \n Type : FormControl\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:17\n \n \n\n \n \n The form control that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:11\n \n \n\n \n \n The field for which the input is meant. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n group\n \n \n \n \n \n \n \n group: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:15\n \n \n\n \n \n The form group that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:13\n \n \n\n \n \n The item that is targeted by the input \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, OnInit, ElementRef, ViewChild, Input, OnChanges, forwardRef } from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { DefaultInputComponent, InputComponent } from '@ec.components/ui';\n\nimport 'ace-builds/src-noconflict/ace';\nimport 'ace-builds/webpack-resolver';\n\n/** Workaround that expects ace to be imported somewhere else... */\ndeclare const ace: any;\n\n/** Wraps ace editor as angular component. Implements ControlValueAccessor!\n *\n * https://components.entrecode.de/misc/ace?e=1\n*/\n@Component({\n selector: 'ec-ace',\n templateUrl: 'ace.component.html',\n styleUrls: ['ace.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => AceComponent),\n multi: true\n }\n ]\n})\nexport class AceComponent extends DefaultInputComponent implements ControlValueAccessor, OnInit, OnChanges {\n /** The ace editor instance */\n editor: any;\n /**\n * The current value of the editor\n */\n value = '';\n /**\n * Promise that resolves when the editor has been initialized.\n */\n ready: Promise;\n /** Form input component */\n input: InputComponent;\n /**\n * container element for ace editor\n */\n @ViewChild('container') container: ElementRef;\n /**\n * mode that should be used (e.g. javascript). Depending on your way of importing ace you have to make sure, the mode is availabe.\n */\n @Input() mode: string; // https://github.com/ajaxorg/ace-builds/blob/master/src/ext-modelist.js\n /**\n * theme that should be used (e.g. javascript). Depending on your way of importing ace you have to make sure, the theme is availabe.\n */\n @Input() theme: string; // https://github.com/ajaxorg/ace-builds/blob/master/src/ext-themelist.js\n\n /** creates new ace instance if not present and sets mode and theme if given */\n init() {\n if (!this.editor) {\n this.editor = ace.edit(this.container.nativeElement);\n }\n this.ready = Promise.resolve(this.editor);\n if (this.mode) {\n this.setMode(this.mode);\n }\n if (this.theme) {\n this.setTheme(this.theme);\n }\n if (this.value) {\n this.editor.setValue(this.value, 1);\n }\n this.ready.then((editor) => {\n editor.on('change', (e) => {\n this.propagateChange(this.editor.getValue());\n });\n });\n }\n /** Sets the editor mode to the specified language (after ace/mode/) */\n setMode(mode: string) {\n this.mode = mode;\n if (!this.editor) {\n return;\n }\n this.editor.session.setMode('ace/mode/' + this.mode);\n }\n\n /** Sets the editor theme to the specified theme (after ace/theme/) */\n setTheme(theme: string) {\n this.theme = theme;\n if (!this.editor) {\n return;\n }\n this.editor.setTheme('ace/theme/' + this.theme);\n }\n\n /** Inits the editor */\n ngOnInit() {\n this.init();\n }\n /** Re-inits the editor */\n ngOnChanges() {\n this.init();\n }\n\n /** writes value to editor on outside model change. */\n writeValue(value: any) {\n this.value = value || '';\n if (!this.ready) {\n return;\n }\n this.ready.then((editor) => {\n editor.setValue(this.value, 1);\n });\n }\n\n propagateChange = (_: any) => {\n }\n\n /** Registers change callback */\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n\n registerOnTouched() {\n }\n}\n\n \n\n \n \n\n \n\n \n \n ace.component.scss\n \n .ec-ace {\n min-height: 500px;\n}\n\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'AceComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AceModule.html":{"url":"modules/AceModule.html","title":"module - AceModule","body":"\n \n\n\n\n\n Modules\n AceModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AceModule\n\n\n\ncluster_AceModule_declarations\n\n\n\ncluster_AceModule_AceComponent_providers\n\n\n\ncluster_AceModule_exports\n\n\n\n\nAceComponent\n\nAceComponent\n\n\n\nAceModule\n\nAceModule\n\nAceModule -->\n\nAceComponent->AceModule\n\n\n\n\n\nAceComponent \n\nAceComponent \n\nAceComponent -->\n\nAceModule->AceComponent \n\n\n\n AceComponent), multi: true\n} -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true\n}\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true\n}\n\n AceComponent), multi: true\n}->AceComponent -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true\n}->AceComponent\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ace/src/lib/ace.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AceComponent\n \n \n \n \n EntryComponents\n \n \n AceComponent\n \n \n \n \n Exports\n \n \n AceComponent\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { AceComponent } from './ace.component';\n\nexport const aceModuleConfig = {\n imports: [],\n exports: [AceComponent],\n declarations: [AceComponent],\n entryComponents: [AceComponent],\n providers: [],\n};\n\n@NgModule(aceModuleConfig)\nexport class AceModule { }\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Action.html":{"url":"interfaces/Action.html","title":"interface - Action","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Action\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/actionbar/actionbar.component.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n action\n \n \n Optional\n data\n \n \n id\n \n \n Optional\n path\n \n \n Optional\n select\n \n \n title\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n action\n \n \n \n \n action: ActionFunction\n\n \n \n\n\n \n \n Type : ActionFunction\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n data\n \n \n \n \n data: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n id\n \n \n \n \n id: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n path\n \n \n \n \n path: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n select\n \n \n \n \n select: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n title\n \n \n \n \n title: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { Component, OnInit, Input, ElementRef, ChangeDetectorRef } from '@angular/core';\nimport { SelectComponent } from '../select/select.component';\nimport { ListConfig, List, Item } from '@ec.components/core';\n\nexport type ActionFunction = (item?: Item | any, actionbar?: ActionbarComponent) => any;\n\nexport interface Action {\n title: string;\n id: string;\n path?: string;\n data?: any;\n select?: boolean;\n action?: ActionFunction;\n}\n\nexport interface ActionbarConfig extends ListConfig {\n\n}\n\n@Component({\n selector: 'ec-actionbar',\n templateUrl: '../select/select.component.html'\n})\n\nexport class ActionbarComponent extends SelectComponent implements OnInit {\n @Input() config: ActionbarConfig = {\n label: 'title',\n identifier: 'id',\n fields: {\n title: {}\n }\n };\n @Input() actions: Action[];\n actionStack: { [id: string]: Action[] } = {};\n\n constructor(\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef,\n ) {\n super(elementRef, cdr);\n this.add.subscribe((item) => {\n if (item.getBody().select !== false) {\n this.selection.add(item);\n }\n if (item.getBody().action) {\n item.getBody().action(item, this);\n }\n if (item.getBody().children) {\n this.loadActions(item.getBody().children);\n }\n this.searchbar.clear();\n });\n this.remove.subscribe((item) => {\n this.selection.remove(item);\n this.loadActionsBefore();\n });\n }\n\n loadActionsBefore() {\n const actionsBefore = this.actionStack[this.currentID()];\n if (actionsBefore) {\n this.loadActions(actionsBefore);\n }\n }\n\n ngOnInit() {\n this.loadActions(this.actions);\n }\n\n currentID() {\n if (!this.selection || this.selection.isEmpty()) {\n return 'ROOT';\n }\n return this.selection.items[this.selection.items.length - 1].id();\n }\n\n reset() {\n this.selection.removeAll();\n this.loadActions(this.actionStack[this.currentID()]);\n }\n\n currentActions() {\n return this.actionStack[this.currentID()];\n }\n\n loadActions(actions, addToStack = true) {\n if (addToStack) {\n this.actionStack[this.currentID()] = actions;\n }\n this.list = new List(actions, this.config);\n if (!this.selection) {\n this.initSelection();\n }\n setTimeout(() => {\n if (this.dropdownList) {\n this.dropdownList.focusFirst();\n }\n });\n }\n\n getPath() {\n return this.selection.getValue();\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ActionbarConfig.html":{"url":"interfaces/ActionbarConfig.html","title":"interface - ActionbarConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n ActionbarConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/actionbar/actionbar.component.ts\n \n\n\n \n Extends\n \n \n ListConfig\n \n\n\n\n\n \n\n\n \n import { Component, OnInit, Input, ElementRef, ChangeDetectorRef } from '@angular/core';\nimport { SelectComponent } from '../select/select.component';\nimport { ListConfig, List, Item } from '@ec.components/core';\n\nexport type ActionFunction = (item?: Item | any, actionbar?: ActionbarComponent) => any;\n\nexport interface Action {\n title: string;\n id: string;\n path?: string;\n data?: any;\n select?: boolean;\n action?: ActionFunction;\n}\n\nexport interface ActionbarConfig extends ListConfig {\n\n}\n\n@Component({\n selector: 'ec-actionbar',\n templateUrl: '../select/select.component.html'\n})\n\nexport class ActionbarComponent extends SelectComponent implements OnInit {\n @Input() config: ActionbarConfig = {\n label: 'title',\n identifier: 'id',\n fields: {\n title: {}\n }\n };\n @Input() actions: Action[];\n actionStack: { [id: string]: Action[] } = {};\n\n constructor(\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef,\n ) {\n super(elementRef, cdr);\n this.add.subscribe((item) => {\n if (item.getBody().select !== false) {\n this.selection.add(item);\n }\n if (item.getBody().action) {\n item.getBody().action(item, this);\n }\n if (item.getBody().children) {\n this.loadActions(item.getBody().children);\n }\n this.searchbar.clear();\n });\n this.remove.subscribe((item) => {\n this.selection.remove(item);\n this.loadActionsBefore();\n });\n }\n\n loadActionsBefore() {\n const actionsBefore = this.actionStack[this.currentID()];\n if (actionsBefore) {\n this.loadActions(actionsBefore);\n }\n }\n\n ngOnInit() {\n this.loadActions(this.actions);\n }\n\n currentID() {\n if (!this.selection || this.selection.isEmpty()) {\n return 'ROOT';\n }\n return this.selection.items[this.selection.items.length - 1].id();\n }\n\n reset() {\n this.selection.removeAll();\n this.loadActions(this.actionStack[this.currentID()]);\n }\n\n currentActions() {\n return this.actionStack[this.currentID()];\n }\n\n loadActions(actions, addToStack = true) {\n if (addToStack) {\n this.actionStack[this.currentID()] = actions;\n }\n this.list = new List(actions, this.config);\n if (!this.selection) {\n this.initSelection();\n }\n setTimeout(() => {\n if (this.dropdownList) {\n this.dropdownList.focusFirst();\n }\n });\n }\n\n getPath() {\n return this.selection.getValue();\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AdminEntryInputComponent.html":{"url":"components/AdminEntryInputComponent.html","title":"component - AdminEntryInputComponent","body":"\n \n\n\n\n\n\n Components\n AdminEntryInputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/entry-form/admin-entry-input.component.ts\n\n\n \n Description\n \n \n This component holds the input templates for all field types that require having the DatamanagerResource as api.\nThis is currently relevant for account and role fields which come from the ec.api.\n\n \n\n \n Extends\n \n \n DefaultInputComponent\n \n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n templateUrl\n ./admin-entry-input.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n api\n \n \n Public\n sdk\n \n \n Public\n control\n \n \n Public\n field\n \n \n Public\n group\n \n \n Public\n item\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService)\n \n \n \n \n Defined in packages/data/src/lib/entry-form/admin-entry-input.component.ts:13\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n api\n \n \n \n \n \n \n \n api: DataManagerResource\n\n \n \n \n \n Type : DataManagerResource\n\n \n \n \n \n Defined in packages/data/src/lib/entry-form/admin-entry-input.component.ts:13\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n sdk\n \n \n \n \n \n \n \n sdk: SdkService\n\n \n \n \n \n Type : SdkService\n\n \n \n \n \n Defined in packages/data/src/lib/entry-form/admin-entry-input.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n control\n \n \n \n \n \n \n \n control: FormControl\n\n \n \n \n \n Type : FormControl\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:17\n \n \n\n \n \n The form control that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:11\n \n \n\n \n \n The field for which the input is meant. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n group\n \n \n \n \n \n \n \n group: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:15\n \n \n\n \n \n The form group that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:13\n \n \n\n \n \n The item that is targeted by the input \n\n \n \n\n \n \n\n\n\n\n\n \n import { SdkService } from '../sdk/sdk.service';\nimport { Component } from '@angular/core';\nimport { DefaultInputComponent } from '@ec.components/ui';\nimport DataManagerResource from 'ec.sdk/lib/resources/datamanager/DataManagerResource';\n\n/** This component holds the input templates for all field types that require having the DatamanagerResource as api.\n * This is currently relevant for account and role fields which come from the ec.api.\n */\n@Component({\n templateUrl: './admin-entry-input.component.html',\n})\nexport class AdminEntryInputComponent extends DefaultInputComponent {\n api: DataManagerResource;\n constructor(public sdk: SdkService) {\n super();\n /* this.sdk.root.then((root) => this.api = root); */\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n 🚂🚃🚃🚃 {{field.type}} input coming soon..\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' 🚂🚃🚃🚃 {{field.type}} input coming soon.. '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'AdminEntryInputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/AssetDirective.html":{"url":"directives/AssetDirective.html","title":"directive - AssetDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n AssetDirective\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Examples\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/files/asset/asset.directive.ts\n \n\n \n Description\n \n \n Loads an public asset by id to the template.\nassets/asset\nhttps://components.entrecode.de/assets/asset?e=1\n\n \n\n \n Implements\n \n \n OnChanges\n \n\n\n \n Metadata\n \n \n\n \n Selector\n [ecAsset]\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n asset\n \n \n promise\n \n \n Public\n sdk\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n load\n \n \n ngOnChanges\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n assetId\n \n \n autoload\n \n \n ecAsset\n \n \n levels\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n loaded\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService)\n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:30\n \n \n\n \n \n Injects the sdk \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n The api to use. Defaults to sdk.api \n\n \n Type : PublicAPI\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:26\n \n \n \n \n \n \n \n \n \n assetId\n \n \n The asset id that should be loaded\n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:18\n \n \n \n \n \n \n \n \n \n autoload\n \n \n Should the asset be loaded immediately? Defaults to true \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:22\n \n \n \n \n \n \n \n \n \n ecAsset\n \n \n The asset id that should be loaded\n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:20\n \n \n \n \n \n \n \n \n \n levels\n \n \n The levels to use. \n\n \n Type : number\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:24\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n loaded\n \n \n Fires as soon as the asset has been loaded. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:28\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n load\n \n \n \n \n \n \n \nload(id?: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:48\n \n \n\n\n \n \n Loads the asset. Can be called from template when using autoload=false \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:37\n \n \n\n\n \n \n as soon as model and id are known, the asset will be loaded. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n asset\n \n \n \n \n \n \n \n asset: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:30\n \n \n\n \n \n The current loaded asset \n\n \n \n\n \n \n \n \n \n \n \n \n \n promise\n \n \n \n \n \n \n \n promise: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:16\n \n \n\n \n \n The loading promise \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n sdk\n \n \n \n \n \n \n \n sdk: SdkService\n\n \n \n \n \n Type : SdkService\n\n \n \n \n \n Defined in packages/data/src/lib/files/asset/asset.directive.ts:33\n \n \n\n\n \n \n\n\n\n \n\n \n ecAsset\nThis directive can be used to load a single asset directly from the template:\n\n id: {{myAsset.asset?.assetID}}\n title: {{myAsset.asset?.title}}\n tags: {{myAsset.asset?.tags}}\n created: {{myAsset.asset?.created}}\n type: {{myAsset.asset?.type}}\n files: {{myAsset.asset?.files?.length}}\n\n \n\n \n import { Directive, EventEmitter, Input, OnChanges, Output } from '@angular/core';\nimport PublicAssetResource from 'ec.sdk/lib/resources/publicAPI/PublicAssetResource';\nimport { SdkService } from '../../sdk/sdk.service';\nimport PublicAPI from 'ec.sdk/lib/PublicAPI';\n\n/** Loads an public asset by id to the template.\n * assets/asset\n * https://components.entrecode.de/assets/asset?e=1\n */\n@Directive({\n selector: '[ecAsset]',\n exportAs: 'ecAsset'\n})\nexport class AssetDirective implements OnChanges {\n /** The loading promise */\n promise: any;\n /** The asset id that should be loaded*/\n @Input() assetId: string;\n /** The asset id that should be loaded*/\n @Input() ecAsset: string;\n /** Should the asset be loaded immediately? Defaults to true */\n @Input() autoload: boolean;\n /** The levels to use. */\n @Input() levels: number;\n /** The api to use. Defaults to sdk.api */\n @Input() api: PublicAPI;\n /** Fires as soon as the asset has been loaded. */\n @Output() loaded: EventEmitter = new EventEmitter();\n /** The current loaded asset */\n public asset: any;\n\n /** Injects the sdk */\n constructor(public sdk: SdkService) {\n }\n\n /** as soon as model and id are known, the asset will be loaded. */\n ngOnChanges() {\n if (this.ecAsset) {\n this.assetId = this.ecAsset;\n }\n if (this.autoload === false) {\n return;\n }\n this.load();\n }\n\n /** Loads the asset. Can be called from template when using autoload=false */\n load(id?: string) {\n this.assetId = id || this.assetId;\n if (!this.assetId) {\n return Promise.reject('cannot load asset: no assetId is set');\n }\n const api = this.api || this.sdk.api;\n if (!api) {\n throw new Error('cannot load asset: no api was set!');\n }\n this.promise = api.asset(this.assetId)\n .then((asset) => {\n this.asset = asset;\n this.loaded.emit(asset);\n return asset;\n });\n return this.promise;\n }\n}\n\n \n\n \n \n no-iframes\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AssetListComponent.html":{"url":"components/AssetListComponent.html","title":"component - AssetListComponent","body":"\n \n\n\n\n\n\n Components\n AssetListComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/asset-list/asset-list.component.ts\n\n\n\n \n Extends\n \n \n ResourceListComponent\n \n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-asset-list\n \n\n\n\n\n \n templateUrl\n ./asset-list.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n list\n \n \n Public\n listConfig\n \n \n resourceConfig\n \n \n Public\n route\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n Protected\n createList\n \n \n filter\n \n \n initFilterQuery\n \n \n ngOnChanges\n \n \n update\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n listResource\n \n \n loader\n \n \n loadWhen\n \n \n relation\n \n \n solo\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n The API Connector that possesses the resource list, see https://entrecode.github.io/ec.sdk/#api-connectors \n\n \n Type : Core\n\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:35\n \n \n \n \n \n \n \n \n \n listResource\n \n \n If listResource input is set, the given ListResource will be used directly and loading will be skipped. \n\n \n Type : ListResource\n\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:27\n \n \n \n \n \n \n \n \n \n loader\n \n \n The loader that should be shown while the list is loaded. \n\n \n Type : LoaderComponent\n\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:39\n \n \n \n \n \n \n \n \n \n loadWhen\n \n \n If set to false, the list will wait for the flag to turn true before loading. \n\n \n Type : boolean\n\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:31\n \n \n \n \n \n \n \n \n \n relation\n \n \n The name of the resource. If given, the generic ListResource loading will be used (api.resourceList) \n\n \n Type : string\n\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:37\n \n \n \n \n \n \n \n \n \n solo\n \n \n If true, only one item is selectable next \n\n \n Type : boolean\n\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:29\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/data/src/lib/asset-list/asset-list.component.ts:10\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Protected\n createList\n \n \n \n \n \n \n \n \n createList()\n \n \n\n\n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:62\n \n \n\n\n \n \n The method to create the list\n\n\n \n Returns : Promise | ResourceList\n\n \n \n \n \n \n \n \n \n \n \n \n \n filter\n \n \n \n \n \n \n \nfilter(property: string, value: any)\n \n \n\n\n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:128\n \n \n\n\n \n \n This method will filter the list by a given property value and optional operator. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n initFilterQuery\n \n \n \n \n \n \n \ninitFilterQuery(fieldFilter: (property: string,value: any) => void)\n \n \n\n\n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:132\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n fieldFilter\n \n function\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges(changes?)\n \n \n\n\n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:119\n \n \n\n\n \n \n When changing the model or the config, the list will update\n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n changes\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n update\n \n \n \n \n \n \n \nupdate()\n \n \n\n\n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:83\n \n \n\n\n \n \n Creates/Updates the list and subscribes Observables. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:49\n \n \n\n\n \n \n \n \n \n \n \n \n \n list\n \n \n \n \n \n \n \n list: ResourceList\n\n \n \n \n \n Type : ResourceList\n\n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:33\n \n \n\n \n \n The instance of an EntryList \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n listConfig\n \n \n \n \n \n \n \n listConfig: ListConfigService\n\n \n \n \n \n Type : ListConfigService\n\n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:48\n \n \n\n\n \n \n \n \n \n \n \n \n \n resourceConfig\n \n \n \n \n \n \n \n resourceConfig: ResourceConfig\n\n \n \n \n \n Type : ResourceConfig\n\n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n route\n \n \n \n \n \n \n \n route: ActivatedRoute\n\n \n \n \n \n Type : ActivatedRoute\n\n \n \n \n \n Decorators : \n \n \n @Optional()\n \n \n \n \n \n Inherited from ResourceListComponent\n\n \n \n \n \n Defined in ResourceListComponent:50\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, OnInit } from '@angular/core';\nimport { ResourceListComponent } from '../resource-list/resource-list.component';\n\n@Component({\n selector: 'ec-asset-list',\n templateUrl: './asset-list.component.html'\n})\n\nexport class AssetListComponent extends ResourceListComponent implements OnInit {\n ngOnInit() {\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n {{group.value}}\n \n \n -->\n\n \n \n \n \n \n {{item.getBody()}}\n -->\n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{group.value}} --> {{item.getBody()}} --> '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'AssetListComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/AssetgroupSelectComponent.html":{"url":"components/AssetgroupSelectComponent.html","title":"component - AssetgroupSelectComponent","body":"\n \n\n\n\n\n\n Components\n AssetgroupSelectComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-assetgroup-select\n \n\n\n\n\n \n templateUrl\n ./assetgroup-select.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n fileService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n assetGroupID\n \n \n assetGroups\n \n \n disableLegacy\n \n \n placeholder\n \n \n readOnly\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n groupChanged\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(fileService: FileService)\n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:17\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n fileService\n \n \n FileService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n assetGroupID\n \n \n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:13\n \n \n \n \n \n \n \n \n \n assetGroups\n \n \n \n Type : string[]\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:14\n \n \n \n \n \n \n \n \n \n disableLegacy\n \n \n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:15\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n \n Default value : 'select assetgroup..'\n \n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:12\n \n \n \n \n \n \n \n \n \n readOnly\n \n \n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:16\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n groupChanged\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:17\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:23\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n fileService\n \n \n \n \n \n \n \n fileService: FileService\n\n \n \n \n \n Type : FileService\n\n \n \n \n \n Defined in packages/data/src/lib/files/assetgroup-select/assetgroup-select.component.ts:20\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\nimport { FileService } from '../file.service';\n\n// TODO: add demo + doc\n\n@Component({\n selector: 'ec-assetgroup-select',\n templateUrl: './assetgroup-select.component.html',\n})\n\nexport class AssetgroupSelectComponent implements OnInit {\n @Input() placeholder = 'select assetgroup..';\n @Input() assetGroupID: string;\n @Input() assetGroups: string[];\n @Input() disableLegacy: boolean;\n @Input() readOnly: boolean;\n @Output() groupChanged: EventEmitter = new EventEmitter();\n\n constructor(\n public fileService: FileService\n ) { }\n\n ngOnInit() {\n this.fileService.assetGroupList().then(assetGroups => this.assetGroups = assetGroups);\n }\n}\n\n \n\n \n \n {{placeholder}}\n {{assetGroup}}\n legacy Assets -->\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{placeholder}} {{assetGroup}} legacy Assets -->'\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'AssetgroupSelectComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"guards/AuthGuard.html":{"url":"guards/AuthGuard.html","title":"guard - AuthGuard","body":"\n \n\n\n\n\n\n\n\n\n\n\n Guards\n AuthGuard\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/auth/auth-guard.service.ts\n \n\n \n Description\n \n \n This guard can be used on routes that only can be activated when a user is present in the SdkService.\nIf no user is found, an error message is shown. You can then react via the redirect output. \n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n redirect\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n canActivate\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, notifications: NotificationsService)\n \n \n \n \n Defined in packages/data/src/lib/auth/auth-guard.service.ts:12\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n notifications\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n canActivate\n \n \n \n \n \n \n \ncanActivate()\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth-guard.service.ts:17\n \n \n\n\n \n \n Checks if the sdk contains a user, if not an error message is shown. \n\n\n \n Returns : any\n\n \n \n \n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { CanActivate } from '@angular/router';\nimport { SdkService } from '../sdk/sdk.service';\nimport { NotificationsService } from '@ec.components/ui';\nimport { Subject } from 'rxjs';\n\n/** This guard can be used on routes that only can be activated when a user is present in the SdkService.\n * If no user is found, an error message is shown. You can then react via the redirect output. */\n@Injectable()\nexport class AuthGuard implements CanActivate {\n /** Subject that is nexted when the user check fails. (Meant to be used for redirecting to another page e.g. login) */\n redirect: Subject = new Subject();\n\n constructor(private sdk: SdkService, private notifications: NotificationsService) {\n }\n /** Checks if the sdk contains a user, if not an error message is shown. */\n canActivate() {\n return this.sdk.ready.then(user => {\n if (!!user) {\n return true;\n }\n this.notifications.emit({\n type: 'error',\n title: 'Diese Seite kann nicht angezeigt werden.',\n message: 'Sie sind nicht eingeloggt.'\n });\n this.redirect.next();\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/AuthModule.html":{"url":"modules/AuthModule.html","title":"module - AuthModule","body":"\n \n\n\n\n\n Modules\n AuthModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AuthModule\n\n\n\ncluster_AuthModule_declarations\n\n\n\ncluster_AuthModule_imports\n\n\n\ncluster_AuthModule_exports\n\n\n\ncluster_AuthModule_providers\n\n\n\n\nLoginComponent\n\nLoginComponent\n\n\n\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nLoginComponent->AuthModule\n\n\n\n\n\nPasswordResetComponent\n\nPasswordResetComponent\n\nAuthModule -->\n\nPasswordResetComponent->AuthModule\n\n\n\n\n\nSignupComponent\n\nSignupComponent\n\nAuthModule -->\n\nSignupComponent->AuthModule\n\n\n\n\n\nLoginComponent \n\nLoginComponent \n\nLoginComponent -->\n\nAuthModule->LoginComponent \n\n\n\n\n\nPasswordResetComponent \n\nPasswordResetComponent \n\nPasswordResetComponent -->\n\nAuthModule->PasswordResetComponent \n\n\n\n\n\nSignupComponent \n\nSignupComponent \n\nSignupComponent -->\n\nAuthModule->SignupComponent \n\n\n\n\n\nUiModule\n\nUiModule\n\nAuthModule -->\n\nUiModule->AuthModule\n\n\n\n\n\ncookieFactory()\n\ncookieFactory()\n\nAuthModule -->\n\ncookieFactory()->AuthModule\n\n\n\n\n\nAuthService\n\nAuthService\n\nAuthModule -->\n\nAuthService->AuthModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/data/src/lib/auth/auth.module.ts\n \n\n\n \n Description\n \n \n Module for all auth related components and services. \n\n \n\n\n \n \n \n Declarations\n \n \n LoginComponent\n \n \n PasswordResetComponent\n \n \n SignupComponent\n \n \n \n \n Providers\n \n \n AuthService\n \n \n \n \n Imports\n \n \n UiModule\n \n \n cookieFactory()\n \n \n \n \n Exports\n \n \n LoginComponent\n \n \n PasswordResetComponent\n \n \n SignupComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { ModuleWithProviders, NgModule } from '@angular/core';\nimport { ReactiveFormsModule, FormsModule } from '@angular/forms';\nimport { UiModule } from '@ec.components/ui';\nimport { CookieModule } from 'ngx-cookie';\nimport { AuthGuard } from './auth-guard.service';\nimport { AuthService } from './auth.service';\nimport { LoginComponent } from './login/login.component';\nimport { PasswordResetComponent } from './password-reset/password-reset.component';\nimport { SignupComponent } from './signup/signup.component';\n\n/** loads CookieModule */\nexport function cookieFactory(): ModuleWithProviders {\n // https://github.com/auth0/angular2-jwt/issues/305\n return CookieModule.forRoot();\n}\n/** Module for all auth related components and services. */\n@NgModule({\n declarations: [\n PasswordResetComponent,\n LoginComponent,\n SignupComponent,\n ],\n imports: [\n FormsModule,\n cookieFactory(),\n CommonModule,\n ReactiveFormsModule,\n UiModule\n ],\n exports: [\n ReactiveFormsModule,\n PasswordResetComponent,\n LoginComponent,\n SignupComponent,\n ],\n providers: [AuthGuard, AuthService]\n})\nexport class AuthModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/AuthService.html":{"url":"injectables/AuthService.html","title":"injectable - AuthService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n AuthService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/auth/auth.service.ts\n \n\n \n Description\n \n \n The SdkService exposes all instances of the ec.sdk APIs.\nTo be able to use it, you have to provide an environment like this in your module's providers:\n {\n provide: \"environment\",\n useValue: {\n datamanagerID: \"83cc6374\",\n environment: \"stage\",\n clientID: \"rest\"\n }\n }The environment is optional, defaulting to live. See\nhttps://entrecode.github.io/ec.sdk/#environment for more info. The clientID is only optional if\nyou do not plan to use authentication. See https://entrecode.github.io/ec.sdk/#environment =>\nsetClientID.\n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n checkPermission\n \n \n getAccount\n \n \n getAllowedModelMethods\n \n \n getAllowedResourceMethods\n \n \n getApi\n \n \n login\n \n \n logout\n \n \n noClientID\n \n \n resetPassword\n \n \n resolveVariables\n \n \n signup\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(resourceConfig: ResourceConfig, sdk: SdkService)\n \n \n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:24\n \n \n\n \n \n Calls init and sets ready to true when finished. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n resourceConfig\n \n \n ResourceConfig\n \n \n \n No\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n checkPermission\n \n \n \n \n \n \n \ncheckPermission(permission: string, api?)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:67\n \n \n\n\n \n \n checks given public permission for given api, defaults to this.sdk.api. Also works as ec user \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n permission\n \n string\n \n \n \n No\n \n \n\n \n \n api\n \n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAccount\n \n \n \n \n \n \n \ngetAccount(api)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:58\n \n \n\n\n \n \n Returns the current account. Works for all apis \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n api\n \n \n No\n \n \n \n this.sdk.api\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAllowedModelMethods\n \n \n \n \n \n \n \ngetAllowedModelMethods(model: string, methods?: string[])\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:113\n \n \n\n\n \n \n Returns an array of all allowed methods for the given relation \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n methods\n \n string[]\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getAllowedResourceMethods\n \n \n \n \n \n \n \ngetAllowedResourceMethods(relation: string, variables: Object, methods?: string[], api?: Core)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:82\n \n \n\n\n \n \n Returns only the allowed methods for a given relation. Uses the permissions config option from resource-config. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n relation\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n variables\n \n Object\n \n \n \n No\n \n \n \n {}\n \n\n \n \n methods\n \n string[]\n \n \n \n Yes\n \n \n \n \n\n \n \n api\n \n Core\n \n \n \n Yes\n \n \n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getApi\n \n \n \n \n \n \n \ngetApi(email: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:157\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n email\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin(undefined, api?)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:31\n \n \n\n\n \n \n Generic login that works with both public and admin API. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n \n \n No\n \n \n\n \n \n api\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n logout\n \n \n \n \n \n \n \nlogout(api?)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:147\n \n \n\n\n \n \n Generic logout that works with both public and admin API. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n api\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n noClientID\n \n \n \n \n \n \n \nnoClientID()\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:171\n \n \n\n\n \n \n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n resetPassword\n \n \n \n \n \n \n \nresetPassword(email, api?)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:135\n \n \n\n\n \n \n Generic password reset that works with both public and admin API. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n email\n \n \n No\n \n \n\n \n \n api\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n resolveVariables\n \n \n \n \n \n \n \nresolveVariables(string: string, variables: Object)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:74\n \n \n\n\n \n \n replaces all variables by values in a string \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n string\n \n string\n \n \n \n No\n \n \n\n \n \n variables\n \n Object\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n signup\n \n \n \n \n \n \n \nsignup(undefined, api?)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/auth.service.ts:45\n \n \n\n\n \n \n Generic Signup, works for accounts API and PublicAPI \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n \n \n No\n \n \n\n \n \n api\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport Core from 'ec.sdk/lib/Core';\nimport { ResourceConfig } from '../resource-config/resource-config.service';\nimport { SdkService } from '../sdk/sdk.service';\n\n/** The SdkService exposes all instances of the ec.sdk APIs.\n * To be able to use it, you have to provide an environment like this in your module's providers:\n *\n *```json\n {\n provide: \"environment\",\n useValue: {\n datamanagerID: \"83cc6374\",\n environment: \"stage\",\n clientID: \"rest\"\n }\n }```\n * The environment is optional, defaulting to live. See\n * https://entrecode.github.io/ec.sdk/#environment for more info. The clientID is only optional if\n * you do not plan to use authentication. See https://entrecode.github.io/ec.sdk/#environment =>\n * setClientID.\n */\n@Injectable()\nexport class AuthService {\n\n /** Calls init and sets ready to true when finished. */\n constructor(private resourceConfig: ResourceConfig, private sdk: SdkService) {\n }\n\n /** Generic login that works with both public and admin API. */\n login({ email, password }, api?) {\n if (this.noClientID()) {\n return Promise.reject(this.noClientID());\n }\n return Promise.resolve(api || this.getApi(email))\n .then((resolvedAPI) => {\n const _api = resolvedAPI || this.sdk.session;\n return !_api ? Promise.reject('api_not_found') : _api.login(email, password);\n }).then(() => {\n return this.sdk.init();\n });\n }\n\n /** Generic Signup, works for accounts API and PublicAPI */\n signup({ email, password, invite }, api?) {\n if (this.noClientID()) {\n return Promise.reject(this.noClientID());\n }\n return api ? api.signup(email, password, invite) :\n this.sdk.api.signup(email, password, invite)\n .catch(() => this.sdk.accounts.signup(email, password, invite))\n .then((res) => {\n return this.sdk.init();\n });\n }\n\n /** Returns the current account. Works for all apis */\n getAccount(api = this.sdk.api) {\n return api.me().then((account) => {\n return account || this.sdk.accounts.me();\n }).catch((err) => {\n return this.sdk.api.me();\n });\n }\n\n /** checks given public permission for given api, defaults to this.sdk.api. Also works as ec user */\n checkPermission(permission: string, api?) {\n return this.sdk.ready.then((user) => {\n api = api || this.sdk.user;\n return api.checkPermission(permission);\n });\n }\n /** replaces all variables by values in a string */\n resolveVariables(string: string, variables: Object) {\n Object.keys(variables).forEach((key) => {\n string = string.replace(``, variables[key]);\n });\n return string;\n }\n\n /** Returns only the allowed methods for a given relation. Uses the permissions config option from resource-config. */\n getAllowedResourceMethods(relation: string, variables: Object = {}, methods?: string[], api?: Core): Promise {\n if (methods) {\n return Promise.resolve(methods);\n }\n if (!this.resourceConfig.get(relation) || !this.resourceConfig.get(relation).permissions) {\n /* console.warn(`relation ${relation} has no defined permissions, defaulting to all methods available`); */\n return Promise.resolve(['get', 'post', 'put', 'delete']);\n }\n const permissions = this.resourceConfig.get(relation).permissions;\n return Object.keys(permissions)\n .map((method) => (results) => {\n return !permissions[method] ? Promise.resolve(results) :\n permissions[method] === true ? Promise.resolve(results.concat(method)) :\n this.checkPermission(`${this.resolveVariables(permissions[method], variables)}`, api)\n .then(res => {\n if (res) {\n results.push(method);\n }\n return results;\n }).catch(err => {\n return results;\n });\n })\n .reduce((a, b) => a.then(r => b(r)), Promise.resolve([]))\n .then(_methods => {\n _methods.filter(x => !!x);\n return _methods;\n });\n }\n\n /** Returns an array of all allowed methods for the given relation */\n getAllowedModelMethods(model: string, methods?: string[]): Promise {\n if (methods) {\n return Promise.resolve(methods);\n }\n return ['get', 'post', 'put', 'delete']\n .map((method) => (results) =>\n this.checkPermission(`${model}:${method}`, this.sdk.api)\n .then(res => {\n if (res) {\n results.push(method);\n }\n return results;\n })\n )\n .reduce((a, b) => a.then(r => b(r)), Promise.resolve([]))\n .then(_methods => {\n _methods.filter(x => !!x);\n return _methods;\n });\n }\n\n /** Generic password reset that works with both public and admin API. */\n resetPassword(email, api?) {\n if (this.noClientID()) {\n return Promise.reject(this.noClientID());\n }\n return Promise.resolve(api || this.getApi(email))\n .then((resolvedAPI) => {\n const _api = resolvedAPI || this.sdk.accounts;\n return !_api ? Promise.reject('api_not_found') : _api.resetPassword(email);\n });\n }\n\n /** Generic logout that works with both public and admin API. */\n logout(api?) {\n if (this.noClientID()) {\n return Promise.reject(this.noClientID());\n }\n return api ? api.logout() : this.sdk.session.logout().catch(() => this.sdk.api.logout())\n .then(() => {\n return this.sdk.init();\n });\n }\n\n getApi(email: string) {\n if (!this.sdk.api && !this.sdk.accounts) {\n return Promise.reject('no_api_found');\n }\n return this.sdk.api.emailAvailable(email)\n .then((available) => {\n if (!available) {\n return this.sdk.api;\n }\n }).catch(() => {\n return;\n });\n }\n\n noClientID() {\n if (!this.sdk.environment || !this.sdk.environment.clientID) {\n return `\nNo clientID set in environment! To enable all auth related functionalities,\nyou can create a client in your datamanager settings and provide it with your environment:\n\n providers: [\n {\n provide: 'environment',\n useValue: {\n datamanagerID: '83cc6374',\n clientID: 'myClient',\n }\n }\n ]\n`;\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/CalendarModule.html":{"url":"modules/CalendarModule.html","title":"module - CalendarModule","body":"\n \n\n\n\n\n Modules\n CalendarModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_CalendarModule\n\n\n\ncluster_CalendarModule_declarations\n\n\n\ncluster_CalendarModule_exports\n\n\n\n\nCalendarComponent\n\nCalendarComponent\n\n\n\nCalendarModule\n\nCalendarModule\n\nCalendarModule -->\n\nCalendarComponent->CalendarModule\n\n\n\n\n\nDaterangeComponent\n\nDaterangeComponent\n\nCalendarModule -->\n\nDaterangeComponent->CalendarModule\n\n\n\n\n\nDatetimePipe\n\nDatetimePipe\n\nCalendarModule -->\n\nDatetimePipe->CalendarModule\n\n\n\n\n\nHeatmapComponent\n\nHeatmapComponent\n\nCalendarModule -->\n\nHeatmapComponent->CalendarModule\n\n\n\n\n\nMonthComponent\n\nMonthComponent\n\nCalendarModule -->\n\nMonthComponent->CalendarModule\n\n\n\n\n\nCalendarComponent \n\nCalendarComponent \n\nCalendarComponent -->\n\nCalendarModule->CalendarComponent \n\n\n\n\n\nDaterangeComponent \n\nDaterangeComponent \n\nDaterangeComponent -->\n\nCalendarModule->DaterangeComponent \n\n\n\n\n\nDatetimePipe \n\nDatetimePipe \n\nDatetimePipe -->\n\nCalendarModule->DatetimePipe \n\n\n\n\n\nHeatmapComponent \n\nHeatmapComponent \n\nHeatmapComponent -->\n\nCalendarModule->HeatmapComponent \n\n\n\n\n\nMonthComponent \n\nMonthComponent \n\nMonthComponent -->\n\nCalendarModule->MonthComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/calendar/src/lib/calendar.module.ts\n \n\n\n \n Description\n \n \n This Module contains all calendar related components \n\n \n\n\n \n \n \n Declarations\n \n \n CalendarComponent\n \n \n DaterangeComponent\n \n \n DatetimePipe\n \n \n HeatmapComponent\n \n \n MonthComponent\n \n \n \n \n Exports\n \n \n CalendarComponent\n \n \n DaterangeComponent\n \n \n DatetimePipe\n \n \n HeatmapComponent\n \n \n MonthComponent\n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n forRoot\n \n \n \n \n \n \n \n \n forRoot(formats: literal type)\n \n \n\n\n \n \n Defined in packages/calendar/src/lib/calendar.module.ts:46\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n formats\n \n literal type\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { NgModule, ModuleWithProviders } from '@angular/core';\nimport { DatetimePipe } from './datetime.pipe';\nimport { CalendarComponent } from './calendar/calendar.component';\nimport { HeatmapComponent } from './heatmap/heatmap.component';\nimport { DaterangeComponent } from './daterange/daterange.component';\nimport { MonthComponent } from './calendar/month.component';\nimport { CommonModule } from '@angular/common';\n\nexport const calendarModuleConfig = {\n imports: [\n CommonModule\n ],\n exports: [\n DatetimePipe,\n CalendarComponent,\n HeatmapComponent,\n DaterangeComponent,\n MonthComponent,\n ],\n declarations: [\n DatetimePipe,\n CalendarComponent,\n HeatmapComponent,\n DaterangeComponent,\n MonthComponent,\n ],\n providers: [\n {\n provide: 'moment.format.date',\n useValue: 'DD.MM.YYYY'\n },\n {\n provide: 'moment.format.time',\n useValue: 'HH:mm'\n },\n {\n provide: 'moment.format.month',\n useValue: 'MMMM YYYY'\n }\n ]\n};\n\n/** This Module contains all calendar related components */\n@NgModule(calendarModuleConfig)\nexport class CalendarModule {\n static forRoot(formats: { date?, time?, month?}): ModuleWithProviders {\n return {\n ngModule: CalendarModule,\n providers: [\n {\n provide: 'moment.format.date',\n useValue: formats.date\n },\n {\n provide: 'moment.format.time',\n useValue: formats.time\n },\n {\n provide: 'moment.format.month',\n useValue: formats.month\n },\n ]\n };\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Collection.html":{"url":"classes/Collection.html","title":"class - Collection","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Collection\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/collection/collection.ts\n \n\n \n Description\n \n \n A Collection is a more sophisticated Array. It is fundamental for other classes like List.\n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n items\n \n \n Protected\n update\n \n \n Public\n update$\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n add\n \n \n addAll\n \n \n has\n \n \n hasAll\n \n \n index\n \n \n isEmpty\n \n \n move\n \n \n remove\n \n \n removeAll\n \n \n replaceWith\n \n \n toggle\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(items: Array)\n \n \n \n \n Defined in packages/core/src/lib/collection/collection.ts:14\n \n \n\n \n \n Constructs the collection with the given item Array (optional).\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n items\n \n \n Array\n \n \n \n No\n \n \n \n \n \n Example :\n \n * const numbers = new Collection([1, 2, 3]);\n *\n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n items\n \n \n \n \n \n \n \n items: Array\n\n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in packages/core/src/lib/collection/collection.ts:10\n \n \n\n \n \n The items must all have the same type T.\n\n \n \n\n \n \n \n \n \n \n \n \n \n Protected\n update\n \n \n \n \n \n \n \n update: Subject>\n\n \n \n \n \n Type : Subject>\n\n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in packages/core/src/lib/collection/collection.ts:12\n \n \n\n \n \n Subject that is nexted when the items update \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n update$\n \n \n \n \n \n \n \n update$: Observable>\n\n \n \n \n \n Type : Observable>\n\n \n \n \n \n Default value : this.update.asObservable()\n \n \n \n \n Defined in packages/core/src/lib/collection/collection.ts:14\n \n \n\n \n \n Subject that is nexted when the items change \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n add\n \n \n \n \n \n \n \nadd(item: T, unique?: boolean, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:71\n \n \n\n\n \n \n Adds the given item to the Collection. If the unique flag is set, the item will only be added\nif it is not contained.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n item\n \n T\n \n \n \n No\n \n \n \n \n\n \n \n unique\n \n boolean\n \n \n \n Yes\n \n \n \n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n Example :\n \n * numbers.add(4);\n *\n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n addAll\n \n \n \n \n \n \n \naddAll(items: Array, unique: boolean, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:89\n \n \n\n\n \n \n Adds the given items to the Collection. If the unique flag is set, only items that are not\ncontained will be added.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n items\n \n Array\n \n \n \n No\n \n \n \n []\n \n\n \n \n unique\n \n boolean\n \n \n \n No\n \n \n \n false\n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n Example :\n \n * numbers.addAll([5, 6, 7]);\n *\n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n has\n \n \n \n \n \n \n \nhas(item: T)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:42\n \n \n\n\n \n \n Checks if the Collection contains the given item.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n item\n \n T\n \n \n \n No\n \n \n\n \n \n \n \n \n Example :\n \n * numbers.has(2); //true\n *\n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n hasAll\n \n \n \n \n \n \n \nhasAll(items: Array)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:53\n \n \n\n\n \n \n Checks if the Collection contains all given items.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n items\n \n Array\n \n \n \n No\n \n \n \n []\n \n\n \n \n \n \n \n Example :\n \n * numbers.has([1,2]); //true\n *\n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n index\n \n \n \n \n \n \n \nindex(item: T)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:31\n \n \n\n\n \n \n Returns the index of the given item \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n item\n \n T\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : number\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isEmpty\n \n \n \n \n \n \n \nisEmpty()\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:160\n \n \n\n\n \n \n Returns true if the collection is empty \n\n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n move\n \n \n \n \n \n \n \nmove(item: T, index: number, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:165\n \n \n\n\n \n \n Moves the given item to the given array index. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n item\n \n T\n \n \n \n No\n \n \n \n \n\n \n \n index\n \n number\n \n \n \n No\n \n \n \n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n remove\n \n \n \n \n \n \n \nremove(item: T, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:106\n \n \n\n\n \n \n Removes the given item from the Collection.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n item\n \n T\n \n \n \n No\n \n \n \n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n Example :\n \n * numbers.remove(4);\n *\n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n removeAll\n \n \n \n \n \n \n \nremoveAll(items?: Array, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:123\n \n \n\n\n \n \n Removes all items from the Collection.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n items\n \n Array\n \n \n \n Yes\n \n \n \n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n Example :\n \n * numbers.removeAll();\n *\n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n replaceWith\n \n \n \n \n \n \n \nreplaceWith(items: Array, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:147\n \n \n\n\n \n \n Replaces all current items with the given items. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n items\n \n Array\n \n \n \n No\n \n \n \n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n toggle\n \n \n \n \n \n \n \ntoggle(item: T, event: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/collection/collection.ts:138\n \n \n\n\n \n \n Toggles the item in and out of collection \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n item\n \n T\n \n \n \n No\n \n \n \n \n\n \n \n event\n \n boolean\n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n\n \n Collection\nCollection is a more sophisticated Array:\nconst collection = new Collection([1, 2, 3]);\ncollection.has(1); //true\ncollection.has(4); //false\ncollection.add(4);\ncollection.remove(4);\ncollection.index(1); //0\ncollection.addAll([10,11,12]); //true\ncollection.hasAll([1,10,11]); //true\ncollection.removeAll();It is the Parent Class of List and Selection.\n\n \n\n \n import { Observable, Subject } from 'rxjs';\n\n/**\n * A Collection is a more sophisticated Array. It is fundamental for other classes like List.\n */\nexport class Collection {\n /**\n * The items must all have the same type T.\n */\n public items: Array;\n /** Subject that is nexted when the items update */\n protected update: Subject> = new Subject();\n /** Subject that is nexted when the items change */\n public update$: Observable> = this.update.asObservable();\n\n /**\n * Constructs the collection with the given item Array (optional).\n * @example\n * ```typescript\n * const numbers = new Collection([1, 2, 3]);\n * ```\n */\n constructor(items: Array = []) {\n this.items = [];\n items.forEach((item) => {\n this.items.push(item);\n });\n }\n\n /** Returns the index of the given item */\n index(item: T): number {\n return this.items.indexOf(item);\n }\n\n /**\n * Checks if the Collection contains the given item.\n * @example\n * ```typescript\n * numbers.has(2); //true\n * ```\n */\n has(item: T): boolean {\n return this.index(item) !== -1;\n }\n\n /**\n * Checks if the Collection contains all given items.\n * @example\n * ```typescript\n * numbers.has([1,2]); //true\n * ```\n */\n hasAll(items: Array = []): boolean {\n if (items === null) {\n // console.warn('has all fail', this, items);\n return false;\n }\n return items.reduce((has, item) => {\n return has && this.has(item);\n }, true);\n }\n\n /**\n * Adds the given item to the Collection. If the unique flag is set, the item will only be added\n * if it is not contained.\n * @example\n * ```typescript\n * numbers.add(4);\n * ```\n */\n add(item: T, unique?: boolean, event: boolean = true) {\n if (unique && this.has(item)) {\n return false;\n }\n this.items.push(item);\n if (event) {\n this.update.next(this);\n }\n }\n\n /**\n * Adds the given items to the Collection. If the unique flag is set, only items that are not\n * contained will be added.\n * @example\n * ```typescript\n * numbers.addAll([5, 6, 7]);\n * ```\n */\n addAll(items: Array = [], unique: boolean = false, event: boolean = true) {\n const length = this.items.length;\n items.forEach((item) => {\n this.add(item, unique, false);\n });\n if (this.items.length > length && event) {\n this.update.next(this);\n }\n }\n\n /**\n * Removes the given item from the Collection.\n * @example\n * ```typescript\n * numbers.remove(4);\n * ```\n */\n remove(item: T, event: boolean = true) {\n if (!this.has(item)) {\n return false;\n }\n this.items.splice(this.index(item), 1);\n if (event) {\n this.update.next(this);\n }\n }\n\n /**\n * Removes all items from the Collection.\n * @example\n * ```typescript\n * numbers.removeAll();\n * ```\n */\n removeAll(items?: Array, event: boolean = true) {\n const length = this.items.length;\n if (items) {\n items.forEach((item) => {\n this.remove(item, false);\n });\n } else {\n this.items.length = 0;\n }\n if (this.items.length , event: boolean = true) {\n if (this.items && this.items.length) {\n this.removeAll(undefined, false);\n }\n if (items.length) {\n this.addAll(items, false, false);\n }\n if (event) {\n this.update.next(this);\n }\n }\n\n /** Returns true if the collection is empty */\n isEmpty() {\n return this.items.length === 0;\n }\n\n /** Moves the given item to the given array index. */\n move(item: T, index: number, event: boolean = true) {\n if (!this.has(item) || this.items.indexOf(item) === index) {\n return;\n }\n this.items.splice(index, 0, this.items.splice(this.items.indexOf(item), 1)[0]);\n if (event) {\n this.update.next(this);\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Config.html":{"url":"classes/Config.html","title":"class - Config","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Config\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/config/config.ts\n \n\n \n Description\n \n \n The Root class for all Configurations. \n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n config\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n Optional\n configure\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n config\n \n \n \n \n \n \n \n config: literal type\n\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in packages/core/src/lib/config/config.ts:5\n \n \n\n \n \n The config object. \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n Optional\n configure\n \n \n \n \n \n \n \n \n configure(key: string, property: string, config?: Object)\n \n \n\n\n \n \n Defined in packages/core/src/lib/config/config.ts:13\n \n \n\n\n \n \n This method is a getter and setter for configurations. The key stands for the config (e.g. model).\nThe property is a sub property if the config (e.g. fields => model.fields).\nIf no config is given, the method just returns the configuration for the given property.\nIf a config is given, the property config is merged via Object.assign. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n \n \n No\n \n \n\n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n config\n \n Object\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n\n\n \n export abstract class Config {\n // TODO use Map !!!! (like simi did in EventEmitter.ts)\n /** The config object. */\n private config: {\n [key: string]: Object,\n } = {};\n\n /** This method is a getter and setter for configurations. The key stands for the config (e.g. model).\n * The property is a sub property if the config (e.g. fields => model.fields).\n * If no config is given, the method just returns the configuration for the given property.\n * If a config is given, the property config is merged via Object.assign. */\n public configure?(key: string, property: string, config?: Object) {\n if (!this.config[key]) {\n this.config[key] = {};\n }\n if (!config) {\n return this.config[key][property];\n }\n if (!this.config[key][property]) {\n this.config[key][property] = {};\n }\n Object.assign(this.config[key][property], config);\n return this;\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/CrudComponent.html":{"url":"components/CrudComponent.html","title":"component - CrudComponent","body":"\n \n\n\n\n\n\n Components\n CrudComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/data/src/lib/crud/crud.component.ts\n\n\n \n Description\n \n \n The CrudComponent takes at least a model name to render an entry list with create/edit/delete functionality out of the box.\n * \n *https://components.entrecode.de/entries/crud?e=1\n\n \n\n\n \n Implements\n \n \n OnInit\n WithLoader\n WithNotifications\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-crud\n \n\n\n\n\n \n templateUrl\n ./crud.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n entryPop\n \n \n list\n \n \n loader\n \n \n notifications\n \n \n Public\n route\n \n \n Public\n router\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n hasMethod\n \n \n Private\n loadEntry\n \n \n Public\n mustReload\n \n \n ngOnInit\n \n \n Public\n selectEntry\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n config\n \n \n model\n \n \n selection\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n columnClicked\n \n \n selected\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, auth: AuthService, loaderService: LoaderService, modelConfig: ModelConfigService, notificationService: NotificationsService, symbol: SymbolService, cdr: ChangeDetectorRef, router: Router, route: ActivatedRoute)\n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:49\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n auth\n \n \n AuthService\n \n \n \n No\n \n \n \n \n loaderService\n \n \n LoaderService\n \n \n \n No\n \n \n \n \n modelConfig\n \n \n ModelConfigService\n \n \n \n No\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n config\n \n \n CrudConfig for customization of the crud's UI.\n\n \n Type : CrudConfig\n\n \n \n Default value : {}\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:35\n \n \n \n \n \n \n \n \n \n model\n \n \n The model that should be crud'ed. \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:33\n \n \n \n \n \n \n \n \n \n selection\n \n \n The selection that should be used \n\n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:37\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n columnClicked\n \n \n Emits when a list element is clicked \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:45\n \n \n \n \n \n \n \n \n \n selected\n \n \n Emits when the selection has changed \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:47\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n hasMethod\n \n \n \n \n \n \n \n \n hasMethod(method: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:79\n \n \n\n\n \n \n Returns true if the given method is part of the methods array (or if there is no methods array) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n method\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Private\n loadEntry\n \n \n \n \n \n \n \n \n loadEntry(item)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:91\n \n \n\n\n \n \n Loads the clicked entry item, depending on the configured levels. Reloads the entry if the form has fields the which list has not. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n mustReload\n \n \n \n \n \n \n \n \n mustReload(item)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:84\n \n \n\n\n \n \n Returns true if the visible fields in the list differ from the visible fields in the form\n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:70\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n selectEntry\n \n \n \n \n \n \n \n \n selectEntry(item)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:115\n \n \n\n\n \n \n Is called when an item in the list is clicked. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n entryPop\n \n \n \n \n \n \n \n entryPop: EntryPopComponent\n\n \n \n \n \n Type : EntryPopComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(EntryPopComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:41\n \n \n\n \n \n The Pop inside the template. \n\n \n \n\n \n \n \n \n \n \n \n \n \n list\n \n \n \n \n \n \n \n list: EntryListComponent\n\n \n \n \n \n Type : EntryListComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(EntryListComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:39\n \n \n\n \n \n The EntryList inside the template. \n\n \n \n\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: LoaderComponent\n\n \n \n \n \n Type : LoaderComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LoaderComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:43\n \n \n\n \n \n The lists loader \n\n \n \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:49\n \n \n\n \n \n Emitted Notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n route\n \n \n \n \n \n \n \n route: ActivatedRoute\n\n \n \n \n \n Type : ActivatedRoute\n\n \n \n \n \n Decorators : \n \n \n @Optional()\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:59\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n router\n \n \n \n \n \n \n \n router: Router\n\n \n \n \n \n Type : Router\n\n \n \n \n \n Decorators : \n \n \n @Optional()\n \n \n \n \n \n Defined in packages/data/src/lib/crud/crud.component.ts:58\n \n \n\n\n \n \n\n\n\n\n\n \n import {\n Component, EventEmitter, Input, OnInit, Optional,\n Output, ViewChild, ChangeDetectorRef\n} from '@angular/core';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { CrudConfig } from './crud-config.interface';\nimport { EntryListComponent } from '../entry-list/entry-list.component';\nimport { SdkService } from '../sdk/sdk.service';\nimport { Selection } from '@ec.components/core';\nimport { LoaderComponent } from '@ec.components/ui';\nimport { NotificationsService, LoaderService } from '@ec.components/ui';\nimport { AuthService } from '../auth/auth.service';\nimport { EntryPopComponent } from '../entry-pop/entry-pop.component';\nimport { WithLoader } from '@ec.components/ui';\nimport { Notification, WithNotifications, SymbolService } from '@ec.components/ui';\nimport { ModelConfigService } from '../model-config/model-config.service';\n\n/** The CrudComponent takes at least a model name to render an entry list with create/edit/delete functionality out of the box.\n * ```html\n * \n * ```\n * https://components.entrecode.de/entries/crud?e=1\n * */\n@Component({\n selector: 'ec-crud',\n templateUrl: './crud.component.html',\n})\nexport class CrudComponent implements OnInit, WithLoader, WithNotifications {\n /** The model that should be crud'ed. */\n @Input() model: string;\n /** CrudConfig for customization of the crud's UI.*/\n @Input() config: CrudConfig = {};\n /** The selection that should be used */\n @Input() selection: Selection;\n /** The EntryList inside the template. */\n @ViewChild(EntryListComponent) list: EntryListComponent;\n /** The Pop inside the template. */\n @ViewChild(EntryPopComponent) entryPop: EntryPopComponent;\n /** The lists loader */\n @ViewChild(LoaderComponent) loader: LoaderComponent;\n /** Emits when a list element is clicked */\n @Output() columnClicked: EventEmitter = new EventEmitter();\n /** Emits when the selection has changed */\n @Output() selected: EventEmitter = new EventEmitter();\n /** Emitted Notifications */\n notifications: Notification[] = [];\n\n constructor(private sdk: SdkService,\n private auth: AuthService,\n private loaderService: LoaderService,\n private modelConfig: ModelConfigService,\n private notificationService: NotificationsService,\n private symbol: SymbolService,\n private cdr: ChangeDetectorRef,\n @Optional() public router: Router,\n @Optional() public route: ActivatedRoute) {\n /* if (route) {\n merge(route.data, route.params, route.queryParams)\n .subscribe(({ model }) => {\n if (model) {\n this.model = model;\n }\n });\n } */\n }\n\n ngOnInit() {\n this.auth.getAllowedModelMethods(this.model, this.config.methods)\n .then((methods) => {\n this.config.methods = methods;\n this.cdr.markForCheck();\n });\n }\n\n /** Returns true if the given method is part of the methods array (or if there is no methods array) */\n public hasMethod(method: string) {\n return this.config.methods && this.config.methods.indexOf(method) !== -1;\n }\n\n /** Returns true if the visible fields in the list differ from the visible fields in the form*/\n public mustReload(item) {\n return !Object.keys(item.config.fields).reduce((equal, property) => {\n return equal && (item.config.fields[property].list !== false || item.config.fields[property].form === false);\n }, true);\n }\n\n /** Loads the clicked entry item, depending on the configured levels. Reloads the entry if the form has fields the which list has not. */\n private loadEntry(item) {\n return this.modelConfig.getMinLevel(this.model, this.config.fields)\n .then((minLevel) => {\n const levels = Math.max(minLevel, this.config.levels || 1);\n if (!this.config.alwaysLoadEntry && !this.mustReload(item) && levels === 1) {\n return item.getBody();\n }\n return this.sdk.api.entry(this.model, item.id(), levels);\n }).then((loadedEntry) => {\n this.entryPop.edit(loadedEntry);\n this.notificationService.emit({ hide: this.notifications });\n }).catch((err) => {\n console.log('error while loading entry to edit', err);\n this.notificationService.emit({\n title: this.symbol.resolve('error.load'),\n error: err,\n sticky: true,\n hide: this.notifications,\n replace: this.notifications\n });\n });\n }\n\n /** Is called when an item in the list is clicked. */\n public selectEntry(item) {\n if (!item) {\n return;\n }\n if (this.columnClicked.observers.length) {\n this.columnClicked.emit(item);\n return;\n }\n this.loaderService.wait(this.loadEntry(item), this.loader);\n }\n}\n\n \n\n \n \n \n \n \n {{config?.createLabel}}\n \n \n \n \n \n \n \n \n \n \n\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{config?.createLabel}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'CrudComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/CrudConfig.html":{"url":"interfaces/CrudConfig.html","title":"interface - CrudConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n CrudConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/crud/crud-config.interface.ts\n \n\n \n Description\n \n \n The CrudConfig allows a quick customization of an ec-crud component. \n\n \n\n \n Extends\n \n \n ListConfig\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n alwaysLoadEntry\n \n \n Optional\n createLabel\n \n \n Optional\n customUpload\n \n \n Optional\n deleteOnRemove\n \n \n Optional\n develop\n \n \n Optional\n disableCreatePop\n \n \n Optional\n disableListPop\n \n \n Optional\n disableSearchbar\n \n \n Optional\n disableSelectSwitch\n \n \n Optional\n disableUrlUpload\n \n \n Optional\n fileOptions\n \n \n Optional\n hideAssetGroupSelect\n \n \n Optional\n keepPopOpen\n \n \n Optional\n levels\n \n \n Optional\n loader\n \n \n Optional\n methods\n \n \n Optional\n nestedPopActive\n \n \n Optional\n notifications\n \n \n Optional\n permissions\n \n \n Optional\n placeholder\n \n \n Optional\n pluralLabel\n \n \n Optional\n popColumns\n \n \n Optional\n safeDelete\n \n \n Optional\n singularLabel\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n alwaysLoadEntry\n \n \n \n \n alwaysLoadEntry: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, an entry is always loaded when opened, even with lvl1 \n\n \n \n \n \n \n \n \n \n \n createLabel\n \n \n \n \n createLabel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The label for the entry create button \n\n \n \n \n \n \n \n \n \n \n customUpload\n \n \n \n \n customUpload: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, a pop will open before upload to set up custom options \n\n \n \n \n \n \n \n \n \n \n deleteOnRemove\n \n \n \n \n deleteOnRemove: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, selects will delete entries that are removed from the selection \n\n \n \n \n \n \n \n \n \n \n develop\n \n \n \n \n develop: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, an extra develop button will be shown\n\n \n \n \n \n \n \n \n \n \n disableCreatePop\n \n \n \n \n disableCreatePop: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no create pop will be available at selects \n\n \n \n \n \n \n \n \n \n \n disableListPop\n \n \n \n \n disableListPop: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no list pop will be available at selects \n\n \n \n \n \n \n \n \n \n \n disableSearchbar\n \n \n \n \n disableSearchbar: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no dropdown will be accessible \n\n \n \n \n \n \n \n \n \n \n disableSelectSwitch\n \n \n \n \n disableSelectSwitch: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no select mode switch will be shown \n\n \n \n \n \n \n \n \n \n \n disableUrlUpload\n \n \n \n \n disableUrlUpload: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, assets cannot be upload via url \n\n \n \n \n \n \n \n \n \n \n fileOptions\n \n \n \n \n fileOptions: FileOptions\n\n \n \n\n\n \n \n Type : FileOptions\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Default options for file uploads \n\n \n \n \n \n \n \n \n \n \n hideAssetGroupSelect\n \n \n \n \n hideAssetGroupSelect: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Hides the assetGroup select in asset-list-pop \n\n \n \n \n \n \n \n \n \n \n keepPopOpen\n \n \n \n \n keepPopOpen: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the entry pop will remain open after the entry has been successfully saved. \n\n \n \n \n \n \n \n \n \n \n levels\n \n \n \n \n levels: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n With how many levels should a list entry be loaded? Defaults to 1 (taking entry directly from the list, without loading)\n\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n \n loader: LoaderComponent\n\n \n \n\n\n \n \n Type : LoaderComponent\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n An external loader component that should be used, falls back to internal. \n\n \n \n \n \n \n \n \n \n \n methods\n \n \n \n \n methods: Array\n\n \n \n\n\n \n \n Type : Array\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n An Array of Methods that should be supported. Possible values are create, read, update and delete\n\n \n \n \n \n \n \n \n \n \n nestedPopActive\n \n \n \n \n nestedPopActive: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, a nested pop will be active immediately \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n notifications: NotificationsComponent\n\n \n \n\n\n \n \n Type : NotificationsComponent\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n An external notifications component that should be used, falls back to internal \n\n \n \n \n \n \n \n \n \n \n permissions\n \n \n \n \n permissions: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n maps the permissions to the methods post put create delete \n\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n \n \n placeholder: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Sets a placeholder. Used e.g. for empty entry-select \n\n \n \n \n \n \n \n \n \n \n pluralLabel\n \n \n \n \n pluralLabel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The label for multiple entities \n\n \n \n \n \n \n \n \n \n \n popColumns\n \n \n \n \n popColumns: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Defines the column width of the pops used. Defaults to popService.defaultColumns \n\n \n \n \n \n \n \n \n \n \n safeDelete\n \n \n \n \n safeDelete: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, delete operations need confirmation \n\n \n \n \n \n \n \n \n \n \n singularLabel\n \n \n \n \n singularLabel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The label for one entity \n\n \n \n \n \n \n \n\n\n \n import { ListConfig } from '@ec.components/core';\nimport { NotificationsComponent, LoaderComponent } from '@ec.components/ui';\nimport { FileOptions } from '../files/file.service';\n\n/** The CrudConfig allows a quick customization of an ec-crud component. */\nexport interface CrudConfig extends ListConfig {\n /** The label for one entity */\n singularLabel?: string;\n /** The label for multiple entities */\n pluralLabel?: string;\n /** The label for the entry create button */\n createLabel?: string;\n /** An Array of Methods that should be supported. Possible values are create, read, update and delete*/\n methods?: Array;\n /** An external loader component that should be used, falls back to internal. */\n loader?: LoaderComponent;\n /** An external notifications component that should be used, falls back to internal */\n notifications?: NotificationsComponent;\n /** If true, an extra develop button will be shown*/\n develop?: boolean;\n /** If true, the entry pop will remain open after the entry has been successfully saved. */\n keepPopOpen?: boolean;\n /** With how many levels should a list entry be loaded? Defaults to 1 (taking entry directly from the list, without loading)*/\n levels?: number;\n /** If true, an entry is always loaded when opened, even with lvl1 */\n alwaysLoadEntry?: boolean;\n /** maps the permissions to the methods post put create delete */\n permissions?: { put?: string | boolean, post?: string | boolean, get?: string | boolean, delete?: string | boolean };\n /** If true, no select mode switch will be shown */\n disableSelectSwitch?: boolean;\n /** If true, no list pop will be available at selects */\n disableListPop?: boolean;\n /** If true, assets cannot be upload via url */\n disableUrlUpload?: boolean;\n /** If true, no create pop will be available at selects */\n disableCreatePop?: boolean;\n /** If true, no dropdown will be accessible */\n disableSearchbar?: boolean;\n /** If true, selects will delete entries that are removed from the selection */\n deleteOnRemove?: boolean;\n /** If true, delete operations need confirmation */\n safeDelete?: boolean;\n /** Hides the assetGroup select in asset-list-pop */\n hideAssetGroupSelect?: boolean;\n /** Default options for file uploads */\n fileOptions?: FileOptions;\n /** If true, a pop will open before upload to set up custom options */\n customUpload?: boolean;\n /** Defines the column width of the pops used. Defaults to popService.defaultColumns */\n popColumns?: number;\n /** If true, a nested pop will be active immediately */\n nestedPopActive?: boolean;\n /** Sets a placeholder. Used e.g. for empty entry-select */\n placeholder?: string;\n\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/CrudService.html":{"url":"injectables/CrudService.html","title":"injectable - CrudService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n CrudService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/crud/crud.service.ts\n \n\n \n Description\n \n \n The CRUD service is meant to be used when modifying entries.\nAs the letters state it should be used to create update and delete entries.\nEach action fires up a change that can be subscribed upon in any component to react to relevant\nchanges.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n resourceService\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n change\n \n \n clean\n \n \n create\n \n \n del\n \n \n isImmutableProperty\n \n \n save\n \n \n update\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, resourceService: ResourceService)\n \n \n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:13\n \n \n\n \n \n Injects sdk \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n resourceService\n \n \n ResourceService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n change\n \n \n \n \n \n \n \nchange(filter?: any)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:20\n \n \n\n\n \n \n Yields an observable that emits for all updates that match the given filter \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n filter\n \n any\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n clean\n \n \n \n \n \n \n \nclean(value: Object)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:71\n \n \n\n\n \n \n Removes all null or undefined values from the given object \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Object\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n create\n \n \n \n \n \n \n \ncreate(model: string, value: Object)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:86\n \n \n\n\n \n \n Creates a new entry with the given value for the given model. Fires the \"create\" change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n del\n \n \n \n \n \n \n \ndel(model: string, entry: EntryResource)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:98\n \n \n\n\n \n \n deletes the given entry and emits the \"delete\" change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n entry\n \n EntryResource\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isImmutableProperty\n \n \n \n \n \n \n \nisImmutableProperty(key: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:65\n \n \n\n\n \n \n Returns true if the given field key is an immutable system property \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n save\n \n \n \n \n \n \n \nsave(model: string, entry: EntryResource, value: Object)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:38\n \n \n\n\n \n \n Saves the given entry with the given value. If the entry is not yet existing, it will be created. Otherwise it will be updated. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n entry\n \n EntryResource\n \n \n \n No\n \n \n\n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n update\n \n \n \n \n \n \n \nupdate(model, entry: EntryResource, value: Object, safePut)\n \n \n\n\n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:51\n \n \n\n\n \n \n Updates the given entry with the new value. Fires the \"update\" change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n model\n \n \n \n \n No\n \n \n \n \n\n \n \n entry\n \n EntryResource\n \n \n \n No\n \n \n \n \n\n \n \n value\n \n Object\n \n \n \n No\n \n \n \n \n\n \n \n safePut\n \n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n resourceService\n \n \n \n \n \n \n \n resourceService: ResourceService\n\n \n \n \n \n Type : ResourceService\n\n \n \n \n \n Defined in packages/data/src/lib/crud/crud.service.ts:16\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\nimport { SdkService } from '../sdk/sdk.service';\nimport { Observable } from 'rxjs';\nimport { ResourceService } from '../resource-config/resource.service';\n\n/** The CRUD service is meant to be used when modifying entries.\n * As the letters state it should be used to create update and delete entries.\n * Each action fires up a change that can be subscribed upon in any component to react to relevant\n * changes.\n * */\n@Injectable()\nexport class CrudService {\n\n /** Injects sdk */\n constructor(private sdk: SdkService, public resourceService: ResourceService) {\n }\n\n /** Yields an observable that emits for all updates that match the given filter */\n change(filter?: any): Observable {\n if (filter.model) {\n filter.relation = `model.${filter.model}`;\n delete filter.model;\n }\n console.warn(`CrudService.change is deprecated! Use ResourceService.change instead!\n Make sure to change the \"model\" property to \"relation\" with prefix \"model.\":\n\n this.crud.change({model:'muffin'}) // OLD\n // CHANGE TO\n this.resourceService.change({relation:'model.muffin'}) // NEW\n\n The CrudService#change method will be removed in a future release!\n `);\n return this.resourceService.change(filter);\n }\n\n /** Saves the given entry with the given value. If the entry is not yet existing, it will be created. Otherwise it will be updated. */\n save(model: string, entry: EntryResource, value: Object) {\n if (entry && entry.save) {\n return this.update(model, entry, value);\n }\n return this.create(model, value)\n .then((_entry) => {\n return _entry;\n }).catch((err) => {\n return Promise.reject(err);\n });\n }\n\n /** Updates the given entry with the new value. Fires the \"update\" change. */\n update(model, entry: EntryResource, value: Object, safePut = true): Promise {\n const oldValues = {}; // save old values\n Object.keys(value).forEach((key) => oldValues[key] = entry[key]);\n Object.assign(entry, this.clean(value)); // assign new form values\n return entry.save(safePut).then((_entry) => {\n this.resourceService.changes.next({ relation: `model.${model}`, resource: _entry, type: 'put' });\n return _entry;\n }).catch((err) => {\n Object.assign(entry, this.clean(oldValues)); // fall back to old values\n return Promise.reject(err);\n });\n }\n\n /** Returns true if the given field key is an immutable system property */\n isImmutableProperty(key: string) {\n return key[0] === '_' ||\n ['id', 'created', 'modified'].indexOf(key) !== -1;\n }\n\n /** Removes all null or undefined values from the given object */\n clean(value: Object): Object {\n for (const key in value) {\n if (value.hasOwnProperty(key)) {\n if (value[key] === '') { // clear empty strings\n value[key] = null;\n }\n if (this.isImmutableProperty(key)) { // filter system properties\n delete value[key];\n }\n }\n }\n return value;\n }\n\n /** Creates a new entry with the given value for the given model. Fires the \"create\" change. */\n create(model: string, value: Object): Promise {\n return this.sdk.api.createEntry(model, this.clean(value))\n .then((entry: EntryResource) => {\n // TODO: make sure leveled entries are returned leveled\n this.resourceService.changes.next({ relation: `model.${model}`, resource: entry, type: 'post' });\n return entry;\n }).catch((err) => {\n return Promise.reject(err);\n });\n }\n\n /** deletes the given entry and emits the \"delete\" change. */\n del(model: string, entry: EntryResource) {\n return entry.del().then((res) => {\n this.resourceService.changes.next({ relation: `model.${model}`, resource: entry, type: 'delete' });\n return res;\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/DataModule.html":{"url":"modules/DataModule.html","title":"module - DataModule","body":"\n \n\n\n\n\n Modules\n DataModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_DataModule\n\n\n\ncluster_DataModule_declarations\n\n\n\ncluster_DataModule_imports\n\n\n\ncluster_DataModule_exports\n\n\n\ncluster_DataModule_providers\n\n\n\n\nAdminEntryInputComponent\n\nAdminEntryInputComponent\n\n\n\nDataModule\n\nDataModule\n\nDataModule -->\n\nAdminEntryInputComponent->DataModule\n\n\n\n\n\nCrudComponent\n\nCrudComponent\n\nDataModule -->\n\nCrudComponent->DataModule\n\n\n\n\n\nDefaultEntryInputComponent\n\nDefaultEntryInputComponent\n\nDataModule -->\n\nDefaultEntryInputComponent->DataModule\n\n\n\n\n\nDefaultEntryOutputComponent\n\nDefaultEntryOutputComponent\n\nDataModule -->\n\nDefaultEntryOutputComponent->DataModule\n\n\n\n\n\nEntriesDirective\n\nEntriesDirective\n\nDataModule -->\n\nEntriesDirective->DataModule\n\n\n\n\n\nEntryDirective\n\nEntryDirective\n\nDataModule -->\n\nEntryDirective->DataModule\n\n\n\n\n\nEntryFormComponent\n\nEntryFormComponent\n\nDataModule -->\n\nEntryFormComponent->DataModule\n\n\n\n\n\nEntryListComponent\n\nEntryListComponent\n\nDataModule -->\n\nEntryListComponent->DataModule\n\n\n\n\n\nEntryListPopComponent\n\nEntryListPopComponent\n\nDataModule -->\n\nEntryListPopComponent->DataModule\n\n\n\n\n\nEntryListSelectComponent\n\nEntryListSelectComponent\n\nDataModule -->\n\nEntryListSelectComponent->DataModule\n\n\n\n\n\nEntryPopComponent\n\nEntryPopComponent\n\nDataModule -->\n\nEntryPopComponent->DataModule\n\n\n\n\n\nEntrySelectComponent\n\nEntrySelectComponent\n\nDataModule -->\n\nEntrySelectComponent->DataModule\n\n\n\n\n\nAuthModule \n\nAuthModule \n\nAuthModule -->\n\nDataModule->AuthModule \n\n\n\n\n\nCrudComponent \n\nCrudComponent \n\nCrudComponent -->\n\nDataModule->CrudComponent \n\n\n\n\n\nEntriesDirective \n\nEntriesDirective \n\nEntriesDirective -->\n\nDataModule->EntriesDirective \n\n\n\n\n\nEntryDirective \n\nEntryDirective \n\nEntryDirective -->\n\nDataModule->EntryDirective \n\n\n\n\n\nEntryFormComponent \n\nEntryFormComponent \n\nEntryFormComponent -->\n\nDataModule->EntryFormComponent \n\n\n\n\n\nEntryListComponent \n\nEntryListComponent \n\nEntryListComponent -->\n\nDataModule->EntryListComponent \n\n\n\n\n\nEntryListPopComponent \n\nEntryListPopComponent \n\nEntryListPopComponent -->\n\nDataModule->EntryListPopComponent \n\n\n\n\n\nEntryListSelectComponent \n\nEntryListSelectComponent \n\nEntryListSelectComponent -->\n\nDataModule->EntryListSelectComponent \n\n\n\n\n\nEntryPopComponent \n\nEntryPopComponent \n\nEntryPopComponent -->\n\nDataModule->EntryPopComponent \n\n\n\n\n\nEntrySelectComponent \n\nEntrySelectComponent \n\nEntrySelectComponent -->\n\nDataModule->EntrySelectComponent \n\n\n\n\n\nFilesModule \n\nFilesModule \n\nFilesModule -->\n\nDataModule->FilesModule \n\n\n\n\n\nResourceModule \n\nResourceModule \n\nResourceModule -->\n\nDataModule->ResourceModule \n\n\n\n\n\nSdkModule \n\nSdkModule \n\nSdkModule -->\n\nDataModule->SdkModule \n\n\n\n\n\nUiModule \n\nUiModule \n\nUiModule -->\n\nDataModule->UiModule \n\n\n\n\n\nAuthModule\n\nAuthModule\n\nDataModule -->\n\nAuthModule->DataModule\n\n\n\n\n\nFilesModule\n\nFilesModule\n\nDataModule -->\n\nFilesModule->DataModule\n\n\n\n\n\nResourceModule\n\nResourceModule\n\nDataModule -->\n\nResourceModule->DataModule\n\n\n\n\n\nSdkModule\n\nSdkModule\n\nDataModule -->\n\nSdkModule->DataModule\n\n\n\n\n\nUiModule\n\nUiModule\n\nDataModule -->\n\nUiModule->DataModule\n\n\n\n\n\nCrudService\n\nCrudService\n\nDataModule -->\n\nCrudService->DataModule\n\n\n\n\n\nHistoryService\n\nHistoryService\n\nDataModule -->\n\nHistoryService->DataModule\n\n\n\n\n\nModelConfigService\n\nModelConfigService\n\nDataModule -->\n\nModelConfigService->DataModule\n\n\n\n\n\nTypeConfigService\n\nTypeConfigService\n\nDataModule -->\n\nTypeConfigService->DataModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/data/src/lib/data.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AdminEntryInputComponent\n \n \n CrudComponent\n \n \n DefaultEntryInputComponent\n \n \n DefaultEntryOutputComponent\n \n \n EntriesDirective\n \n \n EntryDirective\n \n \n EntryFormComponent\n \n \n EntryListComponent\n \n \n EntryListPopComponent\n \n \n EntryListSelectComponent\n \n \n EntryPopComponent\n \n \n EntrySelectComponent\n \n \n \n \n EntryComponents\n \n \n AdminEntryInputComponent\n \n \n DefaultEntryInputComponent\n \n \n DefaultEntryOutputComponent\n \n \n EntryListPopComponent\n \n \n EntryListSelectComponent\n \n \n EntrySelectComponent\n \n \n \n \n Providers\n \n \n CrudService\n \n \n HistoryService\n \n \n ModelConfigService\n \n \n TypeConfigService\n \n \n \n \n Imports\n \n \n AuthModule\n \n \n FilesModule\n \n \n ResourceModule\n \n \n SdkModule\n \n \n UiModule\n \n \n \n \n Exports\n \n \n AuthModule\n \n \n CrudComponent\n \n \n EntriesDirective\n \n \n EntryDirective\n \n \n EntryFormComponent\n \n \n EntryListComponent\n \n \n EntryListPopComponent\n \n \n EntryListSelectComponent\n \n \n EntryPopComponent\n \n \n EntrySelectComponent\n \n \n FilesModule\n \n \n ResourceModule\n \n \n SdkModule\n \n \n UiModule\n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n forEnvironment\n \n \n \n \n \n \n \n \n forEnvironment(environment)\n \n \n\n\n \n \n Defined in packages/data/src/lib/data.module.ts:94\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n environment\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { ModuleWithProviders, NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { RouterModule } from '@angular/router';\nimport { UiModule } from '@ec.components/ui';\nimport { DndModule } from 'ngx-drag-drop';\nimport { AuthModule } from './auth/auth.module';\nimport { CrudComponent } from './crud/crud.component';\nimport { CrudService } from './crud/crud.service';\nimport { EntriesDirective } from './entries/entries.directive';\nimport { AdminEntryInputComponent } from './entry-form/admin-entry-input.component';\nimport { DefaultEntryInputComponent } from './entry-form/default-entry-input.component';\nimport { DefaultEntryOutputComponent } from './entry-form/default-entry-output.component';\nimport { EntryFormComponent } from './entry-form/entry-form.component';\nimport { EntryListPopComponent } from './entry-list-pop/entry-list-pop.component';\nimport { EntryListComponent } from './entry-list/entry-list.component';\nimport { EntryPopComponent } from './entry-pop/entry-pop.component';\nimport { EntrySelectComponent } from './entry-select/entry-select.component';\nimport { EntryDirective } from './entry/entry.directive';\nimport { FilesModule } from './files/files.module';\nimport { ModelConfigService } from './model-config/model-config.service';\nimport { TypeConfigService } from './model-config/type-config.service';\nimport { ResourceModule } from './resource/resource.module';\nimport { HistoryService } from './sdk/history.service';\nimport { SdkModule } from './sdk/sdk.module';\nimport { EntryListSelectComponent } from './entry-list-select/entry-list-select.component';\n\nexport const dataModuleConfig = {\n entryComponents: [\n DefaultEntryInputComponent,\n DefaultEntryOutputComponent,\n AdminEntryInputComponent,\n EntrySelectComponent,\n EntryListSelectComponent,\n EntryListPopComponent,\n ],\n declarations: [\n EntryListComponent,\n EntryDirective,\n EntriesDirective,\n EntryFormComponent,\n EntryPopComponent,\n DefaultEntryInputComponent,\n DefaultEntryOutputComponent,\n AdminEntryInputComponent,\n EntryListSelectComponent,\n CrudComponent,\n EntrySelectComponent,\n EntryListPopComponent,\n ],\n imports: [\n FormsModule,\n CommonModule,\n UiModule,\n SdkModule,\n FilesModule,\n AuthModule,\n ResourceModule,\n DndModule\n ],\n exports: [\n EntryListComponent,\n EntryDirective,\n EntriesDirective,\n EntryFormComponent,\n EntryPopComponent,\n CrudComponent,\n EntrySelectComponent,\n EntryListSelectComponent,\n EntryListPopComponent,\n RouterModule,\n UiModule,\n SdkModule,\n FilesModule,\n AuthModule,\n ResourceModule\n ],\n providers: [\n CrudService,\n TypeConfigService,\n ModelConfigService,\n HistoryService,\n {\n provide: 'environment',\n useValue: {\n environment: 'live'\n }\n }\n ]\n};\n\n@NgModule(dataModuleConfig)\nexport class DataModule {\n static forEnvironment(environment): ModuleWithProviders {\n return {\n ngModule: DataModule,\n providers: [\n {\n provide: 'environment',\n useValue: Object.assign(\n {\n environment: 'live'\n },\n environment\n )\n }\n ]\n };\n }\n constructor() { }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DatetimeComponent.html":{"url":"components/DatetimeComponent.html","title":"component - DatetimeComponent","body":"\n \n\n\n\n\n\n Components\n DatetimeComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/form/datetime/datetime.component.ts\n\n\n \n Description\n \n \n Input for a datetime.\nhttps://components.entrecode.de/ui/datetime?e=1\n\n \n\n\n \n Implements\n \n \n ControlValueAccessor\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => DatetimeComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-datetime\n \n\n\n\n\n \n templateUrl\n datetime.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n calendar\n \n \n propagateChange\n \n \n Public\n weekdays\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n date\n \n \n disableTime\n \n \n formControl\n \n \n placeholder\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n date\n \n \n The date that should be displayed at start. \n\n \n Type : moment.Moment\n\n \n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:24\n \n \n \n \n \n \n \n \n \n disableTime\n \n \n If true, the time will not be displayed nor will be editable. \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:32\n \n \n \n \n \n \n \n \n \n formControl\n \n \n The form control that holds the date \n\n \n Type : FormControl\n\n \n \n Default value : new FormControl()\n \n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:26\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n The input's placeholder \n\n \n Default value : ''\n \n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:34\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:46\n \n \n\n\n \n \n registerOnChange implementation of ControlValueAccessor \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:51\n \n \n\n\n \n \n registerOnTouched implementation of ControlValueAccessor \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: Date)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:37\n \n \n\n\n \n \n Selects the given Date when the model changes. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n Date\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n calendar\n \n \n \n \n \n \n \n calendar: CalendarComponent\n\n \n \n \n \n Type : CalendarComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(CalendarComponent)\n \n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:28\n \n \n\n \n \n The used calendar component \n\n \n \n\n \n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => {\n }\n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:42\n \n \n\n \n \n Change propagation for ControlValueAccessor \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n weekdays\n \n \n \n \n \n \n \n weekdays: string[]\n\n \n \n \n \n Type : string[]\n\n \n \n \n \n Defined in packages/ui/src/lib/form/datetime/datetime.component.ts:30\n \n \n\n \n \n Array of the days of a week. \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, forwardRef, Input, ViewChild } from '@angular/core';\nimport { ControlValueAccessor, FormControl, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport moment from 'moment-es6';\nimport { CalendarComponent } from '@ec.components/calendar';\n\n/** Input for a datetime.\n *\n * https://components.entrecode.de/ui/datetime?e=1\n *\n*/\n@Component({\n selector: 'ec-datetime',\n templateUrl: 'datetime.component.html',\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => DatetimeComponent),\n multi: true\n }\n ]\n})\nexport class DatetimeComponent implements ControlValueAccessor {\n /** The date that should be displayed at start. */\n @Input() date: moment.Moment;\n /** The form control that holds the date */\n @Input() formControl: FormControl = new FormControl();\n /** The used calendar component */\n @ViewChild(CalendarComponent) calendar: CalendarComponent;\n /** Array of the days of a week. */\n public weekdays: string[];\n /** If true, the time will not be displayed nor will be editable. */\n @Input() disableTime: boolean;\n /** The input's placeholder */\n @Input() placeholder = '';\n\n /** Selects the given Date when the model changes. */\n writeValue(value: Date) {\n this.calendar.writeValue(value);\n }\n\n /** Change propagation for ControlValueAccessor */\n propagateChange = (_: any) => {\n }\n\n /** registerOnChange implementation of ControlValueAccessor */\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n\n /** registerOnTouched implementation of ControlValueAccessor */\n registerOnTouched() {\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DatetimeComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/DatetimePipe.html":{"url":"pipes/DatetimePipe.html","title":"pipe - DatetimePipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n DatetimePipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/calendar/src/lib/datetime.pipe.ts\n \n\n \n Description\n \n \n The GroupPipe filters an array of Item instances by a given property value.\nIt is meant to be used to get only the items with the exact same value. \n\n \n\n\n \n Metadata\n \n \n \n Name\n datetime\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(value: Date | string, pattern: string | string[], raw?: string)\n \n \n\n\n \n \n Defined in packages/calendar/src/lib/datetime.pipe.ts:12\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n value\n \n Date | string\n \n \n \n No\n \n \n \n \n\n \n \n pattern\n \n string | string[]\n \n \n \n No\n \n \n \n this.dateFormat\n \n\n \n \n raw\n \n string\n \n \n \n Yes\n \n \n \n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n\n\n\n \n\n\n \n import { Pipe, PipeTransform, Inject } from '@angular/core';\nimport moment from 'moment-es6';\n/* import { SymbolService } from '../../symbol/symbol.service'; */\n\n/** The GroupPipe filters an array of Item instances by a given property value.\n * It is meant to be used to get only the items with the exact same value. */\n@Pipe({\n name: 'datetime'\n})\nexport class DatetimePipe implements PipeTransform {\n constructor(@Inject('moment.format.date') private dateFormat/* private symbol: SymbolService */) { }\n transform(\n value: Date | string,\n pattern: string | string[] = this.dateFormat/* this.symbol.resolve('moment.format.date') */,\n raw?: string\n ): string {\n if (!value) {\n return '';\n }\n if (raw) {\n console.log('raw', raw);\n }\n const typed = moment(value, pattern, true);\n if (!typed.isValid()) {\n return '';\n }\n if (Array.isArray(pattern)) {\n pattern = pattern[0];\n }\n return moment(value).format(pattern);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Day.html":{"url":"interfaces/Day.html","title":"interface - Day","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Day\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/calendar/src/lib/calendar/month.component.ts\n \n\n \n Description\n \n \n Interface for a day inside the a month.\nhttps://components.entrecode.de/ui/datetime?e=1\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n date\n \n \n draggable\n \n \n first\n \n \n format\n \n \n Optional\n heat\n \n \n index\n \n \n last\n \n \n today\n \n \n Optional\n type\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n date\n \n \n \n \n date: moment.Moment\n\n \n \n\n\n \n \n Type : moment.Moment\n\n \n \n\n\n\n\n\n \n \n The moment that is represented by the day. \n\n \n \n \n \n \n \n \n \n \n draggable\n \n \n \n \n draggable: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n determines if the day can be dragged to change the timespan \n\n \n \n \n \n \n \n \n \n \n first\n \n \n \n \n first: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n if the day is the first in the timespan \n\n \n \n \n \n \n \n \n \n \n format\n \n \n \n \n format: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n The formatted day number. \n\n \n \n \n \n \n \n \n \n \n heat\n \n \n \n \n heat: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n custom class \n\n \n \n \n \n \n \n \n \n \n index\n \n \n \n \n index: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n\n\n\n\n \n \n The cell index \n\n \n \n \n \n \n \n \n \n \n last\n \n \n \n \n last: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n if the day is the last in the timespan \n\n \n \n \n \n \n \n \n \n \n today\n \n \n \n \n today: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n Flag that is true if the day is today. \n\n \n \n \n \n \n \n \n \n \n type\n \n \n \n \n type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Can be given a type, to set a class. \n\n \n \n \n \n \n \n\n\n \n import { Component, EventEmitter, Input, OnChanges, OnInit, Output, Inject } from '@angular/core';\n/* import { SymbolService } from '../../symbol/symbol.service'; */\nimport moment from 'moment-es6';\nimport { debounceTime } from 'rxjs/operators';\nimport { Subject } from 'rxjs';\n\n/** Interface for a day inside the a month.\n * https://components.entrecode.de/ui/datetime?e=1\n * */\nexport interface Day {\n /** The cell index */\n index: number;\n /** The moment that is represented by the day. */\n date: moment.Moment;\n /** Can be given a type, to set a class. */\n type?: string;\n /** The formatted day number. */\n format: string;\n /** Flag that is true if the day is today. */\n today: boolean;\n /** if the day is the first in the timespan */\n first: boolean;\n /** if the day is the last in the timespan */\n last: boolean;\n /** determines if the day can be dragged to change the timespan */\n draggable: boolean;\n /** custom class */\n heat?: string;\n}\n\n/** Displays the days of a month in a calendarish table. */\n@Component({\n selector: 'ec-month',\n templateUrl: 'month.component.html'\n})\nexport class MonthComponent implements OnInit, OnChanges {\n dragged: any;\n /** The current selected date */\n @Input() selected: moment.Moment;\n /** Color mapping for day cells. E.g. to view a month heatmap */\n @Input() colors: Object;\n /** Class mapping for day cells. E.g. to apply different background classes */\n @Input() heatmap: Object;\n /** Timespan that is reflected. Marks days inside the span */\n @Input() timespan: moment.Moment[];\n /** The current date (for showing month) */\n @Input() date: moment.Moment;\n /** The color of days that are inside the timespan */\n @Input() spancolor = '#ccc';\n /** If true, the timespan start cannot be dragged */\n @Input() disableDragStart = false;\n /** If true, the timespan end cannot be dragged */\n @Input() disableDragEnd = false;\n /** The current month as string */\n public formatted: string;\n /** The cells containing the days */\n public cells: Array;\n /** Format for month in header */\n public monthFormat = 'MMMM YYYY';\n /** Emits when the selected day changes. */\n @Output() dayClicked: EventEmitter = new EventEmitter();\n /** Changed Timespan selection */\n @Output() spanChanged: EventEmitter = new EventEmitter();\n\n protected drag: Subject = new Subject();\n protected changeSpan: Subject = new Subject();\n\n constructor(\n @Inject('moment.format.month') protected defaultMonthFormat\n /* public symbol: SymbolService */\n ) {\n /* this.monthFormat = this.symbol.resolve('moment.format.month') || this.monthFormat; */\n this.monthFormat = this.defaultMonthFormat || this.monthFormat;\n this.drag.asObservable()\n .pipe(debounceTime(100))\n .subscribe((day) => this.dropDay(day));\n this.changeSpan.asObservable().pipe(debounceTime(800))\n .subscribe(timespan => this.spanChanged.emit(this.timespan));\n }\n\n dropDay(day: Day) {\n if (!this.dragged || (day.first && this.dragged.first || day.last && this.dragged.last)) {\n return;\n }\n const newTimespan = [].concat(this.timespan);\n newTimespan[this.dragged.first ? 0 : 1] = day.date.clone();\n if (newTimespan[0].isAfter(newTimespan[1])) {\n this.dragged.first = !this.dragged.first;\n this.dragged.last = !this.dragged.last;\n newTimespan.reverse();\n }\n this.timespan = newTimespan;\n this.changeSpan.next(this.timespan);\n /* if (this.cells[0] === day || this.cells[this.cells.length - 1] === day) {\n // change month if dragging to edge\n this.setDate(day.date.clone().subtract(1, 'days'));\n } else {\n this.setDate();\n } */\n this.setDate();\n }\n\n dragStart(day, e) {\n if ((this.disableDragStart && day.first) || (this.disableDragEnd && day.last)) {\n return;\n }\n this.dragged = day;\n e.preventDefault();\n }\n\n mouseUp(day, e) {\n if (!this.dragged) {\n return;\n }\n delete this.dragged;\n e.preventDefault();\n }\n\n mouseOver(day, e) {\n if (!this.dragged || this.dragged === day) {\n return;\n }\n e.preventDefault();\n this.drag.next(day);\n }\n\n getDayColor(_moment: moment.Moment) {\n if (this.colors && this.colors[_moment.toISOString()]) {\n return this.colors[_moment.toISOString()];\n }\n }\n\n getDayHeat(_moment: moment.Moment) {\n if (this.heatmap && this.heatmap[_moment.toISOString()]) {\n return this.heatmap[_moment.toISOString()];\n }\n }\n\n /** Initializes the calendar. */\n ngOnInit() {\n this.setDate();\n }\n\n /** When changing the date or selected input, the calendar will update its view to display the month containing it. */\n ngOnChanges(change) {\n if (change.selected) {\n this.setDate(this.selected);\n return;\n } else if (change.date) {\n this.setDate(this.date);\n } else if (change.timespan) {\n this.setDate();\n } if (change.colors || change.heatmap) {\n this.cells = this.getMonth(this.date.clone(), 'current');\n }\n }\n\n /** Returns days of current month */\n getMonth(day = moment(), type?: string): Array {\n const begin = day.clone().startOf('month').startOf('week'); // .subtract(weeksbefore * 7, 'days');\n return new Array(42)\n .fill(0)\n .map((d, index) => begin.clone().add(index, 'days'))\n .map((date, index) => {\n const isStart = this.timespan && date.clone().startOf('day').isSame(this.timespan[0].clone().startOf('day'));\n const isEnd = this.timespan && date.clone().startOf('day').isSame(this.timespan[1].clone().startOf('day'));\n return {\n index,\n date,\n type: date.format('MM YYYY') === day.format('MM YYYY') ? 'current' : 'other',\n active: this.timespan && date.isBetween(this.timespan[0], this.timespan[1], 'days', '[]'),\n first: isStart,\n last: isEnd,\n draggable: (!this.disableDragStart && isStart) || (!this.disableDragEnd && isEnd),\n color: this.getDayColor(date),\n heat: this.getDayHeat(date),\n format: date.format('DD'),\n today: moment().startOf('day').diff(date, 'days') === 0,\n };\n });\n }\n\n\n /** Sets the calendars viewed date to the given moment's month. Renders always 42 cells to keep the layout consistent. */\n setDate(date: moment.Moment = this.selected || this.date || moment()) {\n this.date = date.clone();\n this.formatted = date.format(this.monthFormat);\n this.cells = this.getMonth(date.clone(), 'current');\n }\n\n /** Selects the day of the given moment. */\n selectDay(_moment: moment.Moment): void {\n this.setDate(_moment);\n this.selected = _moment;\n this.dayClicked.emit(_moment);\n }\n\n /** Clears the current selected date*/\n clearSelection(): void {\n delete this.selected;\n }\n\n /** Returns true if the given moment is currently selected (on a day basis) */\n isSelected(_moment: moment.Moment): boolean {\n if (!this.selected) {\n return;\n }\n return this.selected.startOf('day').diff(_moment, 'days') === 0;\n }\n\n canAlter(value, span: string) {\n if (!this.timespan) {\n return true;\n }\n const newDate = this.date.clone().add(value, span);\n return newDate.isBetween(this.timespan[0], this.timespan[1], 'months', '[]');\n }\n\n /** Updates the viewed date to reflect the given relative changes. */\n alter(value, span: string): void {\n if (!this.canAlter(value, span)) {\n return;\n }\n this.setDate(this.date.clone().add(value, span));\n }\n\n /** Sets the current viewed date to today. */\n today(): void {\n this.setDate(moment());\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DefaultEntryInputComponent.html":{"url":"components/DefaultEntryInputComponent.html","title":"component - DefaultEntryInputComponent","body":"\n \n\n\n\n\n\n Components\n DefaultEntryInputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/entry-form/default-entry-input.component.ts\n\n\n \n Description\n \n \n This component holds the input templates for all field types that can not be represented by the default input template. \n\n \n\n \n Extends\n \n \n DefaultInputComponent\n \n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n templateUrl\n ./default-entry-input.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n sdk\n \n \n Public\n control\n \n \n Public\n field\n \n \n Public\n group\n \n \n Public\n item\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService)\n \n \n \n \n Defined in packages/data/src/lib/entry-form/default-entry-input.component.ts:9\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n sdk\n \n \n \n \n \n \n \n sdk: SdkService\n\n \n \n \n \n Type : SdkService\n\n \n \n \n \n Defined in packages/data/src/lib/entry-form/default-entry-input.component.ts:10\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n control\n \n \n \n \n \n \n \n control: FormControl\n\n \n \n \n \n Type : FormControl\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:17\n \n \n\n \n \n The form control that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:11\n \n \n\n \n \n The field for which the input is meant. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n group\n \n \n \n \n \n \n \n group: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:15\n \n \n\n \n \n The form group that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:13\n \n \n\n \n \n The item that is targeted by the input \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { DefaultInputComponent } from '@ec.components/ui';\nimport { SdkService } from '../sdk/sdk.service';\n\n/** This component holds the input templates for all field types that can not be represented by the default input template. */\n@Component({\n templateUrl: './default-entry-input.component.html',\n})\nexport class DefaultEntryInputComponent extends DefaultInputComponent {\n constructor(public sdk: SdkService) {\n super();\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n 🚂🚃🚃🚃 {{field.type}} input coming soon..\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' 🚂🚃🚃🚃 {{field.type}} input coming soon.. '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DefaultEntryInputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DefaultEntryOutputComponent.html":{"url":"components/DefaultEntryOutputComponent.html","title":"component - DefaultEntryOutputComponent","body":"\n \n\n\n\n\n\n Components\n DefaultEntryOutputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/entry-form/default-entry-output.component.ts\n\n\n \n Description\n \n \n This component holds the templates for all output types that cannot be represented by the default output component. \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-default-entry-output\n \n\n\n\n\n \n templateUrl\n ./default-entry-output.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n field\n \n \n item\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Defined in packages/data/src/lib/entry-form/default-entry-output.component.ts:11\n \n \n\n \n \n The field to output. \n\n \n \n\n \n \n \n \n \n \n \n \n \n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Defined in packages/data/src/lib/entry-form/default-entry-output.component.ts:13\n \n \n\n \n \n The item to display \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { Field, Item } from '@ec.components/core';\n\n/** This component holds the templates for all output types that cannot be represented by the default output component. */\n@Component({\n selector: 'ec-default-entry-output',\n templateUrl: './default-entry-output.component.html',\n})\nexport class DefaultEntryOutputComponent {\n /** The field to output. */\n field: Field;\n /** The item to display */\n item: Item;\n}\n\n \n\n \n \n \n \n JSON\n \n \n 🚂🚃🚃🚃 {{field.type}} output coming soon!-->\n {{item?.display(field.property)}}\n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' JSON 🚂🚃🚃🚃 {{field.type}} output coming soon!--> {{item?.display(field.property)}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DefaultEntryOutputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DefaultInputComponent.html":{"url":"components/DefaultInputComponent.html","title":"component - DefaultInputComponent","body":"\n \n\n\n\n\n\n Components\n DefaultInputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/form/default-input/default-input.component.ts\n\n\n \n Description\n \n \n This component holds the templates for all basic field types. \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n templateUrl\n ./default-input.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n control\n \n \n Public\n field\n \n \n Public\n group\n \n \n Public\n item\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n control\n \n \n \n \n \n \n \n control: FormControl\n\n \n \n \n \n Type : FormControl\n\n \n \n \n \n Defined in packages/ui/src/lib/form/default-input/default-input.component.ts:17\n \n \n\n \n \n The form control that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Defined in packages/ui/src/lib/form/default-input/default-input.component.ts:11\n \n \n\n \n \n The field for which the input is meant. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n group\n \n \n \n \n \n \n \n group: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in packages/ui/src/lib/form/default-input/default-input.component.ts:15\n \n \n\n \n \n The form group that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Defined in packages/ui/src/lib/form/default-input/default-input.component.ts:13\n \n \n\n \n \n The item that is targeted by the input \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { FormControl, FormGroup } from '@angular/forms';\nimport { Field, Item } from '@ec.components/core';\n\n/** This component holds the templates for all basic field types. */\n@Component({\n templateUrl: './default-input.component.html',\n})\nexport class DefaultInputComponent {\n /** The field for which the input is meant. */\n public field: Field;\n /** The item that is targeted by the input */\n public item: Item;\n /** The form group that is used */\n public group: FormGroup;\n /** The form control that is used */\n public control: FormControl;\n}\n\n \n\n \n \n \n\n \n\n \n\n \n \n \n \n \n\n \n \n {{field.placeholder}}\n \n\n \n\n \n\n \n\n \n\n \n \n \n {{option.label?option.label:option}}\n \n \n\n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{field.placeholder}} {{option.label?option.label:option}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DefaultInputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DefaultOutputComponent.html":{"url":"components/DefaultOutputComponent.html","title":"component - DefaultOutputComponent","body":"\n \n\n\n\n\n\n Components\n DefaultOutputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/form/default-output/default-output.component.ts\n\n\n \n Description\n \n \n Holds the templates to output item field values. \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-default-output\n \n\n\n\n\n \n templateUrl\n ./default-output.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n field\n \n \n item\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Defined in packages/ui/src/lib/form/default-output/default-output.component.ts:11\n \n \n\n \n \n The field that should be displayed \n\n \n \n\n \n \n \n \n \n \n \n \n \n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Defined in packages/ui/src/lib/form/default-output/default-output.component.ts:13\n \n \n\n \n \n The item that is targeted by the input \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component } from '@angular/core';\nimport { Field, Item } from '@ec.components/core';\n\n/** Holds the templates to output item field values. */\n@Component({\n selector: 'ec-default-output',\n templateUrl: './default-output.component.html',\n})\nexport class DefaultOutputComponent {\n /** The field that should be displayed */\n field: Field;\n /** The item that is targeted by the input */\n item: Item;\n}\n\n \n\n \n \n \n \n {{label}}\n \n (field.maxItems||10)\">\n …\n \n \n\n {{item?.display(field.property)}}\n\n \n ✔\n \n \n {{item?.display(field.property)}}\n \n\n \n {{item?.display(field.property)}}\n \n \n {{item?.display(field.property)}}\n \n\n \n \n {{item?.display(field.property)}}\n \n\n \n \n \n\n \n \n {{item?.resolve(field.property)?.length}}\n \n\n \n \n \n\n \n \n {{item?.resolve(field.property)?.length}}\n \n\n \n \n \n\n \n \n \n\n \n \n \n\n \n {{item?.display(field.property)}}\n \n \n\n \n \n text\n \n \n {{item?.display(field.property)}}-->\n JSON\n \n \n {{item?.display(field.property)}}\n \n \n \n {{item?.display(field.property)}}\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{label}} (field.maxItems||10)\"> … {{item?.display(field.property)}} ✔ {{item?.display(field.property)}} {{item?.display(field.property)}} {{item?.display(field.property)}} {{item?.display(field.property)}} {{item?.resolve(field.property)?.length}} {{item?.resolve(field.property)?.length}} {{item?.display(field.property)}} text {{item?.display(field.property)}}--> JSON {{item?.display(field.property)}} {{item?.display(field.property)}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DefaultOutputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/DropzoneDirective.html":{"url":"directives/DropzoneDirective.html","title":"directive - DropzoneDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n DropzoneDirective\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/files/dropzone/dropzone.directive.ts\n \n\n \n Description\n \n \n Directive that turns any element into a zone to drop files. TODO: demo \n\n \n\n\n\n \n Metadata\n \n \n\n \n Selector\n [ecDropzone]\n \n\n \n \n \n\n \n Index\n \n \n\n\n \n \n Inputs\n \n \n \n \n \n \n disabled\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n ecDropzone\n \n \n \n \n\n \n \n HostBindings\n \n \n \n \n \n \n class.is-active\n \n \n \n \n\n \n \n HostListeners\n \n \n \n \n \n \n dragleave\n \n \n dragover\n \n \n drop\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(el: ElementRef)\n \n \n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:46\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n el\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n disabled\n \n \n If true the element acts normal \n\n \n Default value : false\n \n \n \n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:11\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n ecDropzone\n \n \n Emits when files are dropped \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:9\n \n \n \n \n\n \n HostBindings \n \n \n \n \n \n \n class.is-active\n \n \n \n \n \n \n \n class.is-active: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:7\n \n \n\n \n \n The is-active class is bound to the host when dragover is active \n\n \n \n\n \n \n\n\n \n HostListeners \n \n \n \n \n \n \n dragleave\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndragleave(e)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:37\n \n \n\n\n \n \n flips active to false on dragleave \n\n\n \n \n \n \n \n \n \n \n \n \n \n dragover\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndragover(e)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:13\n \n \n\n\n \n \n flips active to true on dragover \n\n\n \n \n \n \n \n \n \n \n \n \n \n drop\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndrop(e)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/dropzone/dropzone.directive.ts:24\n \n \n\n\n \n \n emits dropped files and flips active to false on drop \n\n\n \n \n \n \n\n\n\n\n\n \n\n\n \n import { Directive, ElementRef, EventEmitter, HostBinding, HostListener, Input, Output } from '@angular/core';\n\n/** Directive that turns any element into a zone to drop files. TODO: demo */\n@Directive({ selector: '[ecDropzone]' })\nexport class DropzoneDirective {\n /** The is-active class is bound to the host when dragover is active */\n @HostBinding('class.is-active') public active: boolean;\n /** Emits when files are dropped */\n @Output() ecDropzone: EventEmitter = new EventEmitter();\n /** If true the element acts normal */\n @Input() disabled = false;\n /** flips active to true on dragover */\n @HostListener('dragover', ['$event']) onDragOver(e) {\n if (this.disabled) {\n return;\n }\n e.preventDefault();\n e.stopPropagation();\n if (!this.active) {\n this.active = true;\n }\n }\n /** emits dropped files and flips active to false on drop */\n @HostListener('drop', ['$event']) onDrop(e) {\n if (this.disabled) {\n return;\n }\n e.preventDefault();\n e.stopPropagation();\n if (!e.dataTransfer.files || !e.dataTransfer.files.length) {\n return;\n }\n this.ecDropzone.emit(e);\n this.active = false;\n }\n /** flips active to false on dragleave */\n @HostListener('dragleave', ['$event']) onDragLeave(e) {\n if (this.disabled) {\n return;\n }\n e.preventDefault();\n e.stopPropagation();\n if (this.active) {\n this.active = false;\n }\n }\n constructor(private el: ElementRef) {\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DynamicRackComponent.html":{"url":"components/DynamicRackComponent.html","title":"component - DynamicRackComponent","body":"\n \n\n\n\n\n\n Components\n DynamicRackComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/io/dynamic-rack/dynamic-rack.component.ts\n\n\n \n Description\n \n \n This directive can be used to display a field. It is used inside ec-form as well as ec-list. \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n templateUrl\n ./dynamic-rack.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n\n \n Constructor\n \n \n \n \nconstructor(componentFactoryResolver: ComponentFactoryResolver)\n \n \n \n \n Defined in packages/ui/src/lib/io/dynamic-rack/dynamic-rack.component.ts:10\n \n \n\n \n \n The constructor provides the instance of ViewContainerRef which is later used to create embedded views\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n componentFactoryResolver\n \n \n ComponentFactoryResolver\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n \n import { Component, ComponentFactoryResolver } from '@angular/core';\n\n// import { CustomFieldComponent } from './custom-field.component';\n\n/** This directive can be used to display a field. It is used inside ec-form as well as ec-list. */\n@Component({\n // selector: 'ec-dynamic-rack',\n templateUrl: './dynamic-rack.component.html'\n})\nexport class DynamicRackComponent {\n /** The constructor provides the instance of ViewContainerRef which is later used to create embedded views*/\n constructor(private componentFactoryResolver: ComponentFactoryResolver) {\n }\n}\n\n \n\n \n \n \n -->\n -->\n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' --> --> '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DynamicRackComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/DynamicSlotComponent.html":{"url":"components/DynamicSlotComponent.html","title":"component - DynamicSlotComponent","body":"\n \n\n\n\n\n\n Components\n DynamicSlotComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/io/dynamic-slot/dynamic-slot.component.ts\n\n\n \n Description\n \n \n This directive can be used to display a field. It is used inside ec-form as well as ec-list. \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-dynamic-slot\n \n\n\n\n\n \n templateUrl\n ./dynamic-slot.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n componentFactoryResolver\n \n \n fieldHost\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n loadComponent\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(componentFactoryResolver: ComponentFactoryResolver)\n \n \n \n \n Defined in packages/ui/src/lib/io/dynamic-slot/dynamic-slot.component.ts:11\n \n \n\n \n \n The constructor provides the instance of ViewContainerRef which is later used to create embedded views\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n componentFactoryResolver\n \n \n ComponentFactoryResolver\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n loadComponent\n \n \n \n \n \n \n \nloadComponent(component: Type, data: Object)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/dynamic-slot/dynamic-slot.component.ts:18\n \n \n\n\n \n \n Loads the given component inside the fieldHost. Sets current item and field by default. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n component\n \n Type\n \n \n \n No\n \n \n \n \n\n \n \n data\n \n Object\n \n \n \n No\n \n \n \n {}\n \n\n \n \n \n \n \n \n \n Returns : ComponentRef\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n componentFactoryResolver\n \n \n \n \n \n \n \n componentFactoryResolver: ComponentFactoryResolver\n\n \n \n \n \n Type : ComponentFactoryResolver\n\n \n \n \n \n Defined in packages/ui/src/lib/io/dynamic-slot/dynamic-slot.component.ts:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n fieldHost\n \n \n \n \n \n \n \n fieldHost: SlotHostDirective\n\n \n \n \n \n Type : SlotHostDirective\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(SlotHostDirective)\n \n \n \n \n \n Defined in packages/ui/src/lib/io/dynamic-slot/dynamic-slot.component.ts:11\n \n \n\n \n \n The FieldHostDirective will be used to nest custom components into the field \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, ComponentFactoryResolver, ComponentRef, Type, ViewChild } from '@angular/core';\nimport { SlotHostDirective } from '../slot-host.directive';\n\n/** This directive can be used to display a field. It is used inside ec-form as well as ec-list. */\n@Component({\n selector: 'ec-dynamic-slot',\n templateUrl: './dynamic-slot.component.html'\n})\nexport class DynamicSlotComponent {\n /** The FieldHostDirective will be used to nest custom components into the field */\n @ViewChild(SlotHostDirective) fieldHost: SlotHostDirective;\n\n /** The constructor provides the instance of ViewContainerRef which is later used to create embedded views*/\n constructor(public componentFactoryResolver: ComponentFactoryResolver) {\n }\n\n /** Loads the given component inside the fieldHost. Sets current item and field by default. */\n loadComponent(component: Type, data: Object = {}): ComponentRef {\n const componentFactory = this.componentFactoryResolver.resolveComponentFactory(component);\n const viewContainerRef = this.fieldHost.viewContainerRef;\n viewContainerRef.clear();\n const componentRef = viewContainerRef.createComponent(componentFactory);\n Object.assign(componentRef.instance, data);\n return componentRef;\n }\n}\n\n \n\n \n \n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'DynamicSlotComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/EntriesDirective.html":{"url":"directives/EntriesDirective.html","title":"directive - EntriesDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n EntriesDirective\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Examples\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/entries/entries.directive.ts\n \n\n \n Description\n \n \n Loads an entryList of a given model with the given config.\nhttps://components.entrecode.de/entries/entries?e=1\n\n \n\n \n Implements\n \n \n OnChanges\n WithLoader\n \n\n\n \n Metadata\n \n \n\n \n Selector\n [ecEntries]\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n entryList\n \n \n Public\n items\n \n \n Public\n notificationService\n \n \n Private\n promise\n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n entries\n \n \n isFirst\n \n \n isLast\n \n \n load\n \n \n next\n \n \n ngOnChanges\n \n \n prev\n \n \n useList\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n autoload\n \n \n endless\n \n \n loader\n \n \n model\n \n \n options\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, symbol: SymbolService, notificationService: NotificationsService)\n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:35\n \n \n\n \n \n Injects sdk \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n autoload\n \n \n Should the entries be loaded immediately? Defaults to true \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:30\n \n \n \n \n \n \n \n \n \n endless\n \n \n If true, calling next will append the next page to the items, making the list grow.\n\n \n Default value : false\n \n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:28\n \n \n \n \n \n \n \n \n \n loader\n \n \n The loader that should be used. \n\n \n Type : LoaderComponent\n\n \n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:32\n \n \n \n \n \n \n \n \n \n model\n \n \n The model to load from. \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:24\n \n \n \n \n \n \n \n \n \n options\n \n \n The filterOptions for loading. \n\n \n Type : any\n\n \n \n Default value : {}\n \n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:26\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n entries\n \n \n \n \n \n \n \nentries()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:108\n \n \n\n\n \n \n This helper returns all items of the current entryList. \n\n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n isFirst\n \n \n \n \n \n \n \nisFirst()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:100\n \n \n\n\n \n \n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n isLast\n \n \n \n \n \n \n \nisLast()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:96\n \n \n\n\n \n \n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n load\n \n \n \n \n \n \n \nload()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:58\n \n \n\n\n \n \n Loads the entries \n\n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n next\n \n \n \n \n \n \n \nnext()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:45\n \n \n\n\n \n \n When the model is known, the entryList will be loaded. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n prev\n \n \n \n \n \n \n \nprev()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:89\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n useList\n \n \n \n \n \n \n \nuseList(entryList)\n \n \n\n\n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:71\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n entryList\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n entryList\n \n \n \n \n \n \n \n entryList: EntryList\n\n \n \n \n \n Type : EntryList\n\n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:34\n \n \n\n \n \n The current loaded entryList \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n items\n \n \n \n \n \n \n \n items: EntryResource[]\n\n \n \n \n \n Type : EntryResource[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:35\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n notificationService\n \n \n \n \n \n \n \n notificationService: NotificationsService\n\n \n \n \n \n Type : NotificationsService\n\n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:41\n \n \n\n\n \n \n \n \n \n \n \n \n \n Private\n promise\n \n \n \n \n \n \n \n promise: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:22\n \n \n\n \n \n The promise of the entryList call. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/data/src/lib/entries/entries.directive.ts:40\n \n \n\n\n \n \n\n\n\n \n\n \n ec-entries\nThis component can be used to load a list of entries from the template:\n\n \n {{muffin.name}}\n \n\n \n\n \n import { Directive, Input, OnChanges } from '@angular/core';\nimport { LoaderComponent, WithLoader, NotificationsService } from '@ec.components/ui';\nimport EntryList from 'ec.sdk/lib/resources/publicAPI/EntryList';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\nimport { SdkService } from '../sdk/sdk.service';\nimport { SymbolService } from '@ec.components/ui';\n\n// import { filterOptions } from 'ec.sdk/lib/resources/ListResource';\n\n/** Loads an entryList of a given model with the given config.\n * https://components.entrecode.de/entries/entries?e=1\n*/\n@Directive({\n selector: '[ecEntries]',\n exportAs: 'ecEntries'\n})\nexport class EntriesDirective implements OnChanges, WithLoader {\n /** The promise of the entryList call. */\n private promise: any;\n /** The model to load from. */\n @Input() model: string;\n /** The filterOptions for loading. */\n @Input() options: any = {}; // TODO cannot import #simibug : filterOptions;\n /** If true, calling next will append the next page to the items, making the list grow.*/\n @Input() endless = false;\n /** Should the entries be loaded immediately? Defaults to true */\n @Input() autoload: boolean;\n /** The loader that should be used. */\n @Input() loader: LoaderComponent;\n /** The current loaded entryList */\n private entryList: EntryList;\n public items: EntryResource[] = [];\n\n /** Injects sdk */\n constructor(\n private sdk: SdkService,\n public symbol: SymbolService,\n public notificationService: NotificationsService) {\n }\n\n /** When the model is known, the entryList will be loaded. */\n ngOnChanges() {\n if (!this.model) {\n return;\n }\n if (this.endless && this.options.page && this.options.page > 1) {\n console.warn('cannot init ecEntries on page!==1 with strategy=endless');\n }\n if (this.autoload !== false) {\n this.load();\n }\n }\n\n /** Loads the entries */\n load() {\n this.promise = this.sdk.api.entryList(this.model, this.options)\n .then(list => this.useList(list))\n .catch(error => this.notificationService.emit({\n title: this.symbol.resolve('entries.load.error'),\n error\n }));\n if (this.loader) {\n this.loader.wait(this.promise);\n }\n return this.promise;\n }\n\n useList(entryList) {\n this.entryList = entryList;\n const items = this.entryList.getAllItems();\n if (this.endless) {\n this.items = this.items.concat(items);\n this.items = this.items.filter((item) => this.items.find((_item) => _item.id === item.id));\n } else {\n this.items = this.entryList.getAllItems();\n }\n }\n\n next() {\n this.promise = this.entryList.followNextLink().then(list => this.useList(list));\n if (this.loader) {\n this.loader.wait(this.promise);\n }\n }\n\n prev() {\n this.promise = this.entryList.followPrevLink().then(list => this.useList(list));\n if (this.loader) {\n this.loader.wait(this.promise);\n }\n }\n\n isLast() {\n return !this.entryList || !this.entryList.hasNextLink();\n }\n\n isFirst() {\n if (this.endless) {\n return true;\n }\n return !this.entryList || !this.entryList.hasFirstLink();\n }\n\n /** This helper returns all items of the current entryList. */\n entries() {\n if (!this.entryList) {\n return [];\n }\n return this.entryList.getAllItems();\n }\n}\n\n \n\n \n \n no-iframes\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/EntryDirective.html":{"url":"directives/EntryDirective.html","title":"directive - EntryDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n EntryDirective\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Examples\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/entry/entry.directive.ts\n \n\n \n Description\n \n \n Loads an entry by id to the template.\nhttps://components.entrecode.de/entries/entries?e=1\n\n \n\n \n Implements\n \n \n OnChanges\n WithLoader\n \n\n\n \n Metadata\n \n \n\n \n Selector\n [ecEntry]\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n entry\n \n \n Public\n notificationService\n \n \n promise\n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n load\n \n \n ngOnChanges\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n autoload\n \n \n entryId\n \n \n levels\n \n \n loader\n \n \n model\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n loaded\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, symbol: SymbolService, notificationService: NotificationsService)\n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:33\n \n \n\n \n \n Injects the sdk \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n autoload\n \n \n Should the entry be loaded immediately? Defaults to true \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:25\n \n \n \n \n \n \n \n \n \n entryId\n \n \n The entry id that should be loaded\n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:21\n \n \n \n \n \n \n \n \n \n levels\n \n \n The levels to use. \n\n \n Type : number\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:27\n \n \n \n \n \n \n \n \n \n loader\n \n \n The loader that should be used. \n\n \n Type : LoaderComponent\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:31\n \n \n \n \n \n \n \n \n \n model\n \n \n The model to load from \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:23\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n loaded\n \n \n Fires as soon as the entry has been loaded. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:29\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n load\n \n \n \n \n \n \n \nload()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:50\n \n \n\n\n \n \n Loads the entry. Can be called from template when using autoload=false \n\n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:42\n \n \n\n\n \n \n as soon as model and id are known, the entry will be loaded. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n entry\n \n \n \n \n \n \n \n entry: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:33\n \n \n\n \n \n The current loaded entry \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n notificationService\n \n \n \n \n \n \n \n notificationService: NotificationsService\n\n \n \n \n \n Type : NotificationsService\n\n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:38\n \n \n\n\n \n \n \n \n \n \n \n \n \n promise\n \n \n \n \n \n \n \n promise: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:19\n \n \n\n \n \n The loading promise \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/data/src/lib/entry/entry.directive.ts:37\n \n \n\n\n \n \n\n\n\n \n\n \n ec-entry\nThis directive can be used to load a single entry directly from the template:\n\n{{muffin.entry?.name}}\n \n\n \n import { Directive, EventEmitter, Input, OnChanges, Output } from '@angular/core';\nimport { SdkService } from '../sdk/sdk.service';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\nimport { WithLoader, LoaderComponent, NotificationsService } from '@ec.components/ui';\nimport { SymbolService } from '@ec.components/ui';\n\n/** Loads an entry by id to the template.\n * https://components.entrecode.de/entries/entries?e=1\n * */\n@Directive({\n selector: '[ecEntry]',\n exportAs: 'ecEntry'\n})\nexport class EntryDirective implements OnChanges, WithLoader {\n /** The loading promise */\n promise: any;\n /** The entry id that should be loaded*/\n @Input() entryId: string;\n /** The model to load from */\n @Input() model: string;\n /** Should the entry be loaded immediately? Defaults to true */\n @Input() autoload: boolean;\n /** The levels to use. */\n @Input() levels: number;\n /** Fires as soon as the entry has been loaded. */\n @Output() loaded: EventEmitter = new EventEmitter();\n /** The loader that should be used. */\n @Input() loader: LoaderComponent;\n /** The current loaded entry */\n entry: any;\n\n /** Injects the sdk */\n constructor(private sdk: SdkService,\n public symbol: SymbolService,\n public notificationService: NotificationsService) {\n }\n\n /** as soon as model and id are known, the entry will be loaded. */\n ngOnChanges() {\n if (this.autoload === false) {\n return;\n }\n this.load();\n }\n\n /** Loads the entry. Can be called from template when using autoload=false */\n load() {\n if (!this.entryId || !this.model) {\n return;\n }\n this.promise = this.sdk.api.entry(this.model, this.entryId, this.levels)\n .then((entry) => {\n this.entry = entry;\n this.loaded.emit(entry);\n return entry;\n })\n .catch(error =>\n this.notificationService.emit({\n title: this.symbol.resolve('entry.load.error'),\n error\n }));\n if (this.loader) {\n this.loader.wait(this.promise);\n }\n return this.promise;\n }\n}\n\n \n\n \n \n no-iframes\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/EntryListPopComponent.html":{"url":"components/EntryListPopComponent.html","title":"component - EntryListPopComponent","body":"\n \n\n\n\n\n\n Components\n EntryListPopComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts\n\n\n \n Description\n \n \n A Pop that contains an entry list. TODO: add demo \n\n \n\n \n Extends\n \n \n PopComponent\n \n\n \n Implements\n \n \n OnChanges\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-entry-list-pop\n \n\n\n\n\n \n templateUrl\n ./entry-list-pop.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n Public\n elementRef\n \n \n lightModel\n \n \n Public\n modelConfig\n \n \n Public\n popService\n \n \n searchbar\n \n \n activated\n \n \n clickEvent\n \n \n Public\n elementRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getHeader\n \n \n ngOnChanges\n \n \n select\n \n \n Public\n hide\n \n \n isOutside\n \n \n Public\n show\n \n \n Public\n toggle\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n config\n \n \n model\n \n \n selection\n \n \n active\n \n \n hideOnClickOutside\n \n \n type\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n columnClicked\n \n \n toggle\n \n \n \n \n\n \n \n HostBindings\n \n \n \n \n \n \n class\n \n \n \n \n\n \n \n HostListeners\n \n \n \n \n \n \n document:click\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(modelConfig: ModelConfigService, popService: PopService, elementRef: ElementRef, cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:22\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n modelConfig\n \n \n ModelConfigService\n \n \n \n No\n \n \n \n \n popService\n \n \n PopService\n \n \n \n No\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n config\n \n \n \n Type : CrudConfig\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:16\n \n \n \n \n \n \n \n \n \n model\n \n \n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:15\n \n \n \n \n \n \n \n \n \n selection\n \n \n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:17\n \n \n \n \n \n \n \n \n \n active\n \n \n If true, .ec-pop is part of the DOM (*ngIf) + .active is set on .ec-pop-container. \n\n \n Type : boolean\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:29\n \n \n \n \n \n \n \n \n \n hideOnClickOutside\n \n \n If set to true, the pop will hide when a click happens outside the pop. \n\n \n Default value : false\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:35\n \n \n \n \n \n \n \n \n \n type\n \n \n The used type on the host element \n\n \n Type : string\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:33\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n columnClicked\n \n \n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:18\n \n \n \n \n \n \n \n \n \n toggle\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:37\n \n \n \n \n\n \n HostBindings \n \n \n \n \n \n \n class\n \n \n \n \n \n \n \n class: \n\n \n \n \n \n Default value : 'toast-wrapper'\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:21\n \n \n\n \n \n Set host class to make sure the type is used \n\n \n \n\n \n \n\n\n \n HostListeners \n \n \n \n \n \n \n document:click\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndocument:click($event)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:42\n \n \n\n\n \n \n Listens for document:click and hides \n\n\n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getHeader\n \n \n \n \n \n \n \ngetHeader(entryList)\n \n \n\n\n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:50\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n entryList\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:33\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \n \nselect(item)\n \n \n\n\n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:41\n \n \n\n\n \n \n emits columnClicked event or toggles selection if no observers. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n hide\n \n \n \n \n \n \n \n \n hide()\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:90\n \n \n\n\n \n \n Hides the pop. Sets active false and removes pop from popService.stack \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n isOutside\n \n \n \n \n \n \n \nisOutside(element)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:61\n \n \n\n\n \n \n yields true if the given element is outside the pop / or is the wrapper element itself (the backdrop) \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n element\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n show\n \n \n \n \n \n \n \n \n show(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:77\n \n \n\n\n \n \n Shows the pop. Sets active true and adds pop to popService.stack \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n toggle\n \n \n \n \n \n \n \n \n toggle(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:67\n \n \n\n\n \n \n Shows if not active, hides if active. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n lightModel\n \n \n \n \n \n \n \n lightModel: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:22\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n modelConfig\n \n \n \n \n \n \n \n modelConfig: ModelConfigService\n\n \n \n \n \n Type : ModelConfigService\n\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n popService\n \n \n \n \n \n \n \n popService: PopService\n\n \n \n \n \n Type : PopService\n\n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:26\n \n \n\n\n \n \n \n \n \n \n \n \n \n searchbar\n \n \n \n \n \n \n \n searchbar: SearchbarComponent\n\n \n \n \n \n Type : SearchbarComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(SearchbarComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/entry-list-pop/entry-list-pop.component.ts:19\n \n \n\n\n \n \n \n \n \n \n \n \n \n activated\n \n \n \n \n \n \n \n activated: \n\n \n \n \n \n Default value : false\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:31\n \n \n\n \n \n Flip and stays true after first show \n\n \n \n\n \n \n \n \n \n \n \n \n \n clickEvent\n \n \n \n \n \n \n \n clickEvent: \n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:39\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:55\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectorRef, Component, ElementRef, EventEmitter, HostBinding, Input, OnChanges, Output, ViewChild } from '@angular/core';\nimport { Item, Selection } from '@ec.components/core';\nimport { PopComponent, PopService, SearchbarComponent } from '@ec.components/ui';\nimport { CrudConfig } from '../crud/crud-config.interface';\nimport { ModelConfigService } from '../model-config/model-config.service';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\n\n/** A Pop that contains an entry list. TODO: add demo */\n@Component({\n selector: 'ec-entry-list-pop',\n templateUrl: './entry-list-pop.component.html',\n\n})\nexport class EntryListPopComponent extends PopComponent implements OnChanges {\n @Input() model: string;\n @Input() config: CrudConfig;\n @Input() selection: Selection;\n @Output() columnClicked: EventEmitter> = new EventEmitter();\n @ViewChild(SearchbarComponent) searchbar: SearchbarComponent;\n /** Set host class to make sure the type is used */\n @HostBinding('class') class = 'toast-wrapper';\n lightModel: any;\n\n constructor(\n public modelConfig: ModelConfigService,\n public popService: PopService,\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef\n ) {\n super(popService, elementRef, cdr);\n }\n\n ngOnChanges() {\n if (this.model) {\n this.modelConfig.getLightModel(this.model).then(model => this.lightModel = model);\n }\n this.config = Object.assign({}, this.config || {}, { hidePagination: true, disableHeader: true });\n }\n\n /** emits columnClicked event or toggles selection if no observers. */\n select(item) {\n if (this.columnClicked.observers.length) {\n this.columnClicked.emit(item);\n } else if (this.selection) {\n this.selection.toggle(item);\n }\n this.searchbar.focusEvent.emit(true);\n }\n\n getHeader(entryList) {\n const label = this.config.singularLabel || entryList.model;\n return `${label}`;\n }\n}\n\n \n\n \n \n \n \n \n \n {{getHeader(entryList)}}\n \n \n \n \n \n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{getHeader(entryList)}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'EntryListPopComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ErrorComponent.html":{"url":"components/ErrorComponent.html","title":"component - ErrorComponent","body":"\n \n\n\n\n\n\n Components\n ErrorComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/notifications/error/error.component.ts\n\n\n \n Description\n \n \n The CrudComponent takes at least a model name to render an entry list with create/edit/delete functionality out of the box. \n\n \n\n\n \n Implements\n \n \n OnInit\n OnChanges\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-error\n \n\n\n\n\n \n templateUrl\n ./error.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnChanges\n \n \n ngOnInit\n \n \n update\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n error\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(symbol: SymbolService)\n \n \n \n \n Defined in packages/ui/src/lib/notifications/error/error.component.ts:12\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n error\n \n \n The error that should be displayed \n\n \n Type : any\n\n \n \n \n \n \n Defined in packages/ui/src/lib/notifications/error/error.component.ts:12\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/notifications/error/error.component.ts:22\n \n \n\n\n \n \n change update \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/notifications/error/error.component.ts:18\n \n \n\n\n \n \n initial update \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n update\n \n \n \n \n \n \n \nupdate()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/notifications/error/error.component.ts:26\n \n \n\n\n \n \n updates error message \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n\n\n \n import { Component, Input, OnChanges, OnInit } from '@angular/core';\nimport { SymbolService } from '../../symbol/symbol.service';\n\n/** The CrudComponent takes at least a model name to render an entry list with create/edit/delete functionality out of the box. */\n@Component({\n selector: 'ec-error',\n templateUrl: './error.component.html'\n})\n/** Displays an error thrown by the SDK. */\nexport class ErrorComponent implements OnInit, OnChanges {\n /** The error that should be displayed */\n @Input() error: any;\n\n constructor(private symbol: SymbolService) {\n }\n\n /** initial update */\n ngOnInit() {\n this.update();\n }\n /** change update */\n ngOnChanges() {\n this.update();\n }\n /** updates error message */\n update() {\n if (!this.error) {\n return;\n }\n const message = this.symbol.resolve('error.' + this.error.code);\n if (message) {\n this.error.message = message;\n }\n }\n}\n\n \n\n \n {{error.code}}\n{{error.dataPath}}\n{{error?.message}}\n{{error.detail}}{{error.verbose?': '+error.verbose:''}}\n\n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = '{{error.code}}{{error.dataPath}}{{error?.message}}{{error.detail}}{{error.verbose?\\': \\'+error.verbose:\\'\\'}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ErrorComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Field.html":{"url":"classes/Field.html","title":"class - Field","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Field\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/field/field.ts\n \n\n\n\n \n Implements\n \n \n FieldConfigProperty\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n class\n \n \n Optional\n filterable\n \n \n Optional\n filterOperator\n \n \n Optional\n filterPopClass\n \n \n Optional\n form\n \n \n Optional\n hidden\n \n \n Optional\n icon\n \n \n id\n \n \n Optional\n input\n \n \n Optional\n label\n \n \n Optional\n maxItems\n \n \n Optional\n output\n \n \n Optional\n placeholder\n \n \n Optional\n property\n \n \n Optional\n required\n \n \n Optional\n sortable\n \n \n Optional\n type\n \n \n Optional\n validate\n \n \n values\n \n \n Optional\n view\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getColumns\n \n \n getPlaceholder\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(property: string, config: FieldConfigProperty)\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:47\n \n \n\n \n \n A Field is constructed by assigning the given config and the property to itself\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n property\n \n \n string\n \n \n \n No\n \n \n \n \n config\n \n \n FieldConfigProperty\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n class\n \n \n \n \n \n \n \n class: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:35\n \n \n\n \n \n Class string \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n filterable\n \n \n \n \n \n \n \n filterable: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:41\n \n \n\n \n \n if false, the field will not be filterable in a list \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n filterOperator\n \n \n \n \n \n \n \n filterOperator: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:27\n \n \n\n \n \n The operator to use for filtering: exact, search, any etc.. see ec.sdk doc \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n filterPopClass\n \n \n \n \n \n \n \n filterPopClass: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:29\n \n \n\n \n \n Defines the class for the filter pop, e.g. in list header. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n form\n \n \n \n \n \n \n \n form: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:31\n \n \n\n \n \n Wether or not the field should appear in default forms \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n hidden\n \n \n \n \n \n \n \n hidden: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:11\n \n \n\n \n \n If true, the field will not be visible anywhere \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n icon\n \n \n \n \n \n \n \n icon: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:45\n \n \n\n \n \n Icon name that should be associated with the field \n\n \n \n\n \n \n \n \n \n \n \n \n \n id\n \n \n \n \n \n \n \n id: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:37\n \n \n\n \n \n id for form labels \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n input\n \n \n \n \n \n \n \n input: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:19\n \n \n\n \n \n Custom Component to display form input *\n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n label\n \n \n \n \n \n \n \n label: string | boolean\n\n \n \n \n \n Type : string | boolean\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:25\n \n \n\n \n \n Label for Inputs. Defaults to property name. If false, the label is empty. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n maxItems\n \n \n \n \n \n \n \n maxItems: number\n\n \n \n \n \n Type : number\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:43\n \n \n\n \n \n Defines the maximum of visible item (for tags view or similar). Defaults to 10 \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n output\n \n \n \n \n \n \n \n output: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:21\n \n \n\n \n \n Custom Component to display value *\n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n placeholder\n \n \n \n \n \n \n \n placeholder: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:23\n \n \n\n \n \n Placeholder in inputs \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n property\n \n \n \n \n \n \n \n property: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:9\n \n \n\n \n \n The name of the field's property \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n required\n \n \n \n \n \n \n \n required: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:7\n \n \n\n \n \n Tells if the field is required in forms \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n sortable\n \n \n \n \n \n \n \n sortable: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:39\n \n \n\n \n \n if false, the field will not be sortable in a list \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n type\n \n \n \n \n \n \n \n type: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:13\n \n \n\n \n \n The field's type \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n validate\n \n \n \n \n \n \n \n validate: function\n\n \n \n \n \n Type : function\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:17\n \n \n\n \n \n Custom Validation function \n\n \n \n\n \n \n \n \n \n \n \n \n \n values\n \n \n \n \n \n \n \n values: any[]\n\n \n \n \n \n Type : any[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:33\n \n \n\n \n \n Possible Values e.g. in a select \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n view\n \n \n \n \n \n \n \n view: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:15\n \n \n\n \n \n The field's view \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getColumns\n \n \n \n \n \n \n \ngetColumns()\n \n \n\n\n \n \n Defined in packages/core/src/lib/field/field.ts:63\n \n \n\n\n \n \n Returns the column class for data-col, based on configured columns \n\n\n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPlaceholder\n \n \n \n \n \n \n \ngetPlaceholder()\n \n \n\n\n \n \n Defined in packages/core/src/lib/field/field.ts:59\n \n \n\n\n \n \n Returns placeholder if any \n\n\n \n Returns : string | true\n\n \n \n \n \n \n\n\n \n Indexable\n \n \n \n \n [key: string]: any\n\n \n \n \n \n Defined in packages/core/src/lib/field/field.ts:45\n \n \n \n \n wildcard for custom config values \n\n \n \n \n \n\n\n\n\n\n\n \n\n \n Field\nA Field represents a property of an Object, without a specific value.\nIt is used to describe a column or field of one or multiple equally structured objects.\nThe field config (see FieldConfigProperty) can contain different transformation methods, such as:\n\nresolve: This method is used to resolve the field value from the object body.\nIt runs before all other transformation methods.\ndisplay: Transforms the resolved value to a human readable output. It is used for e.g. in list cells.\ngroup: Should return a value that is suitable for grouping multiple different values together, like in a list.\n\nExample Usage:\nconst field = new Field('name', {\n resolve: (body) => body.value.name,\n display: (value) => value.toUpperCase(),\n group: (value) => value.length + ' Buchstaben',\n sort: (value) => value.length\n });\nconst name = field.resolve({value:{name:'bobby'}}); // 'bobby'\nfield.display(name); // => 'Bobby'\nfield.group(name); // => '5 Buchstaben'\nfield.sort(name); // => 5The above example is of course only viable to show the concept.\nWhen using the components as a whole, those methods will be called automatically from Item, List or Form.\n\n \n\n \n import { FieldConfigProperty } from '../config/field-config-property.interface';\n\nexport class Field implements FieldConfigProperty {\n /** Tells if the field is required in forms */\n required?: boolean;\n /** The name of the field's property */\n property?: string;\n /** If true, the field will not be visible anywhere */\n hidden?: boolean;\n /** The field's type */\n type?: string;\n /** The field's view */\n view?: string;\n /** Custom Validation function */\n validate?: (value, field) => any;\n /** Custom Component to display form input **/\n input?: any;\n /** Custom Component to display value **/\n output?: any;\n /** Placeholder in inputs */\n placeholder?: string;\n /** Label for Inputs. Defaults to property name. If false, the label is empty. */\n label?: string | boolean;\n /** The operator to use for filtering: exact, search, any etc.. see ec.sdk doc */\n filterOperator?: string;\n /** Defines the class for the filter pop, e.g. in list header. */\n filterPopClass?: string;\n /** Wether or not the field should appear in default forms */\n form?: boolean;\n /** Possible Values e.g. in a select */\n values: any[] = [];\n /** Class string */\n class = '';\n /** id for form labels */\n id: string;\n /** if false, the field will not be sortable in a list */\n sortable?: boolean;\n /** if false, the field will not be filterable in a list */\n filterable?: boolean;\n /** Defines the maximum of visible item (for tags view or similar). Defaults to 10 */\n maxItems?: number;\n /** Icon name that should be associated with the field */\n icon?: string;\n /** wildcard for custom config values */\n [key: string]: any;\n\n /** A Field is constructed by assigning the given config and the property to itself*/\n constructor(property: string, config: FieldConfigProperty) {\n if (config) {\n Object.assign(this, config);\n }\n Object.assign(this, { property: property });\n this.id = `${this.property}_${Date.now()}`;\n }\n\n /** Returns placeholder if any */\n getPlaceholder() {\n return this.placeholder || this.label || this.property;\n }\n /** Returns the column class for data-col, based on configured columns */\n getColumns() {\n return (this.columns || 12) + '-sm';\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/FieldConfig.html":{"url":"interfaces/FieldConfig.html","title":"interface - FieldConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n FieldConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/config/field-config.interface.ts\n \n\n \n Description\n \n \n Configuration for list fields.\n\n \n\n\n\n\n \n Indexable\n \n \n \n \n [key: string]: FieldConfigProperty\n\n \n \n \n \n Defined in packages/core/src/lib/config/field-config.interface.ts:6\n \n \n \n \n Each field can be configured in the form of FieldConfigProperty. \n\n \n \n \n \n\n\n \n\n\n \n import { FieldConfigProperty } from './field-config-property.interface';\n\n/**\n * Configuration for list fields.\n */\nexport interface FieldConfig {\n /** Each field can be configured in the form of FieldConfigProperty. */\n [key: string]: FieldConfigProperty;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/FileOptions.html":{"url":"interfaces/FileOptions.html","title":"interface - FileOptions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n FileOptions\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/files/file.service.ts\n \n\n \n Description\n \n \n Interface for file options used by new assets \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n deduplicate\n \n \n Optional\n fieldName\n \n \n Optional\n fileName\n \n \n Optional\n ignoreDuplicates\n \n \n Optional\n includeAssetIDInPath\n \n \n Optional\n preserveFilenames\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n deduplicate\n \n \n \n \n deduplicate: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Deduplicate upload \n\n \n \n \n \n \n \n \n \n \n fieldName\n \n \n \n \n fieldName: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Custom file form fieldName \n\n \n \n \n \n \n \n \n \n \n fileName\n \n \n \n \n fileName: string[]\n\n \n \n\n\n \n \n Type : string[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Optional custom names for assets. Mapped by indices to assets. \n\n \n \n \n \n \n \n \n \n \n ignoreDuplicates\n \n \n \n \n ignoreDuplicates: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Ignores duplicates \n\n \n \n \n \n \n \n \n \n \n includeAssetIDInPath\n \n \n \n \n includeAssetIDInPath: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Includes assetID in path \n\n \n \n \n \n \n \n \n \n \n preserveFilenames\n \n \n \n \n preserveFilenames: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Preserves Filenames \n\n \n \n \n \n \n \n\n\n \n import { EventEmitter, Injectable } from '@angular/core';\nimport { Item } from '@ec.components/core';\nimport DMAssetList from 'ec.sdk/lib/resources/publicAPI/DMAssetList';\nimport DMAssetResource from 'ec.sdk/lib/resources/publicAPI/DMAssetResource';\nimport PublicAssetList from 'ec.sdk/lib/resources/publicAPI/PublicAssetList';\nimport PublicAssetResource from 'ec.sdk/lib/resources/publicAPI/PublicAssetResource';\nimport { TypeConfigService } from '../model-config/type-config.service';\nimport { ResourceConfig } from '../resource-config/resource-config.service';\nimport { ResourceService } from '../resource-config/resource.service';\nimport { ResourceList } from '../resource-list/resource-list';\nimport { SdkService } from '../sdk/sdk.service';\n\n/** Instances of Update are emitted by the changes EventEmitter of the CrudService. */\nexport interface Upload {\n /** The relevant asset. */\n asset?: PublicAssetResource;\n /** The relevant assets (when uploading multiple). */\n assets?: PublicAssetResource[];\n /** The uploaded asset as item */\n item?: Item;\n /** The uploaded asset as item */\n items?: Array>;\n /** The list where it happened. */\n list?: ResourceList;\n}\n\n/** Interface for file options used by new assets */\nexport interface FileOptions {\n /** Preserves Filenames */\n preserveFilenames?: boolean;\n /** Includes assetID in path */\n includeAssetIDInPath?: boolean;\n /** Ignores duplicates */\n ignoreDuplicates?: boolean;\n /** Optional custom names for assets. Mapped by indices to assets. */\n fileName?: string[];\n /** Custom file form fieldName */\n fieldName?: string;\n /** Deduplicate upload */\n deduplicate?: boolean;\n}\n\n/** The CRUD service is meant to be used when modifying entries.\n * As the letters state it should be used to create update and delete entries.\n * Each action fires up a change that can be subscribed upon in any component to react to relevant\n * changes.\n * */\n@Injectable()\nexport class FileService {\n /** Promise that resolves assetGroupList from sdk */\n assetGroupListPromise: Promise;\n /** The changes event is emitted everytime an entry is created or updated. */\n public uploads: EventEmitter = new EventEmitter();\n /** Default options for file upload */\n public defaultOptions: FileOptions = {\n preserveFilenames: true,\n includeAssetIDInPath: true,\n ignoreDuplicates: false,\n deduplicate: false,\n fileName: []\n };\n /** config for new assets */\n public dmAssetConfig = Object.assign({}, this.resourceConfig.get('dmAsset'));\n /** config for legacy assets */\n public legacyAssetConfig = Object.assign({}, this.resourceConfig.get('legacyAsset'), { forceGroup: true });\n /** All the possible assetGroupIDs that are interpreted as old. Comes from validation of field */\n public oldAssetGroupIDs = ['image', 'video', 'audio', 'plain', 'document', 'spreadsheet', 'legacyAsset'];\n\n /** Injects sdk */\n constructor(private sdk: SdkService,\n private typeConfig: TypeConfigService,\n private resourceService: ResourceService,\n private resourceConfig: ResourceConfig) {\n }\n\n public getAssetConfig(assetGroupID) {\n if (this.isOldAssetGroupID(assetGroupID)) {\n const config = Object.assign({}, this.legacyAssetConfig);\n if (this.oldAssetGroupIDs.includes(assetGroupID) && assetGroupID !== 'legacyAsset') {\n config.filter = Object.assign({}, (config.filter || {}), {\n type: assetGroupID\n });\n }\n return config;\n } else {\n return Object.assign({}, this.dmAssetConfig);\n }\n }\n\n /** returns true if the given asset is a new one (DMAssetResource) */\n public isNewAsset(asset: Array | string | DMAssetResource | PublicAssetResource, only = false) {\n if (Array.isArray(asset)) {\n return asset.reduce(\n (match, a) =>\n ((only && (match && this.isNewAsset(a)) ||\n (!only && (match || this.isNewAsset(a)))))\n , only);\n }\n const id = typeof asset === 'string' ? asset : asset.assetID;\n return /^[a-zA-Z0-9\\-_]{22}$/.test(id);\n }\n\n /** Returns form data for a file list. You have to append options (even if empty) to get formData for new assets! */\n public getFormData(files: FileList, options?: FileOptions): FormData {\n const formData: FormData = new FormData();\n for (let i = 0; i {\n if (key in options) {\n formData.append(key, `${options[key]}`);\n }\n });\n }\n return formData;\n }\n\n /** Upload New Assets */\n public uploadAssets(files, assetGroupID, options: FileOptions = {}, api = this.sdk.api): Promise {\n if (!files.length) {\n return;\n }\n const data = files[0].url ? files.map(f => f.url) : this.getFormData(files, options);\n return api.createDMAssets(assetGroupID, data, options)\n .then((assetList: DMAssetList) => {\n const assets = assetList.getAllItems();\n return {\n asset: assets[0],\n assets,\n item: new Item(assets[0], this.resourceConfig.get('dmAsset')),\n items: assets.map(asset => new Item(asset, this.resourceConfig.get('dmAsset')))\n };\n }).then((upload: Upload) => {\n this.uploads.emit(upload);\n this.resourceService.changes.next({ relation: 'dmAsset', type: 'post' });\n return upload;\n });\n }\n\n /** Upload old assets */\n public uploadFiles(files): Promise {\n if (!files.length) {\n return;\n }\n const data = this.getFormData(files);\n return Promise.resolve().then((): Promise Promise> => {\n if (files.length === 1) {\n return this.sdk.api.createAsset(data, {});\n }\n return this.sdk.api.createAssets(data, {});\n })\n .then(res => res())\n .then((response) => {\n if (response['getAllItems']) {\n return response['getAllItems']();\n }\n return [response];\n }).then((assets) => {\n return {\n asset: assets[0],\n assets,\n item: new Item(assets[0], this.resourceConfig.get('legacyAsset')),\n items: assets.map(asset => new Item(asset, this.resourceConfig.get('legacyAsset')))\n };\n }).then((upload: Upload) => {\n this.uploads.emit(upload);\n this.resourceService.changes.next({ relation: 'legacyAsset', type: 'post' });\n this.resourceService.changes.next({ relation: 'asset', type: 'post' });\n return upload;\n });\n }\n\n /** Resolves all assetIDs to PublicAssetResources */\n public resolveAssets(assets: Array, assetGroupID?: string):\n Promise> {\n console.warn('FileService#resolveAssets is deprecated. I doubt somebody ever used it but if you see this, stop it. please.');\n const unresolved = assets.reduce((ids, asset) => {\n if (typeof asset === 'string') {\n ids.push(asset);\n }\n return ids;\n }, []);\n if (unresolved.length === 0) {\n return Promise.resolve(>assets);\n }\n if (!assetGroupID && this.isNewAsset(unresolved)) {\n console.warn('wont resolve new asset without knowing assetGroupID');\n return Promise.resolve([]);\n }\n if (assetGroupID) { // new assets\n return this.sdk.api.dmAssetList(assetGroupID, { assetID: { any: unresolved }, size: 100 })\n .then(dmAssetList => dmAssetList.getAllItems());\n }\n return Promise.resolve().then((): any => {\n if (unresolved.length === 1) {\n return this.sdk.api.asset(unresolved[0]).then(asset => {\n return [asset];\n });\n }\n return this.sdk.api.assetList({ assetID: { any: unresolved }, page: 1 })\n .then((assetList) => {\n const resolved = assetList.getAllItems();\n return assets.map((asset) =>\n typeof asset === 'string' ?\n resolved.find((resource) => resource.assetID === asset) : asset);\n });\n\n });\n }\n\n public assetGroupList(forceReload = false) {\n return (!forceReload && this.assetGroupListPromise) || this.sdk.api.assetGroupList();\n }\n\n /** Yields true if the given assetGroupID is an old one. Also checks for old validation types */\n public isOldAssetGroupID(assetGroupID) {\n return !assetGroupID || this.oldAssetGroupIDs.includes(assetGroupID);\n }\n /** Yields true if the given assetGroupID is not an old one, meaning it is defined and legacyAsset or an old asset type. */\n public isNewAssetGroupID(assetGroupID) {\n return !this.isOldAssetGroupID(assetGroupID);\n }\n\n /** method that can be called after the upload to select the uploaded item(s). */\n selectUpload(upload: Upload, selection: any) {\n if (!selection) {\n console.warn('no selection');\n return;\n }\n if (selection.config.solo) {\n selection.select(upload.item);\n } else {\n selection.toggleAll(upload.items, false, true);\n }\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/FilesModule.html":{"url":"modules/FilesModule.html","title":"module - FilesModule","body":"\n \n\n\n\n\n Modules\n FilesModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_FilesModule\n\n\n\ncluster_FilesModule_declarations\n\n\n\ncluster_FilesModule_imports\n\n\n\ncluster_FilesModule_exports\n\n\n\ncluster_FilesModule_providers\n\n\n\n\nAssetDirective\n\nAssetDirective\n\n\n\nFilesModule\n\nFilesModule\n\nFilesModule -->\n\nAssetDirective->FilesModule\n\n\n\n\n\nAssetListComponent\n\nAssetListComponent\n\nFilesModule -->\n\nAssetListComponent->FilesModule\n\n\n\n\n\nAssetListPopComponent\n\nAssetListPopComponent\n\nFilesModule -->\n\nAssetListPopComponent->FilesModule\n\n\n\n\n\nAssetSelectComponent\n\nAssetSelectComponent\n\nFilesModule -->\n\nAssetSelectComponent->FilesModule\n\n\n\n\n\nAssetgroupSelectComponent\n\nAssetgroupSelectComponent\n\nFilesModule -->\n\nAssetgroupSelectComponent->FilesModule\n\n\n\n\n\nDropzoneDirective\n\nDropzoneDirective\n\nFilesModule -->\n\nDropzoneDirective->FilesModule\n\n\n\n\n\nImageDirective\n\nImageDirective\n\nFilesModule -->\n\nImageDirective->FilesModule\n\n\n\n\n\nImageSelectPopComponent\n\nImageSelectPopComponent\n\nFilesModule -->\n\nImageSelectPopComponent->FilesModule\n\n\n\n\n\nTagSelectComponent\n\nTagSelectComponent\n\nFilesModule -->\n\nTagSelectComponent->FilesModule\n\n\n\n\n\nUploadComponent\n\nUploadComponent\n\nFilesModule -->\n\nUploadComponent->FilesModule\n\n\n\n\n\nUploadSelectComponent\n\nUploadSelectComponent\n\nFilesModule -->\n\nUploadSelectComponent->FilesModule\n\n\n\n\n\nAssetDirective \n\nAssetDirective \n\nAssetDirective -->\n\nFilesModule->AssetDirective \n\n\n\n\n\nAssetListComponent \n\nAssetListComponent \n\nAssetListComponent -->\n\nFilesModule->AssetListComponent \n\n\n\n\n\nAssetListPopComponent \n\nAssetListPopComponent \n\nAssetListPopComponent -->\n\nFilesModule->AssetListPopComponent \n\n\n\n\n\nAssetSelectComponent \n\nAssetSelectComponent \n\nAssetSelectComponent -->\n\nFilesModule->AssetSelectComponent \n\n\n\n\n\nAssetgroupSelectComponent \n\nAssetgroupSelectComponent \n\nAssetgroupSelectComponent -->\n\nFilesModule->AssetgroupSelectComponent \n\n\n\n\n\nDropzoneDirective \n\nDropzoneDirective \n\nDropzoneDirective -->\n\nFilesModule->DropzoneDirective \n\n\n\n\n\nImageDirective \n\nImageDirective \n\nImageDirective -->\n\nFilesModule->ImageDirective \n\n\n\n\n\nImageSelectPopComponent \n\nImageSelectPopComponent \n\nImageSelectPopComponent -->\n\nFilesModule->ImageSelectPopComponent \n\n\n\n\n\nSdkModule \n\nSdkModule \n\nSdkModule -->\n\nFilesModule->SdkModule \n\n\n\n\n\nTagSelectComponent \n\nTagSelectComponent \n\nTagSelectComponent -->\n\nFilesModule->TagSelectComponent \n\n\n\n\n\nUploadComponent \n\nUploadComponent \n\nUploadComponent -->\n\nFilesModule->UploadComponent \n\n\n\n\n\nUploadSelectComponent \n\nUploadSelectComponent \n\nUploadSelectComponent -->\n\nFilesModule->UploadSelectComponent \n\n\n\n\n\nResourceModule\n\nResourceModule\n\nFilesModule -->\n\nResourceModule->FilesModule\n\n\n\n\n\nSdkModule\n\nSdkModule\n\nFilesModule -->\n\nSdkModule->FilesModule\n\n\n\n\n\nUiModule\n\nUiModule\n\nFilesModule -->\n\nUiModule->FilesModule\n\n\n\n\n\nFileService\n\nFileService\n\nFilesModule -->\n\nFileService->FilesModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/data/src/lib/files/files.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n AssetDirective\n \n \n AssetListComponent\n \n \n AssetListPopComponent\n \n \n AssetSelectComponent\n \n \n AssetgroupSelectComponent\n \n \n DropzoneDirective\n \n \n ImageDirective\n \n \n ImageSelectPopComponent\n \n \n TagSelectComponent\n \n \n UploadComponent\n \n \n UploadSelectComponent\n \n \n \n \n EntryComponents\n \n \n AssetSelectComponent\n \n \n AssetgroupSelectComponent\n \n \n TagSelectComponent\n \n \n UploadComponent\n \n \n \n \n Providers\n \n \n FileService\n \n \n \n \n Imports\n \n \n ResourceModule\n \n \n SdkModule\n \n \n UiModule\n \n \n \n \n Exports\n \n \n AssetDirective\n \n \n AssetListComponent\n \n \n AssetListPopComponent\n \n \n AssetSelectComponent\n \n \n AssetgroupSelectComponent\n \n \n DropzoneDirective\n \n \n ImageDirective\n \n \n ImageSelectPopComponent\n \n \n SdkModule\n \n \n TagSelectComponent\n \n \n UploadComponent\n \n \n UploadSelectComponent\n \n \n \n \n \n\n\n \n\n\n \n // import { BrowserModule } from '@angular/platform-browser';\nimport { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormsModule } from '@angular/forms';\nimport { UiModule } from '@ec.components/ui';\nimport { AssetListComponent } from '../asset-list/asset-list.component';\nimport { ResourceModule } from '../resource/resource.module';\nimport { SdkModule } from '../sdk/sdk.module';\nimport { AssetListPopComponent } from './asset-list-pop/asset-list-pop.component';\nimport { AssetSelectComponent } from './asset-select/asset-select.component';\nimport { AssetDirective } from './asset/asset.directive';\nimport { AssetgroupSelectComponent } from './assetgroup-select/assetgroup-select.component';\nimport { DropzoneDirective } from './dropzone/dropzone.directive';\nimport { FileService } from './file.service';\nimport { ImageDirective } from './image/image.directive';\nimport { UploadComponent } from './upload/upload.component';\nimport { UploadSelectComponent } from './upload-select/upload-select.component';\nimport { ImageSelectPopComponent } from './image-select-pop/image-select-pop.component';\nimport { TagSelectComponent } from './tag-select/tag-select.component';\n\n@NgModule({\n entryComponents: [\n AssetSelectComponent,\n AssetgroupSelectComponent,\n UploadComponent,\n TagSelectComponent,\n ],\n declarations: [\n AssetListComponent,\n AssetListPopComponent,\n AssetSelectComponent,\n AssetgroupSelectComponent,\n AssetDirective,\n DropzoneDirective,\n ImageDirective,\n UploadComponent,\n UploadSelectComponent,\n ImageSelectPopComponent,\n TagSelectComponent\n ],\n imports: [\n CommonModule,\n FormsModule,\n UiModule,\n SdkModule,\n ResourceModule\n ],\n exports: [\n AssetListComponent,\n AssetListPopComponent,\n AssetSelectComponent,\n AssetgroupSelectComponent,\n AssetDirective,\n DropzoneDirective,\n ImageDirective,\n UploadComponent,\n UploadSelectComponent,\n SdkModule,\n ImageSelectPopComponent,\n TagSelectComponent\n ],\n providers: [\n FileService\n ],\n})\nexport class FilesModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Focus.html":{"url":"interfaces/Focus.html","title":"interface - Focus","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Focus\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/utility/focus/focus.interface.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n focusEvent\n \n \n \n \n \n \n Methods\n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \n \nngAfterViewInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/focus/focus.interface.ts:6\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n focusEvent\n \n \n \n \n focusEvent: EventEmitter\n\n \n \n\n\n \n \n Type : EventEmitter\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { EventEmitter } from '@angular/core';\n\nexport interface Focus {\n focusEvent: EventEmitter;\n\n ngAfterViewInit();\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/FocusDirective.html":{"url":"directives/FocusDirective.html","title":"directive - FocusDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n FocusDirective\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/utility/focus/focus.directive.ts\n \n\n\n \n Implements\n \n \n OnInit\n \n\n\n \n Metadata\n \n \n\n \n Selector\n [ecFocus]\n \n\n \n \n \n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n ecFocus\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(element: ElementRef)\n \n \n \n \n Defined in packages/ui/src/lib/utility/focus/focus.directive.ts:8\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n element\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n ecFocus\n \n \n \n Type : EventEmitter\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/focus/focus.directive.ts:8\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/focus/focus.directive.ts:13\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n\n\n\n\n \n\n\n \n import { Directive, ElementRef, EventEmitter, Input, OnInit } from '@angular/core';\n\n@Directive({\n // tslint:disable-next-line:directive-selector\n selector: '[ecFocus]',\n})\nexport class FocusDirective implements OnInit {\n @Input() ecFocus: EventEmitter;\n\n constructor(private element: ElementRef) {\n }\n\n ngOnInit() {\n this.ecFocus\n .subscribe((event: boolean) => {\n if (event) {\n this.element.nativeElement.focus();\n } else {\n this.element.nativeElement.blur();\n }\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/FormConfig.html":{"url":"interfaces/FormConfig.html","title":"interface - FormConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n FormConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/form/form-config.interface.ts\n \n\n \n Description\n \n \n FormConfig is an extension of ItemConfig. \n\n \n\n \n Extends\n \n \n ItemConfig\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n hideSubmitButton\n \n \n Optional\n submitButtonLabel\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n hideSubmitButton\n \n \n \n \n hideSubmitButton: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no submit button will be rendered. \n\n \n \n \n \n \n \n \n \n \n submitButtonLabel\n \n \n \n \n submitButtonLabel: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The label of the submit button \n\n \n \n \n \n \n \n\n\n \n import { ItemConfig } from '../item/item-config.interface';\n\n/** FormConfig is an extension of ItemConfig. */\nexport interface FormConfig extends ItemConfig {\n /** If true, no submit button will be rendered. */\n hideSubmitButton?: boolean;\n /** The label of the submit button */\n submitButtonLabel?: string;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/FormModule.html":{"url":"modules/FormModule.html","title":"module - FormModule","body":"\n \n\n\n\n\n Modules\n FormModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_FormModule\n\n\n\ncluster_FormModule_declarations\n\n\n\ncluster_FormModule_imports\n\n\n\ncluster_FormModule_exports\n\n\n\ncluster_FormModule_providers\n\n\n\n\nDatetimeComponent\n\nDatetimeComponent\n\n\n\nFormModule\n\nFormModule\n\nFormModule -->\n\nDatetimeComponent->FormModule\n\n\n\n\n\nDefaultInputComponent\n\nDefaultInputComponent\n\nFormModule -->\n\nDefaultInputComponent->FormModule\n\n\n\n\n\nDefaultOutputComponent\n\nDefaultOutputComponent\n\nFormModule -->\n\nDefaultOutputComponent->FormModule\n\n\n\n\n\nFormComponent\n\nFormComponent\n\nFormModule -->\n\nFormComponent->FormModule\n\n\n\n\n\nMaxItemsPipe\n\nMaxItemsPipe\n\nFormModule -->\n\nMaxItemsPipe->FormModule\n\n\n\n\n\nToggleComponent\n\nToggleComponent\n\nFormModule -->\n\nToggleComponent->FormModule\n\n\n\n\n\nVisibleFieldsPipe\n\nVisibleFieldsPipe\n\nFormModule -->\n\nVisibleFieldsPipe->FormModule\n\n\n\n\n\nDatetimeComponent \n\nDatetimeComponent \n\nDatetimeComponent -->\n\nFormModule->DatetimeComponent \n\n\n\n\n\nFormComponent \n\nFormComponent \n\nFormComponent -->\n\nFormModule->FormComponent \n\n\n\n\n\nIoModule \n\nIoModule \n\nIoModule -->\n\nFormModule->IoModule \n\n\n\n\n\nMaxItemsPipe \n\nMaxItemsPipe \n\nMaxItemsPipe -->\n\nFormModule->MaxItemsPipe \n\n\n\n\n\nPopModule \n\nPopModule \n\nPopModule -->\n\nFormModule->PopModule \n\n\n\n\n\nToggleComponent \n\nToggleComponent \n\nToggleComponent -->\n\nFormModule->ToggleComponent \n\n\n\n\n\nVisibleFieldsPipe \n\nVisibleFieldsPipe \n\nVisibleFieldsPipe -->\n\nFormModule->VisibleFieldsPipe \n\n\n\n\n\nCalendarModule\n\nCalendarModule\n\nFormModule -->\n\nCalendarModule->FormModule\n\n\n\n\n\nIconModule\n\nIconModule\n\nFormModule -->\n\nIconModule->FormModule\n\n\n\n\n\nIoModule\n\nIoModule\n\nFormModule -->\n\nIoModule->FormModule\n\n\n\n\n\nLoaderModule\n\nLoaderModule\n\nFormModule -->\n\nLoaderModule->FormModule\n\n\n\n\n\nPopModule\n\nPopModule\n\nFormModule -->\n\nPopModule->FormModule\n\n\n\n\n\nSymbolModule\n\nSymbolModule\n\nFormModule -->\n\nSymbolModule->FormModule\n\n\n\n\n\nFormService\n\nFormService\n\nFormModule -->\n\nFormService->FormModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/form/form.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n DatetimeComponent\n \n \n DefaultInputComponent\n \n \n DefaultOutputComponent\n \n \n FormComponent\n \n \n MaxItemsPipe\n \n \n ToggleComponent\n \n \n VisibleFieldsPipe\n \n \n \n \n EntryComponents\n \n \n DefaultInputComponent\n \n \n DefaultOutputComponent\n \n \n \n \n Providers\n \n \n FormService\n \n \n \n \n Imports\n \n \n CalendarModule\n \n \n IconModule\n \n \n IoModule\n \n \n LoaderModule\n \n \n PopModule\n \n \n SymbolModule\n \n \n \n \n Exports\n \n \n DatetimeComponent\n \n \n FormComponent\n \n \n IoModule\n \n \n MaxItemsPipe\n \n \n PopModule\n \n \n ToggleComponent\n \n \n VisibleFieldsPipe\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormComponent } from './form.component';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { PopModule } from '../pop/pop.module';\nimport { FormService } from './form.service';\nimport { VisibleFieldsPipe } from './visible-fields.pipe';\nimport { IoModule } from '../io/io.module';\nimport { DatetimeComponent } from './datetime/datetime.component';\nimport { ToggleComponent } from './toggle/toggle.component';\nimport { LoaderModule } from '../loader/loader.module';\nimport { IconModule } from '../icon/icon.module';\nimport { MaxItemsPipe } from './max-items.pipe';\nimport { SymbolModule } from '../symbol/symbol.module';\nimport { DefaultInputComponent } from './default-input/default-input.component';\nimport { DefaultOutputComponent } from './default-output/default-output.component';\nimport { CalendarModule } from '@ec.components/calendar';\n\nexport const formModuleConfig = {\n entryComponents: [\n DefaultInputComponent,\n DefaultOutputComponent,\n ],\n declarations: [\n FormComponent,\n DatetimeComponent,\n VisibleFieldsPipe,\n MaxItemsPipe,\n ToggleComponent,\n DefaultInputComponent,\n DefaultOutputComponent,\n ],\n imports: [\n CommonModule,\n ReactiveFormsModule,\n PopModule,\n IoModule,\n LoaderModule,\n IconModule,\n SymbolModule,\n CalendarModule\n ],\n exports: [\n ReactiveFormsModule,\n IoModule,\n FormComponent,\n DatetimeComponent,\n PopModule,\n VisibleFieldsPipe,\n MaxItemsPipe,\n ToggleComponent,\n ],\n providers: [\n FormService,\n /* {\n provide: 'moment.format.date',\n useValue: SymbolService.resolve('moment.format.date')\n },\n {\n provide: 'moment.format.time',\n useValue: SymbolService.resolve('moment.format.time')\n },\n {\n provide: 'moment.format.month',\n useValue: SymbolService.resolve('moment.format.month')\n } */\n ]\n};\n\n@NgModule(formModuleConfig)\nexport class FormModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/FormService.html":{"url":"injectables/FormService.html","title":"injectable - FormService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n FormService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/form/form.service.ts\n \n\n \n Description\n \n \n This service is the interface between Angular Forms and ec.components core classes. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n addField\n \n \n getFormLabel\n \n \n Public\n getGroup\n \n \n getValidators\n \n \n Public\n shouldBePartOfForm\n \n \n validateFactory\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(symbol: SymbolService)\n \n \n \n \n Defined in packages/ui/src/lib/form/form.service.ts:16\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n addField\n \n \n \n \n \n \n \n \n addField(field: Field, form: Form, group: FormGroup)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/form.service.ts:48\n \n \n\n\n \n \n adds a new field to a form. handles form group and control \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n field\n \n Field\n \n \n \n No\n \n \n\n \n \n form\n \n Form\n \n \n \n No\n \n \n\n \n \n group\n \n FormGroup\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getFormLabel\n \n \n \n \n \n \n \ngetFormLabel(form: FormComponent, label)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/form.service.ts:83\n \n \n\n\n \n \n Returns label for given form (e.g. Edit label) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n form\n \n FormComponent\n \n \n \n No\n \n \n \n \n\n \n \n label\n \n \n \n \n No\n \n \n \n this.symbol.resolve('resource.generic')\n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n getGroup\n \n \n \n \n \n \n \n \n getGroup(form: Form)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/form.service.ts:35\n \n \n\n\n \n \n Initializes the form group from the form fields\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n form\n \n Form\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getValidators\n \n \n \n \n \n \n \ngetValidators(field: Field)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/form.service.ts:56\n \n \n\n\n \n \n Extracts all validators from a given Field instance. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n field\n \n Field\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : ValidatorFn[]\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n shouldBePartOfForm\n \n \n \n \n \n \n \n \n shouldBePartOfForm(field, form)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/form.service.ts:24\n \n \n\n\n \n \n Returns true if the field should be included in the form.\nDecides based on field config values form, edit and create \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n field\n \n \n No\n \n \n\n \n \n form\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n validateFactory\n \n \n \n \n \n \n \nvalidateFactory(field: Field)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/form.service.ts:68\n \n \n\n\n \n \n Returns a Validation function from the given field (using field.validate) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n field\n \n Field\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : ValidationErrors | null\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/ui/src/lib/form/form.service.ts:19\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Form, Field } from '@ec.components/core';\nimport {\n AbstractControl,\n FormControl,\n FormGroup,\n ValidationErrors,\n ValidatorFn,\n Validators\n} from '@angular/forms';\nimport { SymbolService } from '../symbol/symbol.service';\nimport { FormComponent } from '../form/form.component';\n\n/** This service is the interface between Angular Forms and ec.components core classes. */\n@Injectable()\nexport class FormService {\n\n constructor(\n public symbol: SymbolService\n ) { }\n\n /** Returns true if the field should be included in the form.\n * Decides based on field config values form, edit and create */\n public shouldBePartOfForm(field, form) {\n if (field.create === false && !form.getBody()) {\n return false;\n }\n if (field.edit === false && !!form.getBody()) {\n return false;\n }\n return field.form !== false;\n }\n\n /** Initializes the form group from the form fields*/\n public getGroup(form: Form) {\n const controls = {};\n form.fields.filter((field) => this.shouldBePartOfForm(field, form))\n .forEach((field) => {\n const validators = this.getValidators(field);\n controls[field.property] = new FormControl(form.getValue(field.property), validators);\n // TODO use { updateOn: blur } when updating to angular 5.0.0\n // see https://github.com/angular/angular/commit/333a708bb632d4258ecb5fd4a0e86229fe9d26e4\n });\n return new FormGroup(controls);\n }\n\n /** adds a new field to a form. handles form group and control */\n public addField(field: Field, form: Form, group: FormGroup) {\n console.warn('addField is experimental!');\n const validators = this.getValidators(field);\n const control = new FormControl(form.getValue(field.property), validators);\n group.addControl(field.property, control);\n }\n\n /** Extracts all validators from a given Field instance. */\n getValidators(field: Field): ValidatorFn[] {\n const validators = [];\n if (field.required) {\n validators.push(Validators.required);\n }\n if (field.validate) {\n validators.push(this.validateFactory(field));\n }\n return validators;\n }\n\n /** Returns a Validation function from the given field (using field.validate) */\n validateFactory(field: Field): ValidationErrors | null {\n return (control: AbstractControl) => {\n if (!field.validate) {\n return;\n }\n const error = field.validate(control.value, field);\n if (error) {\n return {\n custom: error\n };\n }\n };\n }\n\n /** Returns label for given form (e.g. Edit label) */\n getFormLabel(form: FormComponent, label = this.symbol.resolve('resource.generic')) {\n if (!form || !form.form) {\n return '';\n }\n return `${this.symbol.resolve('resource.' + (form.form.isEditing() ? 'edit' : 'create'))}\n ${label} ${form.form.display() ? `\"${form.form.display()}\"` : ''}`;\n }\n\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/GeocodeService.html":{"url":"injectables/GeocodeService.html","title":"injectable - GeocodeService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n GeocodeService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/location/src/lib/geocode.service.ts\n \n\n \n Description\n \n \n Wraps google maps api to handle geocode operations \n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n autocompleteAddress\n \n \n geocodeLatLng\n \n \n Public\n getNearestAddress\n \n \n Public\n observeElement\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(mapLoader: MapsAPILoader, ngZone: NgZone)\n \n \n \n \n Defined in packages/location/src/lib/geocode.service.ts:12\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n mapLoader\n \n \n MapsAPILoader\n \n \n \n No\n \n \n \n \n ngZone\n \n \n NgZone\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n autocompleteAddress\n \n \n \n \n \n \n \n \n autocompleteAddress(el)\n \n \n\n\n \n \n Defined in packages/location/src/lib/geocode.service.ts:43\n \n \n\n\n \n \n Turns an input element to an maps autocomplete searchbar. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n el\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n geocodeLatLng\n \n \n \n \n \n \n \ngeocodeLatLng(geocoder, location)\n \n \n\n\n \n \n Defined in packages/location/src/lib/geocode.service.ts:49\n \n \n\n\n \n \n Reverse address lookup for a given location \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n geocoder\n \n \n No\n \n \n\n \n \n location\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n getNearestAddress\n \n \n \n \n \n \n \n \n getNearestAddress(location: literal type)\n \n \n\n\n \n \n Defined in packages/location/src/lib/geocode.service.ts:62\n \n \n\n\n \n \n Returns the nearest address for a given location \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n location\n \n literal type\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n observeElement\n \n \n \n \n \n \n \n \n observeElement(el)\n \n \n\n\n \n \n Defined in packages/location/src/lib/geocode.service.ts:18\n \n \n\n\n \n \n Observes a given input element, transforming it into an autocomplete \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n el\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n \n\n\n \n import { MapsAPILoader } from '@agm/core';\nimport { Injectable, NgZone } from '@angular/core';\nimport { Observable } from 'rxjs';\nimport { switchMap } from 'rxjs/operators';\nimport { from } from 'rxjs';\n\n/** declares google namespace */\ndeclare var google: any;\n\n/** Wraps google maps api to handle geocode operations */\n@Injectable()\nexport class GeocodeService {\n\n constructor(private mapLoader: MapsAPILoader,\n private ngZone: NgZone) { }\n\n /** Observes a given input element, transforming it into an autocomplete */\n public observeElement(el) {\n return new Observable(observer => {\n const autocomplete = new google.maps.places.Autocomplete(el, {\n types: ['address']\n });\n autocomplete.addListener('place_changed', () => {\n this.ngZone.run(() => {\n // get the place result\n const place = autocomplete.getPlace();\n // verify result\n if (place.geometry === undefined || place.geometry === null) {\n return;\n }\n const coords = {\n latitude: place.geometry.location.lat(),\n longitude: place.geometry.location.lng()\n };\n observer.next(coords);\n /* observer.complete(); */\n });\n });\n });\n }\n\n /** Turns an input element to an maps autocomplete searchbar. */\n public autocompleteAddress(el): Observable {\n return from(this.mapLoader.load())\n .pipe(switchMap(() => this.observeElement(el)));\n }\n\n /** Reverse address lookup for a given location */\n geocodeLatLng(geocoder, location): Promise {\n return new Promise((resolve, reject) => {\n geocoder.geocode({ location }, (results, status) => {\n if (status === 'OK') {\n resolve(results);\n } else {\n reject(status);\n }\n });\n });\n }\n\n /** Returns the nearest address for a given location */\n public getNearestAddress(location: { latitude: number, longitude: number }): Promise> {\n return this.mapLoader.load().then(() => {\n return this.geocodeLatLng(\n new google.maps.Geocoder, {\n lat: location.latitude,\n lng: location.longitude\n }\n );\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/GroupPipe.html":{"url":"pipes/GroupPipe.html","title":"pipe - GroupPipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n GroupPipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/list/group.pipe.ts\n \n\n \n Description\n \n \n The GroupPipe filters an array of Item instances by a given property value.\nIt is meant to be used to get only the items with the exact same value. \n\n \n\n\n \n Metadata\n \n \n \n Name\n group\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(items: Array>, property: string, value: any)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/group.pipe.ts:10\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n items\n \n Array>\n \n \n \n No\n \n \n\n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n \n\n\n \n import { Pipe, PipeTransform } from '@angular/core';\nimport { Item } from '@ec.components/core';\n\n/** The GroupPipe filters an array of Item instances by a given property value.\n * It is meant to be used to get only the items with the exact same value. */\n@Pipe({\n name: 'group'\n})\nexport class GroupPipe implements PipeTransform {\n transform(items: Array>, property: string, value: any): any {\n if (!property) {\n return items;\n }\n return items.filter((item) => {\n return item.group(property) === value;\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/HistoryService.html":{"url":"injectables/HistoryService.html","title":"injectable - HistoryService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n HistoryService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/sdk/history.service.ts\n \n\n \n Description\n \n \n The HistoryService keeps track of live updates for models entries and datamanagers. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n eventSources\n \n \n Public\n loaderService\n \n \n Public\n notificationService\n \n \n promises\n \n \n Public\n resourceService\n \n \n Public\n router\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n disableUpdates\n \n \n enableUpdates\n \n \n toggle\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(notificationService: NotificationsService, loaderService: LoaderService, router: Router, resourceService: ResourceService)\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:17\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n loaderService\n \n \n LoaderService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n resourceService\n \n \n ResourceService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n disableUpdates\n \n \n \n \n \n \n \ndisableUpdates(key)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:42\n \n \n\n\n \n \n Closes the event stream for the given key \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n key\n \n \n No\n \n \n \n this.router.url.split('?')[0]\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n enableUpdates\n \n \n \n \n \n \n \nenableUpdates(resource: ModelResource | DataManagerResource | EntryResource, relation: string, key)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:52\n \n \n\n\n \n \n Enables Updates for the given resource. The relation is passed through the Update instances on change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n resource\n \n ModelResource | DataManagerResource | EntryResource\n \n \n \n No\n \n \n \n \n\n \n \n relation\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n key\n \n \n \n \n No\n \n \n \n this.router.url.split('?')[0]\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n toggle\n \n \n \n \n \n \n \ntoggle(resource: ModelResource | DataManagerResource | EntryResource, relation: string, key)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:26\n \n \n\n\n \n \n Toggles live updates on the resource and stores them under the given key.\nThe relation is passed through the Update instances on change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n resource\n \n ModelResource | DataManagerResource | EntryResource\n \n \n \n No\n \n \n \n \n\n \n \n relation\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n key\n \n \n \n \n No\n \n \n \n this.router.url.split('?')[0]\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n eventSources\n \n \n \n \n \n \n \n eventSources: literal type\n\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:17\n \n \n\n \n \n EventSources that are active \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n loaderService\n \n \n \n \n \n \n \n loaderService: LoaderService\n\n \n \n \n \n Type : LoaderService\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n notificationService\n \n \n \n \n \n \n \n notificationService: NotificationsService\n\n \n \n \n \n Type : NotificationsService\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:20\n \n \n\n\n \n \n \n \n \n \n \n \n \n promises\n \n \n \n \n \n \n \n promises: literal type\n\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:15\n \n \n\n \n \n Current loaded histories \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n resourceService\n \n \n \n \n \n \n \n resourceService: ResourceService\n\n \n \n \n \n Type : ResourceService\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:23\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n router\n \n \n \n \n \n \n \n router: Router\n\n \n \n \n \n Type : Router\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/history.service.ts:22\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport ModelResource from 'ec.sdk/lib/resources/datamanager/ModelResource';\nimport DataManagerResource from 'ec.sdk/lib/resources/datamanager/DataManagerResource';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\nimport { ResourceService } from '../resource-config/resource.service';\nimport { NotificationsService, LoaderService } from '@ec.components/ui';\nimport { Router } from '@angular/router';\nimport DataManager from 'ec.sdk/lib/DataManager';\nimport * as EventSource from 'eventsource/lib/eventsource-polyfill';\n\n/** The HistoryService keeps track of live updates for models entries and datamanagers. */\n@Injectable()\nexport class HistoryService {\n /** Current loaded histories */\n promises: { [relation: string]: Promise } = {};\n /** EventSources that are active */\n eventSources: { [relation: string]: any } = {}; // EventSource[]\n\n constructor(\n public notificationService: NotificationsService,\n public loaderService: LoaderService,\n public router: Router,\n public resourceService: ResourceService) { }\n /** Toggles live updates on the resource and stores them under the given key.\n * The relation is passed through the Update instances on change. */\n toggle(resource: ModelResource | DataManagerResource | EntryResource, relation: string, key = this.router.url.split('?')[0]) {\n if (this.promises[key] && !this.eventSources[relation]) {\n return this.promises[key];\n }\n this.disableUpdates(key);\n this.promises[key] = this.enableUpdates(resource, relation, key)\n .then(source => {\n this.eventSources[key] = source;\n })\n .catch(error => {\n delete this.promises[key];\n });\n this.loaderService.wait(this.promises[key]);\n }\n\n /** Closes the event stream for the given key */\n disableUpdates(key = this.router.url.split('?')[0]) {\n if (this.eventSources[key]) {\n this.eventSources[key].close();\n delete this.promises[key];\n delete this.eventSources[key];\n return;\n }\n }\n\n /** Enables Updates for the given resource. The relation is passed through the Update instances on change. */\n enableUpdates(resource: ModelResource | DataManagerResource | EntryResource, relation: string, key = this.router.url.split('?')[0]) {\n if (!resource || !resource.newHistory) {\n throw new Error('cannot get history: no newHistory method found on given resource');\n }\n if (this.promises[key]) {\n return this.promises[key];\n }\n DataManager.enableHistoryEvents(EventSource);\n const loading = resource.newHistory()\n .then(source => {\n source.addEventListener('entryUpdated', (e) => {\n const data = JSON.parse(e.data);\n this.resourceService.changes.next({\n relation,\n type: 'put',\n identifier: data ? data.entryID : ''\n });\n }, false);\n source.addEventListener('entryCreated', (e) => {\n const data = JSON.parse(e.data);\n this.resourceService.changes.next({\n relation,\n type: 'post',\n identifier: data ? data.entryID : ''\n });\n }, false);\n return source;\n })\n .catch(error => {\n this.notificationService.emit({\n title: 'History Error',\n error\n });\n });\n this.loaderService.wait(loading);\n return loading;\n }\n\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/IconComponent.html":{"url":"components/IconComponent.html","title":"component - IconComponent","body":"\n \n\n\n\n\n\n Components\n IconComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/icon/icon.component.ts\n\n\n \n Description\n \n \n Displays icons by name. If the matching Icon (from registry contains a content, the content is shown.\nIf not, is is expected to be a ec-icon.\nhttps://components.entrecode.de/ui/icons?e=1\n\n \n\n\n \n Implements\n \n \n OnInit\n OnChanges\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-icon\n \n\n\n\n\n \n templateUrl\n ./icon.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n icon\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnChanges\n \n \n ngOnInit\n \n \n resolve\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n name\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(iconService: IconService)\n \n \n \n \n Defined in packages/ui/src/lib/icon/icon.component.ts:19\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n iconService\n \n \n IconService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n name\n \n \n The name of the icon. An Icon with this name is expected to be present in the current iconService registry. \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/icon/icon.component.ts:17\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/icon/icon.component.ts:32\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/icon/icon.component.ts:29\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n resolve\n \n \n \n \n \n \n \nresolve()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/icon/icon.component.ts:23\n \n \n\n\n \n \n The component will resolve the icon from the current iconService registry. A warning is logged if no icon can be found. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n icon\n \n \n \n \n \n \n \n icon: Symbol\n\n \n \n \n \n Type : Symbol\n\n \n \n \n \n Defined in packages/ui/src/lib/icon/icon.component.ts:19\n \n \n\n \n \n The resolved icon (by name) \n\n \n \n\n \n \n\n\n\n\n \n Icon\nOpen Demo\nDisplays an icon:\nThe default icon set uses ec-icons. You have to embedd them to your index.html (or similar):\n Using another icon set\nYou can also use other icons:\nimport { emojiIcons } from '@ec.components/ui/src/icon/emoji-icons';\nexport class SomeModule {\n constructor(public iconService: IconService) {\n this.iconService.use(emojiIcons);\n }\n}Overriding icons\nYou can also override the current icon registry:\nimport { emojiIcons } from '@ec.components/ui/src/icon/emoji-icons';\nexport class SomeModule {\n constructor(public iconService: IconService) {\n this.iconService.set(emojiIcons);\n }\n}This will override the icon registry with the given icons, but keep the rest.\n\n \n\n \n import { Component, OnInit, Input, ChangeDetectionStrategy, OnChanges } from '@angular/core';\nimport { IconService } from './icon.service';\nimport { Symbol } from '../symbol/symbol.interface';\n\n/** Displays icons by name. If the matching Icon (from registry contains a content, the content is shown.\n * If not, is is expected to be a ec-icon.\n * https://components.entrecode.de/ui/icons?e=1\n */\n@Component({\n selector: 'ec-icon',\n templateUrl: './icon.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush\n})\n\nexport class IconComponent implements OnInit, OnChanges {\n /** The name of the icon. An Icon with this name is expected to be present in the current iconService registry. */\n @Input() name: string;\n /** The resolved icon (by name) */\n icon: Symbol;\n constructor(private iconService: IconService) {\n }\n /** The component will resolve the icon from the current iconService registry. A warning is logged if no icon can be found. */\n resolve() {\n this.icon = this.iconService.get(this.name);\n if (!this.icon) {\n console.warn(`Icon ${this.name} cannot be found. Using the following icon registry:`, this.iconService.registry);\n }\n }\n ngOnInit() {\n this.resolve();\n }\n ngOnChanges() {\n this.resolve();\n }\n}\n\n \n\n \n \n{{icon.content}}\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = '{{icon.content}}'\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'IconComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/IconModule.html":{"url":"modules/IconModule.html","title":"module - IconModule","body":"\n \n\n\n\n\n Modules\n IconModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_IconModule\n\n\n\ncluster_IconModule_declarations\n\n\n\ncluster_IconModule_exports\n\n\n\ncluster_IconModule_providers\n\n\n\n\nIconComponent\n\nIconComponent\n\n\n\nIconModule\n\nIconModule\n\nIconModule -->\n\nIconComponent->IconModule\n\n\n\n\n\nIconComponent \n\nIconComponent \n\nIconComponent -->\n\nIconModule->IconComponent \n\n\n\n\n\nIconService\n\nIconService\n\nIconModule -->\n\nIconService->IconModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/icon/icon.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n IconComponent\n \n \n \n \n Providers\n \n \n IconService\n \n \n \n \n Exports\n \n \n IconComponent\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\n\nimport { IconComponent } from './icon.component';\nimport { IconService } from './icon.service';\n\n@NgModule({\n imports: [CommonModule],\n declarations: [IconComponent],\n exports: [IconComponent],\n providers: [IconService],\n})\nexport class IconModule { }\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/IconService.html":{"url":"injectables/IconService.html","title":"injectable - IconService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n IconService\n\n\n\n \n Info\n \n \n Source\n \n \n Examples\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/icon/icon.service.ts\n \n\n \n Description\n \n \n Service to register icons and icon sets. The default set is ec-icons. (Requires including ec-icons)\nhttps://components.entrecode.de/ui/icons?e=1\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n registry\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n registry\n \n \n \n \n \n \n \n registry: Symbol[]\n\n \n \n \n \n Type : Symbol[]\n\n \n \n \n \n Default value : ecIcons\n \n \n \n \n Defined in packages/ui/src/lib/icon/icon.service.ts:11\n \n \n\n \n \n The current icon set that is registered to the service. It will be used to resolve icons from. \n\n \n \n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { ecIcons } from './ec-icons';\nimport { Symbol } from '../symbol/symbol.interface';\nimport { SymbolService } from '../symbol/symbol.service';\n/** Service to register icons and icon sets. The default set is ec-icons. (Requires including ec-icons)\n * https://components.entrecode.de/ui/icons?e=1\n*/\n@Injectable()\nexport class IconService extends SymbolService {\n /** The current icon set that is registered to the service. It will be used to resolve icons from. */\n public registry: Symbol[] = ecIcons;\n}\n\n \n\n \n \n no-iframes\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/ImageDirective.html":{"url":"directives/ImageDirective.html","title":"directive - ImageDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n ImageDirective\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/files/image/image.directive.ts\n \n\n \n Description\n \n \n Loads an public asset image by id to the template. It can be used with img's to auto load the url to the src. \n\n \n\n \n Implements\n \n \n OnChanges\n \n\n\n \n Metadata\n \n \n\n \n Selector\n img [ecImage]\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n sdk\n \n \n url\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n load\n \n \n ngOnChanges\n \n \n setUrl\n \n \n use\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n ecImage\n \n \n size\n \n \n thumb\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, elementRef: ElementRef)\n \n \n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:20\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n ecImage\n \n \n The assetID that should be loaded \n\n \n Type : string | DMAssetResource\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:18\n \n \n \n \n \n \n \n \n \n size\n \n \n The size that should be requested. \n\n \n Default value : 200\n \n \n \n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:16\n \n \n \n \n \n \n \n \n \n thumb\n \n \n If true, the image will be requested as thumb (square) \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:14\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n load\n \n \n \n \n \n \n \nload(id?: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:39\n \n \n\n\n \n \n Calls super.load, then resolves the image url and assigns it to the native element src (only if it is an img) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n id\n \n string\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:27\n \n \n\n\n \n \n Reads ecImage input as assetId and loads if autoload is not false \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n setUrl\n \n \n \n \n \n \n \nsetUrl(url: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:60\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n url\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n use\n \n \n \n \n \n \n \nuse(asset: PublicAssetResource | DMAssetResource)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:43\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n asset\n \n PublicAssetResource | DMAssetResource\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n sdk\n \n \n \n \n \n \n \n sdk: SdkService\n\n \n \n \n \n Type : SdkService\n\n \n \n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:22\n \n \n\n\n \n \n \n \n \n \n \n \n \n url\n \n \n \n \n \n \n \n url: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/data/src/lib/files/image/image.directive.ts:20\n \n \n\n \n \n Resolved asset url. \n\n \n \n\n \n \n\n\n\n \n\n \n ecImage\nThis directive can be used to load an image:\n\nID: {{myImage.asset?.assetID}}\n \n\n \n import { Directive, ElementRef, Input, OnChanges } from '@angular/core';\nimport { AssetDirective } from '../asset/asset.directive';\nimport { SdkService } from '../../sdk/sdk.service';\nimport DMAssetResource from 'ec.sdk/lib/resources/publicAPI/DMAssetResource';\nimport PublicAssetResource from 'ec.sdk/lib/resources/publicAPI/PublicAssetResource';\n\n/** Loads an public asset image by id to the template. It can be used with img's to auto load the url to the src. */\n@Directive({\n selector: 'img [ecImage]',\n exportAs: 'ecImage'\n})\nexport class ImageDirective extends AssetDirective implements OnChanges {\n /** If true, the image will be requested as thumb (square) */\n @Input() thumb: boolean;\n /** The size that should be requested. */\n @Input() size = 200;\n /** The assetID that should be loaded */\n @Input() ecImage: string | DMAssetResource;\n /** Resolved asset url. */\n url: string;\n\n constructor(public sdk: SdkService, private elementRef: ElementRef) {\n super(sdk);\n }\n\n /** Reads ecImage input as assetId and loads if autoload is not false */\n ngOnChanges() {\n if (typeof this.ecImage === 'string') {\n this.assetId = this.ecImage;\n } else if (this.ecImage && this.ecImage.assetID) {\n this.use(this.ecImage);\n }\n if (this.autoload !== false && this.assetId) {\n this.load();\n }\n }\n\n /** Calls super.load, then resolves the image url and assigns it to the native element src (only if it is an img) */\n load(id?: string) {\n return super.load(id).then(this.use.bind(this));\n }\n\n use(asset: PublicAssetResource | DMAssetResource) {\n return Promise.resolve().then(() => {\n if (asset.type !== 'image') {\n return Promise.reject(`ecImage only works for assets of type image.\n Loaded id ${asset.id} is of type ${asset.type}`);\n }\n if (asset instanceof DMAssetResource) { // new asset\n return asset.getFileVariant(this.size, this.thumb);\n } else if (asset instanceof PublicAssetResource) { // old asset\n if (this.thumb) {\n return asset.getImageThumbUrl(this.size, '');\n }\n return asset.getImageUrl(this.size, '');\n }\n }).then(this.setUrl.bind(this));\n }\n\n setUrl(url: string) {\n this.url = url;\n this.elementRef.nativeElement.src = this.url;\n }\n\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ImageSelectPopComponent.html":{"url":"components/ImageSelectPopComponent.html","title":"component - ImageSelectPopComponent","body":"\n \n\n\n\n\n\n Components\n ImageSelectPopComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts\n\n\n \n Description\n \n \n This component is a pop with a form to add images. You can set an the alternative Text and the size.\nThe size inputs will keep the image ratio by default. \n\n \n\n \n Extends\n \n \n PopComponent\n \n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-image-select-pop\n \n\n\n\n\n \n templateUrl\n ./image-select-pop.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n Public\n elementRef\n \n \n Public\n fileService\n \n \n imageForm\n \n \n imageLoader\n \n \n Public\n popService\n \n \n Public\n sdk\n \n \n Public\n symbol\n \n \n activated\n \n \n clickEvent\n \n \n Public\n elementRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n Public\n hide\n \n \n isOutside\n \n \n Public\n show\n \n \n Public\n toggle\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n assetGroupID\n \n \n defaultSize\n \n \n active\n \n \n hideOnClickOutside\n \n \n type\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n changed\n \n \n toggle\n \n \n \n \n\n \n \n HostBindings\n \n \n \n \n \n \n class\n \n \n \n \n\n \n \n HostListeners\n \n \n \n \n \n \n document:click\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(popService: PopService, sdk: SdkService, symbol: SymbolService, fileService: FileService, elementRef: ElementRef, cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:26\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n popService\n \n \n PopService\n \n \n \n No\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n fileService\n \n \n FileService\n \n \n \n No\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n assetGroupID\n \n \n The assetGroupID to pick from \n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:16\n \n \n \n \n \n \n \n \n \n defaultSize\n \n \n The default size used \n\n \n Default value : 400\n \n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:18\n \n \n \n \n \n \n \n \n \n active\n \n \n If true, .ec-pop is part of the DOM (*ngIf) + .active is set on .ec-pop-container. \n\n \n Type : boolean\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:29\n \n \n \n \n \n \n \n \n \n hideOnClickOutside\n \n \n If set to true, the pop will hide when a click happens outside the pop. \n\n \n Default value : false\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:35\n \n \n \n \n \n \n \n \n \n type\n \n \n The used type on the host element \n\n \n Type : string\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:33\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n changed\n \n \n Ouput that emits when image changes \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:20\n \n \n \n \n \n \n \n \n \n toggle\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:37\n \n \n \n \n\n \n HostBindings \n \n \n \n \n \n \n class\n \n \n \n \n \n \n \n class: \n\n \n \n \n \n Default value : 'dialog-wrapper'\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:26\n \n \n\n \n \n Set host class to make sure the type is used \n\n \n \n\n \n \n\n\n \n HostListeners \n \n \n \n \n \n \n document:click\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndocument:click($event)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:42\n \n \n\n\n \n \n Listens for document:click and hides \n\n\n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:37\n \n \n\n\n \n \n Inits the form \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n hide\n \n \n \n \n \n \n \n \n hide()\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:90\n \n \n\n\n \n \n Hides the pop. Sets active false and removes pop from popService.stack \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n isOutside\n \n \n \n \n \n \n \nisOutside(element)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:61\n \n \n\n\n \n \n yields true if the given element is outside the pop / or is the wrapper element itself (the backdrop) \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n element\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n show\n \n \n \n \n \n \n \n \n show(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:77\n \n \n\n\n \n \n Shows the pop. Sets active true and adds pop to popService.stack \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n toggle\n \n \n \n \n \n \n \n \n toggle(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:67\n \n \n\n\n \n \n Shows if not active, hides if active. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:32\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n fileService\n \n \n \n \n \n \n \n fileService: FileService\n\n \n \n \n \n Type : FileService\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:31\n \n \n\n\n \n \n \n \n \n \n \n \n \n imageForm\n \n \n \n \n \n \n \n imageForm: FormConfig\n\n \n \n \n \n Type : FormConfig\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:22\n \n \n\n \n \n The instance of the imageForm \n\n \n \n\n \n \n \n \n \n \n \n \n \n imageLoader\n \n \n \n \n \n \n \n imageLoader: LoaderComponent\n\n \n \n \n \n Type : LoaderComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('imageLoader')\n \n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:24\n \n \n\n \n \n The loader that is shown after an image has been selected \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n popService\n \n \n \n \n \n \n \n popService: PopService\n\n \n \n \n \n Type : PopService\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n sdk\n \n \n \n \n \n \n \n sdk: SdkService\n\n \n \n \n \n Type : SdkService\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/data/src/lib/files/image-select-pop/image-select-pop.component.ts:30\n \n \n\n\n \n \n \n \n \n \n \n \n \n activated\n \n \n \n \n \n \n \n activated: \n\n \n \n \n \n Default value : false\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:31\n \n \n\n \n \n Flip and stays true after first show \n\n \n \n\n \n \n \n \n \n \n \n \n \n clickEvent\n \n \n \n \n \n \n \n clickEvent: \n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:39\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:55\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectorRef, Component, ElementRef, EventEmitter, HostBinding, Input, OnInit, Output, ViewChild } from '@angular/core';\nimport { FormConfig } from '@ec.components/core';\nimport { FormComponent, LoaderComponent, PopComponent, PopService, SymbolService } from '@ec.components/ui';\nimport { DefaultEntryInputComponent } from '../../entry-form/default-entry-input.component';\nimport { SdkService } from '../../sdk/sdk.service';\nimport { FileService } from '../file.service';\n\n/** This component is a pop with a form to add images. You can set an the alternative Text and the size.\n * The size inputs will keep the image ratio by default. */\n@Component({\n selector: 'ec-image-select-pop',\n templateUrl: './image-select-pop.component.html'\n})\nexport class ImageSelectPopComponent extends PopComponent implements OnInit {\n /** The assetGroupID to pick from */\n @Input() assetGroupID;\n /** The default size used */\n @Input() defaultSize = 400;\n /** Ouput that emits when image changes */\n @Output() changed: EventEmitter = new EventEmitter();\n /** The instance of the imageForm */\n imageForm: FormConfig;\n /** The loader that is shown after an image has been selected */\n @ViewChild('imageLoader') imageLoader: LoaderComponent;\n /** Set host class to make sure the type is used */\n @HostBinding('class') class = 'dialog-wrapper';\n\n constructor(public popService: PopService,\n public sdk: SdkService,\n public symbol: SymbolService,\n public fileService: FileService,\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef) {\n super(popService, elementRef, cdr);\n }\n /** Inits the form */\n ngOnInit() {\n const isOldAssetGroupID = this.fileService.isOldAssetGroupID(this.assetGroupID);\n this.imageForm = {\n submitButtonLabel: this.symbol.resolve('image-select-pop.submitButtonLabel'),\n onSave: (form, value: { img, height, width, alt }) => {\n const size = Math.max(value.width, value.height);\n if (isOldAssetGroupID) {\n this.sdk.api.asset(value.img)\n .then(asset =>\n asset.getImageUrl(size, '')\n ).then(url => {\n this.hide();\n this.changed.emit({ url, alt: value.alt, size });\n });\n } else {\n const loadImage = this.sdk.api.dmAsset(this.assetGroupID, value.img)\n .then(asset =>\n asset.getImageUrl(size)\n ).then(url => {\n this.hide();\n this.changed.emit({ url, alt: value.alt, size });\n });\n this.imageLoader.wait(loadImage);\n }\n },\n fields: {\n img: {\n label: ' ',\n input: DefaultEntryInputComponent,\n inputView: isOldAssetGroupID ? 'asset-select' : 'dmAsset-select',\n relation: !isOldAssetGroupID ? this.assetGroupID : 'legacyAsset',\n required: true,\n changed: (value, form) => {\n const loadImg = Promise.resolve().then(() => {\n if (isOldAssetGroupID) {\n return this.sdk.api.asset(value).then(asset => {\n const original = asset.getOriginalFile();\n const resolution = original.resolution;\n return { resolution, title: asset.title };\n });\n } else {\n return this.sdk.api.dmAsset(this.assetGroupID, value).then(asset => {\n const resolution = asset.file.resolution;\n return { resolution, title: asset.title };\n });\n }\n }).then(({ resolution, title }) => {\n const ratio = resolution.width / resolution.height;\n const width = Math.min(this.defaultSize, resolution.width);\n form.group.controls.width.setValue(width);\n form.group.controls.alt.setValue(title);\n form.group.controls.ratio.setValue(ratio);\n });\n this.imageLoader.wait(loadImg);\n }\n },\n alt: {\n label: this.symbol.resolve('image-select-pop.alt'),\n view: 'string'\n },\n ratio: {\n hideInForm: true,\n view: 'number'\n },\n keepRatio: {\n label: this.symbol.resolve('image-select-pop.keepRatio'),\n view: 'boolean',\n prefill: true,\n changed: (value) => {\n if (value === true) {\n console.log('should fix ratio now...');\n }\n }\n },\n width: {\n label: this.symbol.resolve('image-select-pop.width'),\n view: 'number',\n columns: 6,\n changed: (value, form: FormComponent) => {\n const ratio = form.getValue('ratio');\n if (ratio && form.getValue('keepRatio')) {\n form.group.controls.height.setValue(Math.round(value / ratio));\n }\n }\n },\n height: {\n label: this.symbol.resolve('image-select-pop.height'),\n view: 'number',\n columns: 6,\n changed: (value, form) => {\n const ratio = form.getValue('ratio');\n if (ratio && form.getValue('keepRatio')) {\n form.group.controls.width.setValue(Math.round(value * ratio));\n }\n }\n }\n }\n };\n }\n}\n\n \n\n \n \n \n \n \n \n {{'image-select-pop.header' | symbol}}\n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{\\'image-select-pop.header\\' | symbol}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ImageSelectPopComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/InputComponent.html":{"url":"components/InputComponent.html","title":"component - InputComponent","body":"\n \n\n\n\n\n\n Components\n InputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/io/input/input.component.ts\n\n\n \n Description\n \n \n This directive can be used to display a field. It is used inside ec-form as well as ec-list. \n\n \n\n \n Extends\n \n \n DynamicSlotComponent\n \n\n \n Implements\n \n \n ControlValueAccessor\n OnChanges\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => InputComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-input\n \n\n\n\n\n \n templateUrl\n ../dynamic-slot/dynamic-slot.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n componentInstance\n \n \n propagateChange\n \n \n value\n \n \n Public\n componentFactoryResolver\n \n \n fieldHost\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n connectControl\n \n \n ngOnChanges\n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n writeValue\n \n \n loadComponent\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n component\n \n \n config\n \n \n control\n \n \n debounce\n \n \n field\n \n \n group\n \n \n item\n \n \n property\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n changed\n \n \n \n \n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n component\n \n \n Overrides the default component \n\n \n Type : Type\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:39\n \n \n \n \n \n \n \n \n \n config\n \n \n Config that should be used, only needed when not using field input \n\n \n Type : FieldConfigProperty\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:37\n \n \n \n \n \n \n \n \n \n control\n \n \n The belonging form control. This is not required if you pass in a field and group. \n\n \n Type : AbstractControl\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:25\n \n \n \n \n \n \n \n \n \n debounce\n \n \n Debounce time in ms before the changed event emits. \n\n \n Default value : 0\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:29\n \n \n \n \n \n \n \n \n \n field\n \n \n The instance of field that should be used in the template, can also be a property name. \n\n \n Type : Field\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:31\n \n \n \n \n \n \n \n \n \n group\n \n \n The belonging form group \n\n \n Type : FormGroup\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:23\n \n \n \n \n \n \n \n \n \n item\n \n \n The belonging item \n\n \n Type : Item\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:35\n \n \n \n \n \n \n \n \n \n property\n \n \n The property name that is edited. Expects a form as item input \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:33\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n changed\n \n \n The changed ouput emits whenever the form control of the input changes. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:27\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n connectControl\n \n \n \n \n \n \n \nconnectControl()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:88\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:46\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:113\n \n \n\n\n \n \n Registers change callback \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:118\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: any)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:102\n \n \n\n\n \n \n writes value to editor on outside model change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n loadComponent\n \n \n \n \n \n \n \nloadComponent(component: Type, data: Object)\n \n \n\n\n \n \n Inherited from DynamicSlotComponent\n\n \n \n \n \n Defined in DynamicSlotComponent:18\n \n \n\n\n \n \n Loads the given component inside the fieldHost. Sets current item and field by default. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n component\n \n Type\n \n \n \n No\n \n \n \n \n\n \n \n data\n \n Object\n \n \n \n No\n \n \n \n {}\n \n\n \n \n \n \n \n \n \n Returns : ComponentRef\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n componentInstance\n \n \n \n \n \n \n \n componentInstance: InputComponent\n\n \n \n \n \n Type : InputComponent\n\n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:42\n \n \n\n \n \n Holds a reference to the component instance. This is helpful when you want to modify the component after form intialization.\nYou can access a form's InputComponents via FormComponent#inputs \n\n \n \n\n \n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => {\n }\n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:109\n \n \n\n\n \n \n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n value: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/ui/src/lib/io/input/input.component.ts:44\n \n \n\n \n \n The current value of the input. Needs to be saved for the case the component is not yet loaded \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n componentFactoryResolver\n \n \n \n \n \n \n \n componentFactoryResolver: ComponentFactoryResolver\n\n \n \n \n \n Type : ComponentFactoryResolver\n\n \n \n \n \n Inherited from DynamicSlotComponent\n\n \n \n \n \n Defined in DynamicSlotComponent:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n fieldHost\n \n \n \n \n \n \n \n fieldHost: SlotHostDirective\n\n \n \n \n \n Type : SlotHostDirective\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(SlotHostDirective)\n \n \n \n \n \n Inherited from DynamicSlotComponent\n\n \n \n \n \n Defined in DynamicSlotComponent:11\n \n \n\n \n \n The FieldHostDirective will be used to nest custom components into the field \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, forwardRef, Input, OnChanges, Output, Type, ChangeDetectionStrategy } from '@angular/core';\nimport { ControlValueAccessor, FormControl, FormGroup, NG_VALUE_ACCESSOR, AbstractControl } from '@angular/forms';\nimport { FieldConfigProperty, Field, Form, Item } from '@ec.components/core';\nimport { DynamicSlotComponent } from '../dynamic-slot/dynamic-slot.component';\nimport { DefaultInputComponent } from '../../form/default-input/default-input.component';\nimport { debounceTime } from 'rxjs/operators';\n\n/** This directive can be used to display a field. It is used inside ec-form as well as ec-list. */\n@Component({\n selector: 'ec-input',\n templateUrl: '../dynamic-slot/dynamic-slot.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => InputComponent),\n multi: true\n }\n ]\n})\nexport class InputComponent extends DynamicSlotComponent implements ControlValueAccessor, OnChanges {\n /** The belonging form group */\n @Input() group: FormGroup;\n /** The belonging form control. This is not required if you pass in a field and group. */\n @Input() control: AbstractControl;\n /** The changed ouput emits whenever the form control of the input changes. */\n @Output() changed = new EventEmitter();\n /** Debounce time in ms before the changed event emits. */\n @Input() debounce = 0;\n /** The instance of field that should be used in the template, can also be a property name. */\n @Input() field: Field;\n /** The property name that is edited. Expects a form as item input */\n @Input() property: string;\n /** The belonging item */\n @Input() item: Item;\n /** Config that should be used, only needed when not using field input */\n @Input() config: FieldConfigProperty;\n /** Overrides the default component */\n @Input() component: Type;\n /** Holds a reference to the component instance. This is helpful when you want to modify the component after form intialization.\n * You can access a form's InputComponents via FormComponent#inputs */\n componentInstance: InputComponent;\n /** The current value of the input. Needs to be saved for the case the component is not yet loaded */\n value: any;\n\n ngOnChanges() {\n if (this.property && this.item instanceof Form) {\n this.field = this.item.getField(this.property);\n } else if (!this.field && this.config) {\n this.field = new Field(this.property || 'input', this.config);\n }\n if (!this.field) {\n return;\n }\n if (!this.control) {\n this.control = this.group ? this.group.get(this.field.property) : new FormControl();\n }\n if (!this.group) {\n this.group = new FormGroup({\n [this.property || this.field.property || 'input']: this.control\n });\n }\n const data = {\n group: this.group,\n control: this.control || this.group ? this.group.get(this.field.property) : null,\n item: this.item,\n field: this.field,\n input: this\n };\n\n const componentRef = this.loadComponent(this.component || this.field.input || DefaultInputComponent, data);\n this.componentInstance = componentRef.instance;\n this.connectControl();\n if (componentRef.instance.control) {\n componentRef.instance.control.valueChanges\n .pipe(\n debounceTime(this.debounce)\n ).subscribe((change) => {\n this.changed.emit(change);\n this.propagateChange(change);\n });\n }\n if (this.field && typeof this.field.init === 'function') {\n this.field.init(this.componentInstance, this);\n }\n }\n\n connectControl() {\n if (!this.componentInstance) {\n // console.warn('could not connect control: no instance loaded');\n return;\n }\n if (this.componentInstance.registerOnChange && this.propagateChange) {\n this.componentInstance.registerOnChange(this.propagateChange);\n }\n if (this.value !== undefined) {\n this.writeValue(this.value);\n }\n }\n\n /** writes value to editor on outside model change. */\n writeValue(value: any) {\n if (this.componentInstance && this.componentInstance.writeValue) {\n this.componentInstance.writeValue(value);\n }\n this.value = value;\n }\n\n propagateChange = (_: any) => {\n }\n\n /** Registers change callback */\n registerOnChange(fn) {\n this.propagateChange = fn;\n this.connectControl();\n }\n\n registerOnTouched() {\n }\n}\n\n \n\n \n \n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'InputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/InputErrorsComponent.html":{"url":"components/InputErrorsComponent.html","title":"component - InputErrorsComponent","body":"\n \n\n\n\n\n\n Components\n InputErrorsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/io/input-errors/input-errors.component.ts\n\n\n \n Description\n \n \n This component keeps track of a form control's errors and displays them. It is meant to be used beneath a form control. \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-input-errors\n \n\n\n\n\n \n templateUrl\n ./input-errors.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n getErrors\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n control\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(symbol: SymbolService)\n \n \n \n \n Defined in packages/ui/src/lib/io/input-errors/input-errors.component.ts:12\n \n \n\n \n \n Imported error messages. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n control\n \n \n The form control that should be tracked \n\n \n Type : FormControl\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/input-errors/input-errors.component.ts:12\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n getErrors\n \n \n \n \n \n \n \n \n getErrors()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/input-errors/input-errors.component.ts:18\n \n \n\n\n \n \n This method will iterate over the control errors and generate objects for the template. \n\n\n \n Returns : any\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/ui/src/lib/io/input-errors/input-errors.component.ts:14\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Input } from '@angular/core';\nimport { FormControl } from '@angular/forms';\nimport { SymbolService } from '../../symbol/symbol.service';\n\n/** This component keeps track of a form control's errors and displays them. It is meant to be used beneath a form control. */\n@Component({\n selector: 'ec-input-errors',\n templateUrl: './input-errors.component.html',\n})\nexport class InputErrorsComponent {\n /** The form control that should be tracked */\n @Input() control: FormControl;\n /** Imported error messages. */\n constructor(public symbol: SymbolService) {\n }\n\n /** This method will iterate over the control errors and generate objects for the template. */\n public getErrors() {\n return Object.keys(this.control.errors).reduce((errs, key) => {\n let message;\n if (key === 'custom') {\n message = this.control.errors[key];\n } else {\n message = this.symbol.resolve('error.input.' + key) || this.symbol.resolve('error.input.invalid');\n }\n errs.push({\n key: key,\n error: this.control.errors[key],\n message\n });\n return errs;\n }, []);\n }\n\n}\n\n \n\n \n \n {{error.message}}\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{error.message}}'\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'InputErrorsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/IoModule.html":{"url":"modules/IoModule.html","title":"module - IoModule","body":"\n \n\n\n\n\n Modules\n IoModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_IoModule\n\n\n\ncluster_IoModule_declarations\n\n\n\ncluster_IoModule_exports\n\n\n\n\nDynamicRackComponent\n\nDynamicRackComponent\n\n\n\nIoModule\n\nIoModule\n\nIoModule -->\n\nDynamicRackComponent->IoModule\n\n\n\n\n\nDynamicSlotComponent\n\nDynamicSlotComponent\n\nIoModule -->\n\nDynamicSlotComponent->IoModule\n\n\n\n\n\nInputComponent\n\nInputComponent\n\nIoModule -->\n\nInputComponent->IoModule\n\n\n\n\n\nInputErrorsComponent\n\nInputErrorsComponent\n\nIoModule -->\n\nInputErrorsComponent->IoModule\n\n\n\n\n\nOutputComponent\n\nOutputComponent\n\nIoModule -->\n\nOutputComponent->IoModule\n\n\n\n\n\nSlotHostDirective\n\nSlotHostDirective\n\nIoModule -->\n\nSlotHostDirective->IoModule\n\n\n\n\n\nDynamicRackComponent \n\nDynamicRackComponent \n\nDynamicRackComponent -->\n\nIoModule->DynamicRackComponent \n\n\n\n\n\nDynamicSlotComponent \n\nDynamicSlotComponent \n\nDynamicSlotComponent -->\n\nIoModule->DynamicSlotComponent \n\n\n\n\n\nInputComponent \n\nInputComponent \n\nInputComponent -->\n\nIoModule->InputComponent \n\n\n\n\n\nInputErrorsComponent \n\nInputErrorsComponent \n\nInputErrorsComponent -->\n\nIoModule->InputErrorsComponent \n\n\n\n\n\nOutputComponent \n\nOutputComponent \n\nOutputComponent -->\n\nIoModule->OutputComponent \n\n\n\n\n\nSlotHostDirective \n\nSlotHostDirective \n\nSlotHostDirective -->\n\nIoModule->SlotHostDirective \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/io/io.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n DynamicRackComponent\n \n \n DynamicSlotComponent\n \n \n InputComponent\n \n \n InputErrorsComponent\n \n \n OutputComponent\n \n \n SlotHostDirective\n \n \n \n \n EntryComponents\n \n \n InputComponent\n \n \n InputErrorsComponent\n \n \n OutputComponent\n \n \n \n \n Exports\n \n \n DynamicRackComponent\n \n \n DynamicSlotComponent\n \n \n InputComponent\n \n \n InputErrorsComponent\n \n \n OutputComponent\n \n \n SlotHostDirective\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { DynamicSlotComponent } from './dynamic-slot/dynamic-slot.component';\nimport { SlotHostDirective } from './slot-host.directive';\nimport { OutputComponent } from './output/output.component';\nimport { InputComponent } from './input/input.component';\nimport { InputErrorsComponent } from './input-errors/input-errors.component';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { DynamicRackComponent } from './dynamic-rack/dynamic-rack.component';\n\n@NgModule({\n entryComponents: [\n InputComponent,\n OutputComponent,\n InputErrorsComponent,\n ],\n declarations: [\n InputErrorsComponent,\n SlotHostDirective,\n DynamicSlotComponent,\n DynamicRackComponent,\n InputComponent,\n OutputComponent,\n ],\n imports: [\n CommonModule,\n ReactiveFormsModule,\n ],\n exports: [\n SlotHostDirective,\n DynamicSlotComponent,\n DynamicRackComponent,\n InputComponent,\n OutputComponent,\n InputErrorsComponent,\n ReactiveFormsModule,\n ],\n providers: []\n})\nexport class IoModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ItemConfig.html":{"url":"interfaces/ItemConfig.html","title":"interface - ItemConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n ItemConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/item/item-config.interface.ts\n \n\n \n Description\n \n \n An ItemConfig describes an abstract entity with certain properties.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n classes\n \n \n Optional\n fields\n \n \n Optional\n identifier\n \n \n Optional\n identifierPattern\n \n \n Optional\n label\n \n \n Optional\n onEdit\n \n \n Optional\n onSave\n \n \n Optional\n parent\n \n \n Optional\n resolve\n \n \n Optional\n title\n \n \n Optional\n type\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n classes\n \n \n \n \n classes: function\n\n \n \n\n\n \n \n Type : function\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n This method can be used to set custom classes based on item contents. Used e.g. in list-items for row class \n\n \n \n \n \n \n \n \n \n \n fields\n \n \n \n \n fields: FieldConfig\n\n \n \n\n\n \n \n Type : FieldConfig\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The Items field Config \n\n \n \n \n \n \n \n \n \n \n identifier\n \n \n \n \n identifier: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The Property that is used to identify items from another (e.g. in a selection). \n\n \n \n \n \n \n \n \n \n \n identifierPattern\n \n \n \n \n identifierPattern: RegExp\n\n \n \n\n\n \n \n Type : RegExp\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Pattern of the identifier field. Is used e.g. in the searchbar \n\n \n \n \n \n \n \n \n \n \n label\n \n \n \n \n label: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The Property that is used to display the item for humans \n\n \n \n \n \n \n \n \n \n \n onEdit\n \n \n \n \n onEdit: function\n\n \n \n\n\n \n \n Type : function\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Callback that is invoked before the item is edited \n\n \n \n \n \n \n \n \n \n \n onSave\n \n \n \n \n onSave: function\n\n \n \n\n\n \n \n Type : function\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Callback that is invoked when the item is saved \n\n \n \n \n \n \n \n \n \n \n parent\n \n \n \n \n parent: any\n\n \n \n\n\n \n \n Type : any\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Contains the parent Instance which inhabits the item. This property is set programmatically and therefore meant to be readonly.\n\n \n \n \n \n \n \n \n \n \n resolve\n \n \n \n \n resolve: function\n\n \n \n\n\n \n \n Type : function\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Custom resolve path function. It can be used e.g. to access subbranches of an Object. \n\n \n \n \n \n \n \n \n \n \n title\n \n \n \n \n title: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n For primitive values only: the title for the item \n\n \n \n \n \n \n \n \n \n \n type\n \n \n \n \n type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The type of the Item. It determines how it will be displayed in different contexts \n\n \n \n \n \n \n \n\n\n \n import { Item } from './item';\nimport { FieldConfig } from '../config/field-config.interface';\n\n/** An ItemConfig describes an abstract entity with certain properties.*/\nexport interface ItemConfig {\n /** For primitive values only: the title for the item */\n title?: string;\n /** The Property that is used to identify items from another (e.g. in a selection). */\n identifier?: string;\n /** Pattern of the identifier field. Is used e.g. in the searchbar */\n identifierPattern?: RegExp;\n /** The Property that is used to display the item for humans */\n label?: string;\n /** The Items field Config */\n fields?: FieldConfig;\n /** The type of the Item. It determines how it will be displayed in different contexts */\n type?: string;\n /** Custom resolve path function. It can be used e.g. to access subbranches of an Object. */\n resolve?: (body: T) => any;\n /** Contains the parent Instance which inhabits the item. This property is set programmatically and therefore meant to be readonly.*/\n parent?: any;\n /** Callback that is invoked when the item is saved */\n onSave?: (item?: Item, value?: Object) => Promise | T; // TODO rename to save\n /** Callback that is invoked before the item is edited */\n onEdit?: (value?: T) => Promise | T; // TODO rename to save\n /** This method can be used to set custom classes based on item contents. Used e.g. in list-items for row class */\n classes?: (item?: Item) => string;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ListComponent.html":{"url":"components/ListComponent.html","title":"component - ListComponent","body":"\n \n\n\n\n\n\n Components\n ListComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/list/list.component.ts\n\n\n \n Description\n \n \n The ListComponent will render a list containing the given items or collection.\nhttps://components.entrecode.de/ui/list/basic?e=1\nhttps://components.entrecode.de/ui/list/transforms?e=1\n\n \n\n\n \n Implements\n \n \n OnChanges\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n \n encapsulation\n ViewEncapsulation.None\n \n\n\n\n\n\n\n\n\n\n \n selector\n ec-list\n \n\n\n\n \n template\n listTemplate\n \n\n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n config\n \n \n focusItem\n \n \n isLoading\n \n \n Public\n listConfig\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n columnClick\n \n \n filter\n \n \n focusFirst\n \n \n focusNext\n \n \n focusPrev\n \n \n init\n \n \n ngOnChanges\n \n \n selectIndex\n \n \n showHeader\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n autoFocusFirst\n \n \n collection\n \n \n config\n \n \n items\n \n \n list\n \n \n pagination\n \n \n paginationConfig\n \n \n selection\n \n \n solo\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n changed\n \n \n columnClicked\n \n \n selected\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(listConfig: ListConfigService, cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:56\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n listConfig\n \n \n ListConfigService\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n autoFocusFirst\n \n \n If true, the first item in the list will always be focused after changed \n\n \n Default value : false\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:52\n \n \n \n \n \n \n \n \n \n collection\n \n \n The used collection \n\n \n Type : Collection\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:36\n \n \n \n \n \n \n \n \n \n config\n \n \n \n Type : ListConfig\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:32\n \n \n \n \n \n \n \n \n \n items\n \n \n The visible items \n\n \n Type : Array\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:34\n \n \n \n \n \n \n \n \n \n list\n \n \n The Instance of the List \n\n \n Type : List\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:46\n \n \n \n \n \n \n \n \n \n pagination\n \n \n Pagination that should be used \n\n \n Type : Pagination\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:48\n \n \n \n \n \n \n \n \n \n paginationConfig\n \n \n Custom PaginationConfig \n\n \n Type : PaginationConfig\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:50\n \n \n \n \n \n \n \n \n \n selection\n \n \n The used selection \n\n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:38\n \n \n \n \n \n \n \n \n \n solo\n \n \n If true, only one item is selectable next \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:40\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n changed\n \n \n emits after the list changed \n\n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:56\n \n \n \n \n \n \n \n \n \n columnClicked\n \n \n Event emitter on item selection \n\n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:42\n \n \n \n \n \n \n \n \n \n selected\n \n \n Event emitter on selection change \n\n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:44\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n columnClick\n \n \n \n \n \n \n \ncolumnClick(item)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:102\n \n \n\n\n \n \n Column click handler. Triggers select.emit(item) with fallback to selection.toggle\n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n filter\n \n \n \n \n \n \n \nfilter(property, value)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:155\n \n \n\n\n \n \n Filters the list \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n property\n \n \n No\n \n \n\n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n focusFirst\n \n \n \n \n \n \n \nfocusFirst()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:123\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n focusNext\n \n \n \n \n \n \n \nfocusNext()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:129\n \n \n\n\n \n \n Selects the next item \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n focusPrev\n \n \n \n \n \n \n \nfocusPrev()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:142\n \n \n\n\n \n \n Selects the previous item \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \n \ninit(list: List)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:75\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n list\n \n List\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges(changes?)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:66\n \n \n\n\n \n \n Changing items or collection will trigger reconstructing the list with the new items.\nChanging the selection will reconstruct the selection \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n changes\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n selectIndex\n \n \n \n \n \n \n \nselectIndex(index: number)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:116\n \n \n\n\n \n \n Selects the item with the given index \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n index\n \n number\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n showHeader\n \n \n \n \n \n \n \nshowHeader()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list.component.ts:110\n \n \n\n\n \n \n Decides if the header should be visible or not \n\n\n \n Returns : any\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:60\n \n \n\n\n \n \n \n \n \n \n \n \n \n config\n \n \n \n \n \n \n \n config: ListConfig\n\n \n \n \n \n Type : ListConfig\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:27\n \n \n\n \n \n The current list config \n\n \n \n\n \n \n \n \n \n \n \n \n \n focusItem\n \n \n \n \n \n \n \n focusItem: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:54\n \n \n\n \n \n Current focus \n\n \n \n\n \n \n \n \n \n \n \n \n \n isLoading\n \n \n \n \n \n \n \n isLoading: \n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:30\n \n \n\n \n \n Config input for List \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n listConfig\n \n \n \n \n \n \n \n listConfig: ListConfigService\n\n \n \n \n \n Type : ListConfigService\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list.component.ts:59\n \n \n\n\n \n \n\n\n\n\n \n List\nThe List is one of the main components to work with.\nThe basic idea is to display collections of data in a structured but flexible way.\nYou can create a new List like this:\nthis.trees = new List(\n//first argument: Array of Objects\n[{\n name: 'Appletree',\n height: 10,\n fruits: true\n}, {\n name: 'Lemontree',\n height: 8,\n fruits: true\n}, {\n name: 'Birch',\n height: 20,\n fruits: false\n}],\n//second (optional) argument: ListConfig\n{\n fields: {\n name: {\n label: 'Name'\n },\n height: {\n label: 'Height',\n group: (h) => h > 10 ? 'Higher than 10m' : 'Lower than 10m'\n },\n fruits: {\n label: 'Has Fruits?',\n display: (value) => value ? 'yes' : 'no'\n },\n }\n})This is how you display a List instance into your template:\n\n \n\n \n import {\n Component, EventEmitter, Input, OnChanges, Output, ViewEncapsulation,\n ChangeDetectionStrategy, ChangeDetectorRef\n} from '@angular/core';\nimport { Collection, List, ListConfig, Selection, Pagination } from '@ec.components/core';\nimport { Item } from '@ec.components/core';\nimport { PaginationConfig } from './pagination/pagination-config.interface';\nimport { ListConfigService } from './list-config.service';\n\nimport { listTemplate } from './list.component.html';\n\n/**\n * The ListComponent will render a list containing the given items or collection.\n *\n * https://components.entrecode.de/ui/list/basic?e=1\n * https://components.entrecode.de/ui/list/transforms?e=1\n * */\n@Component({\n selector: 'ec-list',\n /* templateUrl: './list.component.html', */\n template: listTemplate,\n encapsulation: ViewEncapsulation.None,\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class ListComponent implements OnChanges {\n /** The current list config */\n config: ListConfig = {};\n /** Config input for List */\n /** Flag that flips true when loading. */\n isLoading = false;\n // tslint:disable-next-line:no-input-rename\n @Input('config') configInput: ListConfig;\n /** The visible items */\n @Input() items: Array;\n /** The used collection */\n @Input() collection: Collection;\n /** The used selection */\n @Input() selection: Selection;\n /** If true, only one item is selectable next */\n @Input() solo: boolean;\n /** Event emitter on item selection */\n @Output() columnClicked: EventEmitter> = new EventEmitter();\n /** Event emitter on selection change */\n @Output() selected: EventEmitter> = new EventEmitter();\n /** The Instance of the List */\n @Input() list: List;\n /** Pagination that should be used */\n @Input() pagination: Pagination;\n /** Custom PaginationConfig */\n @Input() paginationConfig: PaginationConfig;\n /** If true, the first item in the list will always be focused after changed */\n @Input() autoFocusFirst = false;\n /** Current focus */\n focusItem: Item;\n /** emits after the list changed */\n @Output() changed: EventEmitter> = new EventEmitter();\n\n constructor(\n public listConfig: ListConfigService,\n public cdr: ChangeDetectorRef\n ) {\n }\n\n /** Changing items or collection will trigger reconstructing the list with the new items.\n * Changing the selection will reconstruct the selection */\n ngOnChanges(changes?) {\n this.config = Object.assign(this.config || {}, this.configInput || {});\n if (this.items) {\n this.init(new List(this.items, this.config, this.pagination));\n } else if (this.collection) {\n this.init(new List(this.collection.items, this.config, this.pagination));\n }\n }\n\n init(list: List) {\n if (!list) {\n console.warn('tried to init list.component with undefined list');\n return;\n }\n this.list = list;\n this.listConfig.applyConfig(this.list);\n this.list.change$.subscribe(() => {\n if (this.autoFocusFirst || this.list.isFiltered()) {\n this.focusFirst();\n } else {\n delete this.focusItem;\n }\n this.cdr.markForCheck();\n this.changed.emit(this.list);\n });\n if (!this.selection) {\n this.selection = new Selection([], this.list.config);\n }\n if (this.selection) {\n this.selection.update$.subscribe((selection: Selection) => {\n this.selected.emit(selection);\n });\n }\n }\n\n /** Column click handler. Triggers select.emit(item) with fallback to selection.toggle*/\n columnClick(item) {\n if (this.list.config.selectMode && this.selection) {\n this.selection.toggle(item, this.solo);\n } else if (this.columnClicked.observers.length) {\n return this.columnClicked.emit(item);\n }\n }\n /** Decides if the header should be visible or not */\n showHeader() {\n return this.list && this.list.config && !this.list.config.disableHeader && (this.list.fields.length || this.list.config.title);\n /* && (this.list.config.alwaysShowHeader || !this.list.isEmpty()); */\n }\n\n /** Selects the item with the given index */\n selectIndex(index: number) {\n if (!this.selection || this.list.isEmpty() || !this.list.items[index]) {\n return;\n }\n this.selection.select(this.list.items[index]);\n }\n\n focusFirst() {\n delete this.focusItem;\n this.focusNext();\n }\n\n /** Selects the next item */\n focusNext() {\n if (!this.list) {\n return;\n }\n let index = 0;\n if (this.focusItem) {\n index = this.list.page.indexOf(this.focusItem) + 1;\n }\n this.focusItem = this.list.page[index % this.list.page.length];\n this.cdr.markForCheck();\n }\n\n /** Selects the previous item */\n focusPrev() {\n if (!this.list) {\n return;\n }\n let index = this.list.page.length - 1;\n if (this.focusItem) {\n index = this.list.page.indexOf(this.focusItem) + this.list.page.length - 1;\n }\n this.focusItem = this.list.page[index % this.list.page.length];\n this.cdr.markForCheck();\n }\n\n /** Filters the list */\n filter(property, value) {\n this.list.filter(property, value);\n }\n}\n\n \n\n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = 'listTemplate'\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ListComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ListConfig.html":{"url":"interfaces/ListConfig.html","title":"interface - ListConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n ListConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/list/list-config.interface.ts\n \n\n \n Description\n \n \n Configuration for List Classes.\n\n \n\n \n Extends\n \n \n ItemConfig\n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n alwaysShowHeader\n \n \n Optional\n autoload\n \n \n Optional\n availableSizes\n \n \n Optional\n desc\n \n \n Optional\n disableColumnFilter\n \n \n Optional\n disableDrag\n \n \n Optional\n disableHeader\n \n \n Optional\n disableSearchbar\n \n \n Optional\n display\n \n \n Optional\n filter\n \n \n Optional\n hidePagination\n \n \n Optional\n maxColumns\n \n \n Optional\n page\n \n \n Optional\n popColumns\n \n \n Optional\n query\n \n \n Optional\n selectMode\n \n \n Optional\n size\n \n \n Optional\n solo\n \n \n Optional\n sort\n \n \n Optional\n sortBy\n \n \n Optional\n storageKey\n \n \n Optional\n title\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n alwaysShowHeader\n \n \n \n \n alwaysShowHeader: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the header will also be shown when the list is empty. Defaults to false \n\n \n \n \n \n \n \n \n \n \n autoload\n \n \n \n \n autoload: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the list will automatically load on change \n\n \n \n \n \n \n \n \n \n \n availableSizes\n \n \n \n \n availableSizes: number[]\n\n \n \n\n\n \n \n Type : number[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The available sizes. If not set, the size cannot be changed \n\n \n \n \n \n \n \n \n \n \n desc\n \n \n \n \n desc: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If set to true, the sorting will be descending \n\n \n \n \n \n \n \n \n \n \n disableColumnFilter\n \n \n \n \n disableColumnFilter: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no column filter will be shown in the list header \n\n \n \n \n \n \n \n \n \n \n disableDrag\n \n \n \n \n disableDrag: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, select items cannot be dragged \n\n \n \n \n \n \n \n \n \n \n disableHeader\n \n \n \n \n disableHeader: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the list will have no header. \n\n \n \n \n \n \n \n \n \n \n disableSearchbar\n \n \n \n \n disableSearchbar: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no select dropdown will be shown on ec-select \n\n \n \n \n \n \n \n \n \n \n display\n \n \n \n \n display: function\n\n \n \n\n\n \n \n Type : function\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Transforms the Items before they are displayed, e.g. to apply a filter for the view *\n\n \n \n \n \n \n \n \n \n \n filter\n \n \n \n \n filter: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n tells the list to show only items that match the filter \n\n \n \n \n \n \n \n \n \n \n hidePagination\n \n \n \n \n hidePagination: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the default pagination will not be visible. \n\n \n \n \n \n \n \n \n \n \n maxColumns\n \n \n \n \n maxColumns: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Maximal visible columns. Defaults to 8 \n\n \n \n \n \n \n \n \n \n \n page\n \n \n \n \n page: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The current active page \n\n \n \n \n \n \n \n \n \n \n popColumns\n \n \n \n \n popColumns: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n how many columns should the pop have? \n\n \n \n \n \n \n \n \n \n \n query\n \n \n \n \n query: literal type\n\n \n \n\n\n \n \n Type : literal type\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n a query that will be turned in to a filter \n\n \n \n \n \n \n \n \n \n \n selectMode\n \n \n \n \n selectMode: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the list will show its checkboxes and will select on column click.\nThe columnClicked output will be ignored as long selectMode is active \n\n \n \n \n \n \n \n \n \n \n size\n \n \n \n \n size: number\n\n \n \n\n\n \n \n Type : number\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The number of items per page \n\n \n \n \n \n \n \n \n \n \n solo\n \n \n \n \n solo: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Should the selection be solo? \n\n \n \n \n \n \n \n \n \n \n sort\n \n \n \n \n sort: string[]\n\n \n \n\n\n \n \n Type : string[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Array of properties that is sorted after, experimental... \n\n \n \n \n \n \n \n \n \n \n sortBy\n \n \n \n \n sortBy: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The property name that is sorted after \n\n \n \n \n \n \n \n \n \n \n storageKey\n \n \n \n \n storageKey: string | \n\n \n \n\n\n \n \n Type : string | \n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The key that should store the lists config in the local storage.\nIf set, the key will be populated on config changes. \n\n \n \n \n \n \n \n \n \n \n title\n \n \n \n \n title: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n For lists with primitive values only: the title of the list header \n\n \n \n \n \n \n \n\n\n \n import { ItemConfig } from '../item/item-config.interface';\nimport { List } from '../list/list';\nimport { Item } from '../item/item';\n\n/**\n * Configuration for List Classes.\n * */\nexport interface ListConfig extends ItemConfig {\n /** For lists with primitive values only: the title of the list header */\n title?: string;\n /** The property name that is sorted after */\n sortBy?: string;\n /** Array of properties that is sorted after, experimental... */\n sort?: string[];\n /** If set to true, the sorting will be descending */\n desc?: boolean;\n /** If true, the list will show its checkboxes and will select on column click.\n * The columnClicked output will be ignored as long selectMode is active */\n selectMode?: boolean;\n /** If true, no select dropdown will be shown on ec-select */\n disableSearchbar?: boolean;\n /** If true, the list will have no header. */\n disableHeader?: boolean;\n /** If true, the header will also be shown when the list is empty. Defaults to false */\n alwaysShowHeader?: boolean;\n /** If true, no column filter will be shown in the list header */\n disableColumnFilter?: boolean;\n /** If true, select items cannot be dragged */\n disableDrag?: boolean;\n /** If true, the default pagination will not be visible. */\n hidePagination?: boolean;\n /** The current active page */\n page?: number;\n /** The number of items per page */\n size?: number;\n /** The available sizes. If not set, the size cannot be changed */\n availableSizes?: number[];\n /** Should the selection be solo? */\n solo?: boolean;\n /** tells the list to show only items that match the filter */\n filter?: { [key: string]: any };\n /** a query that will be turned in to a filter */\n query?: { [key: string]: any };\n /** Maximal visible columns. Defaults to 8 */\n maxColumns?: number;\n /** how many columns should the pop have? */\n popColumns?: number;\n /** If true, the list will automatically load on change */\n autoload?: boolean;\n /** The key that should store the lists config in the local storage.\n * If set, the key will be populated on config changes. */\n storageKey?: string | ((list: List) => string);\n /** Transforms the Items before they are displayed, e.g. to apply a filter for the view **/\n display?: (items: Item[]) => Item[];\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ListConfigService.html":{"url":"injectables/ListConfigService.html","title":"injectable - ListConfigService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n ListConfigService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/list/list-config.service.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n storageKeyResolver\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n applyConfig\n \n \n getStorageKey\n \n \n retrieve\n \n \n set\n \n \n store\n \n \n storeConfig\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n applyConfig\n \n \n \n \n \n \n \napplyConfig(list: List)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:44\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n list\n \n List\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getStorageKey\n \n \n \n \n \n \n \ngetStorageKey(list: List)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:23\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n list\n \n List\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n retrieve\n \n \n \n \n \n \n \nretrieve(key)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:9\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n key\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \n \nset(key, value)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:14\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n key\n \n \n No\n \n \n\n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n store\n \n \n \n \n \n \n \nstore(key, config)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:18\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n key\n \n \n No\n \n \n\n \n \n config\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n storeConfig\n \n \n \n \n \n \n \nstoreConfig(list: List)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:35\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n list\n \n List\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n storageKeyResolver\n \n \n \n \n \n \n \n storageKeyResolver: function\n\n \n \n \n \n Type : function\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list-config.service.ts:7\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { List } from '@ec.components/core';\n\n@Injectable()\nexport class ListConfigService {\n\n public storageKeyResolver: (list: List) => string;\n\n retrieve(key) {\n const config = localStorage.getItem(key);\n return config ? JSON.parse(config) : null;\n }\n\n set(key, value) {\n localStorage.setItem(key, JSON.stringify(value));\n }\n\n store(key, config) {\n const existing = this.retrieve(key) || {};\n localStorage.setItem(key, JSON.stringify(Object.assign(existing, config)));\n }\n\n getStorageKey(list: List) {\n if (!list || !list.fields || !list.config || !list.config.storageKey) {\n // console.log('cannot apply config: no storage key or list set');\n return;\n }\n const resolveFn = list.config.storageKey || this.storageKeyResolver;\n if (typeof resolveFn === 'function') {\n return resolveFn(list);\n }\n return list.config.storageKey;\n }\n\n storeConfig(list: List) {\n const key = this.getStorageKey(list);\n if (!key) {\n return;\n }\n const config = { hide: list.fields.filter(f => f.hideInList).map(f => f.property) };\n this.store(key, config);\n }\n\n applyConfig(list: List) {\n const key = this.getStorageKey(list);\n if (!key) {\n return;\n }\n const existing = this.retrieve(key);\n if (existing && existing.hide) {\n list.fields.forEach(field => field.hideInList = false);\n existing.hide.forEach(property => {\n const field = list.fields.find(f => f.property === property);\n if (!field) {\n console.warn('field ', property, ' not found');\n return;\n }\n field.hideInList = true;\n });\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ListHeaderComponent.html":{"url":"components/ListHeaderComponent.html","title":"component - ListHeaderComponent","body":"\n \n\n\n\n\n\n Components\n ListHeaderComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/list/list-header/list-header.component.ts\n\n\n \n Description\n \n \n This component renders, as the name states, the header of a list.\n\n \n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-list-header\n \n\n\n\n\n \n templateUrl\n ./list-header.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n filter\n \n \n Public\n listConfig\n \n \n pops\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n applyFilter\n \n \n Public\n editFilter\n \n \n Public\n fieldLabel\n \n \n Public\n removeFilter\n \n \n Public\n toggleVisibility\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n list\n \n \n selection\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(listConfig: ListConfigService)\n \n \n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:23\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n listConfig\n \n \n ListConfigService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n list\n \n \n The list instance \n\n \n Type : List\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:17\n \n \n \n \n \n \n \n \n \n selection\n \n \n The selection instance. This is optional. If It is not provided, no checkbox will be visible.\n\n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:19\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n applyFilter\n \n \n \n \n \n \n \n \n applyFilter(property, value)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:34\n \n \n\n\n \n \n Applies the given filter to the list. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n property\n \n \n No\n \n \n\n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n editFilter\n \n \n \n \n \n \n \n \n editFilter(pop)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:29\n \n \n\n\n \n \n opens the given filter pop and closes all others \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n pop\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n fieldLabel\n \n \n \n \n \n \n \n \n fieldLabel(field: Field)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:44\n \n \n\n\n \n \n Returns the fields label \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n field\n \n Field\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n removeFilter\n \n \n \n \n \n \n \n \n removeFilter(property, control)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:39\n \n \n\n\n \n \n Resets the fields filter \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n property\n \n \n No\n \n \n\n \n \n control\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n toggleVisibility\n \n \n \n \n \n \n \n \n toggleVisibility(field: Field)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:52\n \n \n\n\n \n \n Toggles the fields visibility in the list \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n field\n \n Field\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n filter\n \n \n \n \n \n \n \n filter: FormComponent\n\n \n \n \n \n Type : FormComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('filterForm')\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:23\n \n \n\n \n \n The form that holds the current filter information \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n listConfig\n \n \n \n \n \n \n \n listConfig: ListConfigService\n\n \n \n \n \n Type : ListConfigService\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:25\n \n \n\n\n \n \n \n \n \n \n \n \n \n pops\n \n \n \n \n \n \n \n pops: QueryList\n\n \n \n \n \n Type : QueryList\n\n \n \n \n \n Decorators : \n \n \n @ViewChildren('filterPop')\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-header/list-header.component.ts:21\n \n \n\n \n \n The pop dropdowns that contain the filtering \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, Input, QueryList, ViewChild, ViewChildren, ChangeDetectionStrategy } from '@angular/core';\nimport { PopComponent } from '../../pop/pop.component';\nimport { FormComponent } from '../../form/form.component';\nimport { List } from '@ec.components/core';\nimport { Selection } from '@ec.components/core';\nimport { Field } from '@ec.components/core';\nimport { ListConfigService } from '../list-config.service';\n\n/** This component renders, as the name states, the header of a list.*/\n@Component({\n selector: 'ec-list-header',\n templateUrl: './list-header.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class ListHeaderComponent {\n /** The list instance */\n @Input() list: List;\n /** The selection instance. This is optional. If It is not provided, no checkbox will be visible.*/\n @Input() selection: Selection;\n /** The pop dropdowns that contain the filtering */\n @ViewChildren('filterPop') pops: QueryList;\n /** The form that holds the current filter information */\n @ViewChild('filterForm') filter: FormComponent;\n\n constructor(public listConfig: ListConfigService) {\n }\n\n /** opens the given filter pop and closes all others */\n public editFilter(pop) {\n pop.toggle();\n }\n\n /** Applies the given filter to the list. */\n public applyFilter(property, value) {\n this.list.filter(property, value);\n }\n\n /** Resets the fields filter */\n public removeFilter(property, control) {\n control.reset();\n }\n\n /** Returns the fields label */\n public fieldLabel(field: Field) {\n if (field.label === false) {\n return '';\n }\n return field.label || field.property;\n }\n\n /** Toggles the fields visibility in the list */\n public toggleVisibility(field: Field) {\n this.list.toggleVisibility(field);\n this.listConfig.storeConfig(this.list);\n }\n}\n\n \n\n \n \n \n \n \n \n\n \n \n \n\n \n {{fieldLabel(field)}}\n \n \n\n \n \n \n ×\n \n \n\n \n ☰\n \n \n \n \n {{fieldLabel(field)}}\n \n \n \n \n \n\n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{fieldLabel(field)}} × ☰ {{fieldLabel(field)}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ListHeaderComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ListItemsComponent.html":{"url":"components/ListItemsComponent.html","title":"component - ListItemsComponent","body":"\n \n\n\n\n\n\n Components\n ListItemsComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/list/list-items/list-items.component.ts\n\n\n \n Description\n \n \n The ListItemsComponent displays the actual list, without all peripherals (header, pagination etc.).\nIt can either be given an Array of Items or just the list parent to control the shown items. \n\n \n\n\n \n Implements\n \n \n OnChanges\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-list-items\n \n\n\n\n\n \n templateUrl\n ./list-items.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n columnClick\n \n \n hasFocus\n \n \n isClickable\n \n \n ngOnChanges\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n focusItem\n \n \n items\n \n \n list\n \n \n selection\n \n \n solo\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n columnClicked\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:24\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n focusItem\n \n \n The current focused item \n\n \n Type : Item\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:22\n \n \n \n \n \n \n \n \n \n items\n \n \n An Optional Array of Item's that should be displayed. If none are provded, the list Items are used.\n\n \n Type : Item[]\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:18\n \n \n \n \n \n \n \n \n \n list\n \n \n The list instance \n\n \n Type : List\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:14\n \n \n \n \n \n \n \n \n \n selection\n \n \n The selection instance. This is optional. If It is not provided, no checkbox will be visible.\n\n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:16\n \n \n \n \n \n \n \n \n \n solo\n \n \n If true, only one item is selectable next \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:20\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n columnClicked\n \n \n Event emitter on item clicked \n\n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:24\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n columnClick\n \n \n \n \n \n \n \ncolumnClick(item: Item, e: Event)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:54\n \n \n\n\n \n \n Propagate clicked item to host or toggle selection. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n item\n \n Item\n \n \n \n No\n \n \n\n \n \n e\n \n Event\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n hasFocus\n \n \n \n \n \n \n \nhasFocus(item)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:45\n \n \n\n\n \n \n yields true if the item is focussed \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isClickable\n \n \n \n \n \n \n \nisClickable()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:49\n \n \n\n\n \n \n\n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:29\n \n \n\n\n \n \n Checks for host and uses its list. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Defined in packages/ui/src/lib/list/list-items/list-items.component.ts:27\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Input, Output, EventEmitter, ChangeDetectionStrategy, ChangeDetectorRef } from '@angular/core';\nimport { Item, List, Selection } from '@ec.components/core';\nimport { OnChanges } from '@angular/core/src/metadata/lifecycle_hooks';\n\n/** The ListItemsComponent displays the actual list, without all peripherals (header, pagination etc.).\n * It can either be given an Array of Items or just the list parent to control the shown items. */\n@Component({\n selector: 'ec-list-items',\n templateUrl: './list-items.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class ListItemsComponent implements OnChanges {\n /** The list instance */\n @Input() list: List;\n /** The selection instance. This is optional. If It is not provided, no checkbox will be visible.*/\n @Input() selection: Selection;\n /** An Optional Array of Item's that should be displayed. If none are provded, the list Items are used.*/\n @Input() items: Item[];\n /** If true, only one item is selectable next */\n @Input() solo: boolean;\n /** The current focused item */\n @Input() focusItem: Item;\n /** Event emitter on item clicked */\n @Output() columnClicked: EventEmitter> = new EventEmitter();\n\n\n constructor(public cdr: ChangeDetectorRef) { }\n /** Checks for host and uses its list. */\n ngOnChanges() {\n if (!this.items && this.list) {\n this.items = this.list.page;\n }\n if (this.list) {\n this.list.change$.subscribe(newList => {\n this.cdr.markForCheck();\n });\n }\n if (this.selection) {\n this.selection.update$.subscribe(newList => {\n this.cdr.markForCheck();\n });\n }\n }\n /** yields true if the item is focussed */\n hasFocus(item) {\n return this.focusItem === item;\n }\n\n isClickable() {\n return this.columnClicked.observers.length || (this.selection && this.list && this.list.config.selectMode);\n }\n\n /** Propagate clicked item to host or toggle selection. */\n columnClick(item: Item, e: Event) {\n e.stopPropagation();\n e.stopImmediatePropagation();\n if (this.selection && this.list && this.list.config.selectMode) {\n this.selection.toggle(item, this.solo);\n } else if (this.columnClicked.observers.length) {\n this.columnClicked.emit(item);\n }\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ListItemsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/ListModule.html":{"url":"modules/ListModule.html","title":"module - ListModule","body":"\n \n\n\n\n\n Modules\n ListModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_ListModule\n\n\n\ncluster_ListModule_declarations\n\n\n\ncluster_ListModule_imports\n\n\n\ncluster_ListModule_exports\n\n\n\ncluster_ListModule_providers\n\n\n\n\nGroupPipe\n\nGroupPipe\n\n\n\nListModule\n\nListModule\n\nListModule -->\n\nGroupPipe->ListModule\n\n\n\n\n\nListComponent\n\nListComponent\n\nListModule -->\n\nListComponent->ListModule\n\n\n\n\n\nListHeaderComponent\n\nListHeaderComponent\n\nListModule -->\n\nListHeaderComponent->ListModule\n\n\n\n\n\nListItemsComponent\n\nListItemsComponent\n\nListModule -->\n\nListItemsComponent->ListModule\n\n\n\n\n\nPaginationComponent\n\nPaginationComponent\n\nListModule -->\n\nPaginationComponent->ListModule\n\n\n\n\n\nSearchbarComponent\n\nSearchbarComponent\n\nListModule -->\n\nSearchbarComponent->ListModule\n\n\n\n\n\nFormModule \n\nFormModule \n\nFormModule -->\n\nListModule->FormModule \n\n\n\n\n\nGroupPipe \n\nGroupPipe \n\nGroupPipe -->\n\nListModule->GroupPipe \n\n\n\n\n\nListComponent \n\nListComponent \n\nListComponent -->\n\nListModule->ListComponent \n\n\n\n\n\nListHeaderComponent \n\nListHeaderComponent \n\nListHeaderComponent -->\n\nListModule->ListHeaderComponent \n\n\n\n\n\nListItemsComponent \n\nListItemsComponent \n\nListItemsComponent -->\n\nListModule->ListItemsComponent \n\n\n\n\n\nPaginationComponent \n\nPaginationComponent \n\nPaginationComponent -->\n\nListModule->PaginationComponent \n\n\n\n\n\nSearchbarComponent \n\nSearchbarComponent \n\nSearchbarComponent -->\n\nListModule->SearchbarComponent \n\n\n\n\n\nFormModule\n\nFormModule\n\nListModule -->\n\nFormModule->ListModule\n\n\n\n\n\nIconModule\n\nIconModule\n\nListModule -->\n\nIconModule->ListModule\n\n\n\n\n\nSymbolModule\n\nSymbolModule\n\nListModule -->\n\nSymbolModule->ListModule\n\n\n\n\n\nUtilityModule\n\nUtilityModule\n\nListModule -->\n\nUtilityModule->ListModule\n\n\n\n\n\nListConfigService\n\nListConfigService\n\nListModule -->\n\nListConfigService->ListModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/list/list.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n GroupPipe\n \n \n ListComponent\n \n \n ListHeaderComponent\n \n \n ListItemsComponent\n \n \n PaginationComponent\n \n \n SearchbarComponent\n \n \n \n \n Providers\n \n \n ListConfigService\n \n \n \n \n Imports\n \n \n FormModule\n \n \n IconModule\n \n \n SymbolModule\n \n \n UtilityModule\n \n \n \n \n Exports\n \n \n FormModule\n \n \n GroupPipe\n \n \n ListComponent\n \n \n ListHeaderComponent\n \n \n ListItemsComponent\n \n \n PaginationComponent\n \n \n SearchbarComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormModule } from '../form/form.module';\nimport { IconModule } from '../icon/icon.module';\nimport { SymbolModule } from '../symbol/symbol.module';\nimport { UtilityModule } from '../utility/utility.module';\nimport { GroupPipe } from './group.pipe';\nimport { ListHeaderComponent } from './list-header/list-header.component';\nimport { ListItemsComponent } from './list-items/list-items.component';\nimport { ListComponent } from './list.component';\nimport { PaginationComponent } from './pagination/pagination.component';\nimport { SearchbarComponent } from './searchbar/searchbar.component';\nimport { ListConfigService } from './list-config.service';\nimport { FormsModule } from '@angular/forms';\n\nexport const listModuleConfig = {\n declarations: [\n ListComponent,\n ListItemsComponent,\n ListHeaderComponent,\n PaginationComponent,\n SearchbarComponent,\n GroupPipe,\n ],\n imports: [\n CommonModule,\n FormsModule,\n FormModule,\n IconModule,\n SymbolModule,\n UtilityModule\n ],\n exports: [\n ListComponent,\n ListItemsComponent,\n ListHeaderComponent,\n PaginationComponent,\n SearchbarComponent,\n GroupPipe,\n FormModule,\n ],\n providers: [\n ListConfigService\n ]\n};\n\n@NgModule(listModuleConfig)\nexport class ListModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LoaderComponent.html":{"url":"components/LoaderComponent.html","title":"component - LoaderComponent","body":"\n \n\n\n\n\n\n Components\n LoaderComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/loader/loader.component.ts\n\n\n \n Description\n \n \n The ec-loader can be plugged into various components to be triggered when they load stuff.\nhttps://components.entrecode.de/ui/loader?e=1\n\n \n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-loader\n \n\n\n\n\n \n templateUrl\n ./loader.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n stack\n \n \n Private\n timestamp\n \n \n Private\n visible\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Private\n hide\n \n \n Private\n show\n \n \n wait\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(host: ElementRef)\n \n \n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:18\n \n \n\n \n \n Injects the host element. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n host\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Private\n hide\n \n \n \n \n \n \n \n \n hide()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:31\n \n \n\n\n \n \n Hide the loader by removing .visible from the host. This method is NOT meant to be used from outside, \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Private\n show\n \n \n \n \n \n \n \n \n show()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:25\n \n \n\n\n \n \n Shows the loader by setting .visible to the host. This method is NOT meant to be used from outside, \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n wait\n \n \n \n \n \n \n \nwait(promise: Promise)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:38\n \n \n\n\n \n \n Tells loader to show until the given promise resolves. (includes all other promises that are waited upon)\nMake sure the given promise is catched (so the loader will stop loading on error)! \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n promise\n \n Promise\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n stack\n \n \n \n \n \n \n \n stack: Collection>\n\n \n \n \n \n Type : Collection>\n\n \n \n \n \n Default value : new Collection([])\n \n \n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:14\n \n \n\n \n \n The current stack of loading promises.\n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n timestamp\n \n \n \n \n \n \n \n timestamp: \n\n \n \n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:18\n \n \n\n \n \n The timestamp of the last time a promise has been added to the stack. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n visible\n \n \n \n \n \n \n \n visible: \n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in packages/ui/src/lib/loader/loader.component.ts:16\n \n \n\n \n \n The loader's visibility status. \n\n \n \n\n \n \n\n\n\n\n \n Loader\nThe loader can be used to indicate any kind of loading activity\nTemplate\n\n\nGlobal Loader\nLocal LoaderThe default classes can be found here.\nUsage\nYou can use a global loader that handles every action or use multiple local loaders:\nimport { LoaderComponent, LoaderService } from '@ec.components/ui';\nexport class MyApp {\n @ViewChild('globalLoader') globalLoader: LoaderComponent;\n @ViewChild('localLoader') localLoader: LoaderComponent;\n constructor(private loaderService: LoaderService) {\n this.loaderService.use(this.globalLoader); // set global loader\n }\n globalLoader() { // When not passing a loader to .wait, the global loader (set by .use) is used.\n this.loaderService.wait(new Promise((resolve) => setTimeout(resolve, 2000)));\n }\n localLoader() {\n this.loaderService.wait(new Promise((resolve) => setTimeout(resolve, 2000)), this.localLoader);\n // this.localLoader.wait(new Promise((resolve) => setTimeout(resolve, 2000))); // alternative way\n }\n}The advantage of local loaders is that you can place them in specific places of your template to only \"disable\" a part of your site while loading and not the whole page.\nSee the commented out line in localLoader for a direct way to trigger a loader without the service.\nHow it works\nEach time .wait is called on the LoaderService, the target loader throws the given promise on a stack. When all promises on the stack have been resolved, the loader is hidden. This is better than just a boolean switch because multiple loading activies do not interfere with each other.\n\n \n\n \n import { Component, ElementRef, ChangeDetectionStrategy } from '@angular/core';\nimport { Collection } from '@ec.components/core';\n\n/** The ec-loader can be plugged into various components to be triggered when they load stuff.\n * https://components.entrecode.de/ui/loader?e=1\n*/\n@Component({\n selector: 'ec-loader',\n templateUrl: './loader.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class LoaderComponent {\n /** The current stack of loading promises.*/\n private stack: Collection> = new Collection([]);\n /** The loader's visibility status. */\n private visible = false;\n /** The timestamp of the last time a promise has been added to the stack. */\n private timestamp;\n\n /** Injects the host element. */\n constructor(private host: ElementRef) {\n }\n\n /** Shows the loader by setting .visible to the host. This method is NOT meant to be used from outside, */\n private show() {\n this.visible = true; // show loader\n this.host.nativeElement.classList.add('is-active');\n }\n\n /** Hide the loader by removing .visible from the host. This method is NOT meant to be used from outside, */\n private hide() {\n this.visible = false; // show loader\n this.host.nativeElement.classList.remove('is-active');\n }\n\n /** Tells loader to show until the given promise resolves. (includes all other promises that are waited upon)\n * Make sure the given promise is catched (so the loader will stop loading on error)! */\n wait(promise: Promise) {\n this.stack.add(promise); // add promise to stack\n this.show();\n const timestamp = Date.now();\n this.timestamp = timestamp; // get timestamp\n Promise.all(this.stack.items)\n .then(() => {\n if (timestamp === this.timestamp) {\n this.hide();\n this.stack.removeAll();\n }\n });\n return promise;\n }\n}\n\n \n\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'LoaderComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/LoaderModule.html":{"url":"modules/LoaderModule.html","title":"module - LoaderModule","body":"\n \n\n\n\n\n Modules\n LoaderModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_LoaderModule\n\n\n\ncluster_LoaderModule_declarations\n\n\n\ncluster_LoaderModule_exports\n\n\n\ncluster_LoaderModule_providers\n\n\n\n\nLoaderComponent\n\nLoaderComponent\n\n\n\nLoaderModule\n\nLoaderModule\n\nLoaderModule -->\n\nLoaderComponent->LoaderModule\n\n\n\n\n\nLoaderComponent \n\nLoaderComponent \n\nLoaderComponent -->\n\nLoaderModule->LoaderComponent \n\n\n\n\n\nLoaderService\n\nLoaderService\n\nLoaderModule -->\n\nLoaderService->LoaderModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/loader/loader.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n LoaderComponent\n \n \n \n \n Providers\n \n \n LoaderService\n \n \n \n \n Exports\n \n \n LoaderComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { LoaderComponent } from './loader.component';\nimport { LoaderService } from './loader.service';\n\n@NgModule({\n declarations: [\n LoaderComponent,\n ],\n imports: [\n CommonModule,\n ],\n exports: [\n LoaderComponent,\n ],\n providers: [LoaderService]\n})\nexport class LoaderModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/LoaderService.html":{"url":"injectables/LoaderService.html","title":"injectable - LoaderService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n LoaderService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/loader/loader.service.ts\n \n\n \n Description\n \n \n The loader service registers promises \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n loader\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n use\n \n \n wait\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n use\n \n \n \n \n \n \n \nuse(loader: LoaderComponent)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/loader/loader.service.ts:11\n \n \n\n\n \n \n Sets a global loader that can be triggered without having the reference. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n loader\n \n LoaderComponent\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n wait\n \n \n \n \n \n \n \nwait(promise: Promise, loader: LoaderComponent)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/loader/loader.service.ts:16\n \n \n\n\n \n \n Tells the given loader to wait for the given promise. If no loader is given, the global loader is used (if set)\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n promise\n \n Promise\n \n \n \n No\n \n \n \n \n\n \n \n loader\n \n LoaderComponent\n \n \n \n No\n \n \n \n this.loader\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: LoaderComponent\n\n \n \n \n \n Type : LoaderComponent\n\n \n \n \n \n Defined in packages/ui/src/lib/loader/loader.service.ts:8\n \n \n\n \n \n The global loader that should be used if not loader is passed to wait. \n\n \n \n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { LoaderComponent } from './loader.component';\n\n/** The loader service registers promises */\n@Injectable()\nexport class LoaderService {\n /** The global loader that should be used if not loader is passed to wait. */\n loader: LoaderComponent;\n\n /** Sets a global loader that can be triggered without having the reference. */\n use(loader: LoaderComponent) {\n this.loader = loader;\n }\n\n /** Tells the given loader to wait for the given promise. If no loader is given, the global loader is used (if set)*/\n wait(promise: Promise, loader: LoaderComponent = this.loader) {\n if (!loader || !promise) {\n console.warn('cannot trigger loader: no promise or loader given');\n return;\n }\n return loader.wait(promise);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LocationMapComponent.html":{"url":"components/LocationMapComponent.html","title":"component - LocationMapComponent","body":"\n \n\n\n\n\n\n Components\n LocationMapComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/location/src/lib/location-map.component.ts\n\n\n \n Description\n \n \n Shows Google Maps Map \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-location-map\n \n\n \n styleUrls\n ./location-map.component.scss\n \n\n\n\n \n templateUrl\n ./location-map.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n markerDragEnd\n \n \n setValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n center\n \n \n readOnly\n \n \n value\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n changed\n \n \n \n \n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n center\n \n \n The desired map center \n\n \n Type : literal type\n\n \n \n Default value : { latitude: 48.8093253, longitude: 9.159388100000001 }\n \n \n \n \n \n Defined in packages/location/src/lib/location-map.component.ts:12\n \n \n \n \n \n \n \n \n \n readOnly\n \n \n If true, no markers can be changed or set \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/location/src/lib/location-map.component.ts:14\n \n \n \n \n \n \n \n \n \n value\n \n \n Form input component \n\n \n Type : literal type\n\n \n \n \n \n \n Defined in packages/location/src/lib/location-map.component.ts:18\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n changed\n \n \n Emits when the marker has been changed \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/location/src/lib/location-map.component.ts:16\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n markerDragEnd\n \n \n \n \n \n \n \nmarkerDragEnd(coords)\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-map.component.ts:31\n \n \n\n\n \n \n changes value on marker dragend \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n coords\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setValue\n \n \n \n \n \n \n \nsetValue(value)\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-map.component.ts:24\n \n \n\n\n \n \n sets the value cand changes the center \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n \n import { Component, EventEmitter, Input, Output } from '@angular/core';\n\n/** Shows Google Maps Map */\n@Component({\n selector: 'ec-location-map',\n templateUrl: './location-map.component.html',\n styleUrls: ['./location-map.component.scss']\n})\n\nexport class LocationMapComponent {\n /** The desired map center */\n @Input() center: { longitude: any; latitude: any; } = { latitude: 48.8093253, longitude: 9.159388100000001 };\n /** If true, no markers can be changed or set */\n @Input() readOnly: boolean;\n /** Emits when the marker has been changed */\n @Output() changed: EventEmitter = new EventEmitter();\n /** Form input component */\n @Input() value: {\n longitude: number,\n latitude: number\n };\n\n /** sets the value cand changes the center */\n setValue(value) {\n this.value = value;\n if (value) {\n this.center = value;\n }\n }\n /** changes value on marker dragend */\n markerDragEnd(coords) {\n if (!coords) {\n console.warn('no coords');\n return;\n }\n const position = { longitude: coords.lng, latitude: coords.lat };\n this.setValue(position);\n this.changed.emit(position);\n }\n}\n\n \n\n \n \n \n\n \n\n \n \n ./location-map.component.scss\n \n :host {\n height: 300px;\n}\nagm-map {\n height: 300px;\n}\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'LocationMapComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/LocationModule.html":{"url":"modules/LocationModule.html","title":"module - LocationModule","body":"\n \n\n\n\n\n Modules\n LocationModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_LocationModule\n\n\n\ncluster_LocationModule_declarations\n\n\n\ncluster_LocationModule_imports\n\n\n\ncluster_LocationModule_exports\n\n\n\ncluster_LocationModule_providers\n\n\n\n\nLocationMapComponent\n\nLocationMapComponent\n\n\n\nLocationModule\n\nLocationModule\n\nLocationModule -->\n\nLocationMapComponent->LocationModule\n\n\n\n\n\nLocationPickerComponent\n\nLocationPickerComponent\n\nLocationModule -->\n\nLocationPickerComponent->LocationModule\n\n\n\n\n\nLocationSearchComponent\n\nLocationSearchComponent\n\nLocationModule -->\n\nLocationSearchComponent->LocationModule\n\n\n\n\n\nLocationMapComponent \n\nLocationMapComponent \n\nLocationMapComponent -->\n\nLocationModule->LocationMapComponent \n\n\n\n\n\nLocationPickerComponent \n\nLocationPickerComponent \n\nLocationPickerComponent -->\n\nLocationModule->LocationPickerComponent \n\n\n\n\n\nLocationSearchComponent \n\nLocationSearchComponent \n\nLocationSearchComponent -->\n\nLocationModule->LocationSearchComponent \n\n\n\n\n\nUiModule\n\nUiModule\n\nLocationModule -->\n\nUiModule->LocationModule\n\n\n\n\n\nGeocodeService\n\nGeocodeService\n\nLocationModule -->\n\nGeocodeService->LocationModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/location/src/lib/location.module.ts\n \n\n\n \n Description\n \n \n This module holds all location/map related components and services \n\n \n\n\n \n \n \n Declarations\n \n \n LocationMapComponent\n \n \n LocationPickerComponent\n \n \n LocationSearchComponent\n \n \n \n \n EntryComponents\n \n \n LOCATION_COMPONENTS\n \n \n \n \n Providers\n \n \n GeocodeService\n \n \n \n \n Imports\n \n \n UiModule\n \n \n \n \n Exports\n \n \n LocationMapComponent\n \n \n LocationPickerComponent\n \n \n LocationSearchComponent\n \n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n forRoot\n \n \n \n \n \n \n \n \n forRoot(undefined)\n \n \n\n\n \n \n Defined in packages/location/src/lib/location.module.ts:34\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : ModuleWithProviders\n\n \n \n \n \n \n \n \n \n\n\n \n\n\n \n import { AgmCoreModule } from '@agm/core';\nimport { CommonModule } from '@angular/common';\nimport { NgModule, ModuleWithProviders } from '@angular/core';\nimport { ReactiveFormsModule } from '@angular/forms';\nimport { UiModule } from '@ec.components/ui';\nimport { GeocodeService } from './geocode.service';\nimport { LocationMapComponent } from './location-map.component';\nimport { LocationPickerComponent } from './location-picker.component';\nimport { LocationSearchComponent } from './location-search.component';\n/** The components of this module */\nconst LOCATION_COMPONENTS = [\n LocationMapComponent,\n LocationSearchComponent,\n LocationPickerComponent,\n];\n\nexport const locationModuleConfig = {\n imports: [\n CommonModule,\n ReactiveFormsModule,\n UiModule,\n AgmCoreModule.forRoot({\n apiKey: 'AIzaSyAdgEUE1Yxo1F-qb1MrO56u5KATpX9j8o4',\n libraries: ['places']\n })],\n exports: LOCATION_COMPONENTS,\n declarations: LOCATION_COMPONENTS,\n entryComponents: LOCATION_COMPONENTS,\n providers: [GeocodeService],\n};\n/** This module holds all location/map related components and services */\n@NgModule(locationModuleConfig)\nexport class LocationModule {\n static forRoot({ apiKey }): ModuleWithProviders {\n return {\n ngModule: LocationModule,\n providers: [\n {\n provide: 'googlemaps.apiKey',\n useValue: apiKey\n }\n ]\n };\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LocationPickerComponent.html":{"url":"components/LocationPickerComponent.html","title":"component - LocationPickerComponent","body":"\n \n\n\n\n\n\n Components\n LocationPickerComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/location/src/lib/location-picker.component.ts\n\n\n \n Description\n \n \n Component with map and autocomplete input to pick a location. Implements ControlValueAccessor \n\n \n\n \n Extends\n \n \n DefaultInputComponent\n \n\n \n Implements\n \n \n ControlValueAccessor\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => LocationPickerComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-location-picker\n \n\n \n styleUrls\n ./location-picker.component.scss\n \n\n\n\n \n templateUrl\n ./location-picker.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n geocodeService\n \n \n input\n \n \n map\n \n \n propagateChange\n \n \n search\n \n \n Public\n control\n \n \n Public\n field\n \n \n Public\n group\n \n \n Public\n item\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n setValue\n \n \n updateAddress\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n formControl\n \n \n placeholder\n \n \n showRawValue\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(geocodeService: GeocodeService)\n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:34\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n geocodeService\n \n \n GeocodeService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n formControl\n \n \n The form control that holds the location \n\n \n Type : FormControl\n\n \n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:24\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n Placeholder for search input \n\n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:28\n \n \n \n \n \n \n \n \n \n showRawValue\n \n \n If true, the raw location value will be visible\n\n \n Default value : true\n \n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:26\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-picker.component.ts:79\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-picker.component.ts:83\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n setValue\n \n \n \n \n \n \n \nsetValue(value, fromSearch?: boolean)\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-picker.component.ts:43\n \n \n\n\n \n \n Sets value of map and propagates change \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n \n \n \n No\n \n \n\n \n \n fromSearch\n \n boolean\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateAddress\n \n \n \n \n \n \n \nupdateAddress()\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-picker.component.ts:61\n \n \n\n\n \n \n updates the address string by reverse geo lookup \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: any)\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-picker.component.ts:55\n \n \n\n\n \n \n Writes value to editor on outside model change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n geocodeService\n \n \n \n \n \n \n \n geocodeService: GeocodeService\n\n \n \n \n \n Type : GeocodeService\n\n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n \n input\n \n \n \n \n \n \n \n input: InputComponent\n\n \n \n \n \n Type : InputComponent\n\n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:34\n \n \n\n \n \n Form input component \n\n \n \n\n \n \n \n \n \n \n \n \n \n map\n \n \n \n \n \n \n \n map: LocationMapComponent\n\n \n \n \n \n Type : LocationMapComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LocationMapComponent)\n \n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:30\n \n \n\n \n \n The nested LocationMapComponent \n\n \n \n\n \n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => { }\n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:77\n \n \n\n\n \n \n \n \n \n \n \n \n \n search\n \n \n \n \n \n \n \n search: LocationSearchComponent\n\n \n \n \n \n Type : LocationSearchComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LocationSearchComponent)\n \n \n \n \n \n Defined in packages/location/src/lib/location-picker.component.ts:32\n \n \n\n \n \n The nested LocationSearchComponent \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n control\n \n \n \n \n \n \n \n control: FormControl\n\n \n \n \n \n Type : FormControl\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:17\n \n \n\n \n \n The form control that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n field\n \n \n \n \n \n \n \n field: Field\n\n \n \n \n \n Type : Field\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:11\n \n \n\n \n \n The field for which the input is meant. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n group\n \n \n \n \n \n \n \n group: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:15\n \n \n\n \n \n The form group that is used \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n item\n \n \n \n \n \n \n \n item: Item\n\n \n \n \n \n Type : Item\n\n \n \n \n \n Inherited from DefaultInputComponent\n\n \n \n \n \n Defined in DefaultInputComponent:13\n \n \n\n \n \n The item that is targeted by the input \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, Input, ViewChild, forwardRef } from '@angular/core';\nimport { ControlValueAccessor, FormControl, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { DefaultInputComponent, InputComponent } from '@ec.components/ui';\nimport { GeocodeService } from './geocode.service';\nimport { LocationMapComponent } from './location-map.component';\nimport { LocationSearchComponent } from './location-search.component';\n\n/** Component with map and autocomplete input to pick a location. Implements ControlValueAccessor */\n@Component({\n selector: 'ec-location-picker',\n templateUrl: './location-picker.component.html',\n styleUrls: ['./location-picker.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => LocationPickerComponent),\n multi: true\n }\n ]\n})\n\nexport class LocationPickerComponent extends DefaultInputComponent implements ControlValueAccessor {\n /** The form control that holds the location */\n @Input() formControl: FormControl;\n /** If true, the raw location value will be visible*/\n @Input() showRawValue = true;\n /** Placeholder for search input */\n @Input() placeholder;\n /** The nested LocationMapComponent */\n @ViewChild(LocationMapComponent) map: LocationMapComponent;\n /** The nested LocationSearchComponent */\n @ViewChild(LocationSearchComponent) search: LocationSearchComponent;\n /** Form input component */\n input: InputComponent;\n\n constructor(\n public geocodeService: GeocodeService,\n ) {\n super();\n }\n\n /** Sets value of map and propagates change */\n setValue(value, fromSearch?: boolean) {\n if (!value) {\n this.search.clear();\n }\n this.map.setValue(value);\n if (!fromSearch) {\n this.updateAddress();\n }\n this.propagateChange(value);\n }\n\n /** Writes value to editor on outside model change. */\n writeValue(value: any) {\n this.map.setValue(value);\n this.updateAddress();\n }\n\n /** updates the address string by reverse geo lookup */\n updateAddress() {\n const value = this.map.value;\n if (!value) {\n this.search.searchInput.nativeElement.value = '';\n return;\n }\n this.geocodeService.getNearestAddress(value)\n .then(results => {\n if (results.length) {\n this.search.searchInput.nativeElement.value = results[0].formatted_address;\n } else {\n this.search.searchInput.nativeElement.value = '';\n }\n });\n }\n\n propagateChange = (_: any) => { };\n\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n\n registerOnTouched() { }\n}\n\n \n\n \n \n\n\n \n\n{{map.value | json}}\n \n\n \n \n ./location-picker.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{map.value | json}}'\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'LocationPickerComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LocationSearchComponent.html":{"url":"components/LocationSearchComponent.html","title":"component - LocationSearchComponent","body":"\n \n\n\n\n\n\n Components\n LocationSearchComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/location/src/lib/location-search.component.ts\n\n\n \n Description\n \n \n Google Maps Location Searchbar \n\n \n\n\n \n Implements\n \n \n AfterViewInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-location-search\n \n\n\n\n\n \n templateUrl\n ./location-search.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n searchInput\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n clear\n \n \n ngAfterViewInit\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n placeholder\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n changed\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(geocodeService: GeocodeService, ngZone: NgZone)\n \n \n \n \n Defined in packages/location/src/lib/location-search.component.ts:20\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n geocodeService\n \n \n GeocodeService\n \n \n \n No\n \n \n \n \n ngZone\n \n \n NgZone\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n placeholder\n \n \n Placeholder for input \n\n \n Default value : 'Search Location...'\n \n \n \n \n \n Defined in packages/location/src/lib/location-search.component.ts:16\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n changed\n \n \n emits when the coords have been changed (after selecting a match) \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/location/src/lib/location-search.component.ts:20\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n clear\n \n \n \n \n \n \n \nclear()\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-search.component.ts:28\n \n \n\n\n \n \n Clears the searchbar input value \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \n \nngAfterViewInit()\n \n \n\n\n \n \n Defined in packages/location/src/lib/location-search.component.ts:34\n \n \n\n\n \n \n subscribes to changes from the inputs autocomplete using geocodeService. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n searchInput\n \n \n \n \n \n \n \n searchInput: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('search')\n \n \n \n \n \n Defined in packages/location/src/lib/location-search.component.ts:18\n \n \n\n \n \n The search input element \n\n \n \n\n \n \n\n\n\n\n\n \n import {\n AfterViewInit, Component, ElementRef,\n EventEmitter, Input, NgZone, Output, ViewChild\n} from '@angular/core';\nimport { } from 'googlemaps';\nimport { GeocodeService } from './geocode.service';\n\n/** Google Maps Location Searchbar */\n@Component({\n selector: 'ec-location-search',\n templateUrl: './location-search.component.html'\n})\n\nexport class LocationSearchComponent implements AfterViewInit {\n /** Placeholder for input */\n @Input() placeholder = 'Search Location...';\n /** The search input element */\n @ViewChild('search') searchInput: ElementRef;\n /** emits when the coords have been changed (after selecting a match) */\n @Output() changed: EventEmitter = new EventEmitter();\n\n constructor(\n private geocodeService: GeocodeService,\n private ngZone: NgZone\n ) {\n }\n /** Clears the searchbar input value */\n clear() {\n if (this.searchInput) {\n this.searchInput.nativeElement.value = '';\n }\n }\n /** subscribes to changes from the inputs autocomplete using geocodeService. */\n ngAfterViewInit() {\n this.geocodeService.autocompleteAddress(this.searchInput.nativeElement)\n .subscribe(\n coords => {\n this.changed.emit(coords);\n }\n );\n }\n}\n\n \n\n \n \n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'LocationSearchComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LoginComponent.html":{"url":"components/LoginComponent.html","title":"component - LoginComponent","body":"\n \n\n\n\n\n\n Components\n LoginComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/data/src/lib/auth/login/login.component.ts\n\n\n \n Description\n \n \n Uses LoginFormComponent. Tries to login via AuthService. Shows notifications and nexts success Subject if login was successful.\nhttps://components.entrecode.de/auth/auth?e=1\n\n \n\n\n \n Implements\n \n \n WithLoader\n WithNotifications\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-login\n \n\n\n\n\n \n templateUrl\n login.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n auth\n \n \n loader\n \n \n notifications\n \n \n Public\n notificationService\n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n login\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n error\n \n \n success\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(auth: AuthService, notificationService: NotificationsService, symbol: SymbolService)\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:32\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n auth\n \n \n AuthService\n \n \n \n No\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n You can optionally specify PublicAPI instance. Defaults to SdkService#api. \n\n \n Type : PublicAPI\n\n \n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:24\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n error\n \n \n Subject that is nexted when an error occurs. For custom error reactions \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:28\n \n \n \n \n \n \n \n \n \n success\n \n \n Subject that is nexted when the login was successful. Meant to be used for redirecting to another page (or similar). \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:26\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin(undefined)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:39\n \n \n\n\n \n \n Communicates with the AuthService. Handles loader, notifications and success Subject. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n auth\n \n \n \n \n \n \n \n auth: AuthService\n\n \n \n \n \n Type : AuthService\n\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:34\n \n \n\n\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: \n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LoaderComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:30\n \n \n\n \n \n The included loader. \n\n \n \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:32\n \n \n\n \n \n Error notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n notificationService\n \n \n \n \n \n \n \n notificationService: NotificationsService\n\n \n \n \n \n Type : NotificationsService\n\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:35\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/data/src/lib/auth/login/login.component.ts:36\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';\nimport {\n SymbolService,\n WithNotifications,\n Notification,\n LoaderComponent,\n NotificationsService,\n WithLoader\n} from '@ec.components/ui';\nimport PublicAPI from 'ec.sdk/lib/PublicAPI';\nimport AccountResource from 'ec.sdk/lib/resources/accounts/AccountResource';\nimport { AuthService } from '../auth.service';\n\n/** Uses LoginFormComponent. Tries to login via AuthService. Shows notifications and nexts success Subject if login was successful.\n * https://components.entrecode.de/auth/auth?e=1\n*/\n@Component({\n selector: 'ec-login',\n templateUrl: 'login.component.html'\n})\n\nexport class LoginComponent implements WithLoader, WithNotifications {\n /** You can optionally specify PublicAPI instance. Defaults to SdkService#api. */\n @Input() api: PublicAPI;\n /** Subject that is nexted when the login was successful. Meant to be used for redirecting to another page (or similar). */\n @Output() success: EventEmitter = new EventEmitter();\n /** Subject that is nexted when an error occurs. For custom error reactions */\n @Output() error: EventEmitter = new EventEmitter();\n /** The included loader. */\n @ViewChild(LoaderComponent) loader;\n /** Error notifications */\n notifications: Notification[] = [];\n\n constructor(public auth: AuthService,\n public notificationService: NotificationsService,\n public symbol: SymbolService) {\n }\n /** Communicates with the AuthService. Handles loader, notifications and success Subject. */\n login({ email, password }) {\n const login = this.auth.login({ email, password }, this.api)\n .then((user) => {\n this.notificationService.emit({\n type: 'success',\n title: this.symbol.resolve('login.success'),\n hide: this.notifications\n });\n this.success.emit(user);\n })\n .catch((error) => {\n this.notificationService.emit({\n title: this.symbol.resolve('login.error'),\n error,\n sticky: true,\n hide: this.notifications,\n replace: this.notifications\n });\n this.error.next(error);\n console.log('could not login', error);\n });\n this.loader.wait(login);\n }\n}\n\n \n\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'LoginComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/LoginFormComponent.html":{"url":"components/LoginFormComponent.html","title":"component - LoginFormComponent","body":"\n \n\n\n\n\n\n Components\n LoginFormComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/utility/login-form/login-form.component.ts\n\n\n \n Description\n \n \n Login Form Component with validation. Fires success event with credentials on submit.\nhttps://components.entrecode.de/ui/login?e=1\n\n \n\n\n \n Implements\n \n \n OnInit\n WithLoader\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-login-form\n \n\n\n\n\n \n templateUrl\n ./login-form.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n errorMessage\n \n \n Public\n form\n \n \n notifications\n \n \n Protected\n submitted\n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n login\n \n \n ngOnInit\n \n \n onSubmit\n \n \n showError\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n buttonClasses\n \n \n buttonLabel\n \n \n emailLabel\n \n \n emailPlaceholder\n \n \n loader\n \n \n passwordLabel\n \n \n passwordPlaceholder\n \n \n showLabels\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n error\n \n \n success\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(fb: FormBuilder, symbol: SymbolService)\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:44\n \n \n\n \n \n Injects the FormBuilder\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n fb\n \n \n FormBuilder\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n buttonClasses\n \n \n Additional Button classes \n\n \n Default value : ''\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:42\n \n \n \n \n \n \n \n \n \n buttonLabel\n \n \n The Label of the submit button. Defaults to Login \n\n \n Default value : this.symbol.resolve('login.button.label')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:40\n \n \n \n \n \n \n \n \n \n emailLabel\n \n \n The Label of the Mail field \n\n \n Default value : this.symbol.resolve('login.email.label')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:32\n \n \n \n \n \n \n \n \n \n emailPlaceholder\n \n \n The Placeholder of the mail Field \n\n \n Default value : this.symbol.resolve('login.email.placeholder')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:34\n \n \n \n \n \n \n \n \n \n loader\n \n \n The loader that should be shown during login \n\n \n Type : LoaderComponent\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:28\n \n \n \n \n \n \n \n \n \n passwordLabel\n \n \n The Label of the password field. \n\n \n Default value : this.symbol.resolve('login.password.label')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:36\n \n \n \n \n \n \n \n \n \n passwordPlaceholder\n \n \n The Placeholder of the password field \n\n \n Default value : this.symbol.resolve('login.password.placeholder')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:38\n \n \n \n \n \n \n \n \n \n showLabels\n \n \n If true, email and password wont have labels \n\n \n Default value : true\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:30\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n error\n \n \n Event that emits when calling showError. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:26\n \n \n \n \n \n \n \n \n \n success\n \n \n Event that emits on succesful submit of the form, passing the login credentials. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:24\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin(value)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:67\n \n \n\n\n \n \n Method that is meant to be overwritten by a subclass to communicate with an API. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:51\n \n \n\n\n \n \n Initializes the form \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n onSubmit\n \n \n \n \n \n \n \nonSubmit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:72\n \n \n\n\n \n \n Is called when the form has been successfully submitted. Calls login and resets the form after. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n showError\n \n \n \n \n \n \n \nshowError(err)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:59\n \n \n\n\n \n \n Shows the given error in the form. Clears the password field and emits the error event. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n err\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n errorMessage\n \n \n \n \n \n \n \n errorMessage: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:22\n \n \n\n \n \n Contains possible error messages. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n form\n \n \n \n \n \n \n \n form: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:18\n \n \n\n \n \n The login's form group.\n\n \n \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:44\n \n \n\n \n \n Recent error Notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n Protected\n submitted\n \n \n \n \n \n \n \n submitted: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:20\n \n \n\n \n \n Flips true when submitted. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/login-form/login-form.component.ts:47\n \n \n\n\n \n \n\n\n\n\n \n Login Form\nThe Login Form UI component is meant to be extended by a component that communicates with an API.\n \n \n\n \n import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';\nimport { FormBuilder, FormGroup, Validators } from '@angular/forms';\nimport { Observable } from 'rxjs';\nimport { LoaderComponent } from '../../loader/loader.component';\nimport { WithLoader } from '../../loader/with-loader.interface';\nimport { SymbolService } from '../../symbol/symbol.service';\nimport { FieldValidators } from '../validators/field-validators';\n\n/** Login Form Component with validation. Fires success event with credentials on submit.\n * https://components.entrecode.de/ui/login?e=1\n*/\n@Component({\n selector: 'ec-login-form',\n templateUrl: './login-form.component.html',\n})\nexport class LoginFormComponent implements OnInit, WithLoader {\n /** The login's form group.*/\n public form: FormGroup;\n /** Flips true when submitted. */\n protected submitted: boolean;\n /** Contains possible error messages. */\n public errorMessage: string;\n /** Event that emits on succesful submit of the form, passing the login credentials. */\n @Output() success: EventEmitter = new EventEmitter();\n /** Event that emits when calling showError. */\n @Output() error: EventEmitter = new EventEmitter();\n /** The loader that should be shown during login */\n @Input() loader: LoaderComponent;\n /** If true, email and password wont have labels */\n @Input() showLabels = true;\n /** The Label of the Mail field */\n @Input() emailLabel = this.symbol.resolve('login.email.label');\n /** The Placeholder of the mail Field */\n @Input() emailPlaceholder = this.symbol.resolve('login.email.placeholder');\n /** The Label of the password field. */\n @Input() passwordLabel = this.symbol.resolve('login.password.label');\n /** The Placeholder of the password field */\n @Input() passwordPlaceholder = this.symbol.resolve('login.password.placeholder');\n /** The Label of the submit button. Defaults to Login */\n @Input() buttonLabel = this.symbol.resolve('login.button.label');\n /** Additional Button classes */\n @Input() buttonClasses = '';\n /** Recent error Notifications */\n notifications: Notification[];\n\n /** Injects the FormBuilder*/\n constructor(protected fb: FormBuilder, public symbol: SymbolService) {\n }\n\n /** Initializes the form */\n ngOnInit() {\n this.form = this.fb.group({\n email: ['', [Validators.required, FieldValidators.email]], // emailAvailable?\n password: ['', [Validators.required]],\n });\n }\n\n /** Shows the given error in the form. Clears the password field and emits the error event. */\n showError(err): any {\n this.errorMessage = err.message;\n this.form.get('password').setValue('');\n this.error.emit(err);\n Observable.throw(err);\n }\n\n /** Method that is meant to be overwritten by a subclass to communicate with an API. */\n login(value) { // meant to be overridden\n return Promise.resolve(value);\n }\n\n /** Is called when the form has been successfully submitted. Calls login and resets the form after. */\n onSubmit() {\n this.submitted = true;\n delete this.errorMessage;\n if (!this.form.valid) {\n return;\n }\n const login = this.login(this.form.value)\n .then((res) => {\n this.form.reset();\n this.success.emit(res);\n });\n if (this.loader) {\n this.loader.wait(login);\n }\n }\n}\n\n \n\n \n \n \n {{errorMessage}}\n \n \n {{emailLabel}}\n \n \n \n \n Passwort\n \n \n \n \n {{buttonLabel}}\n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{errorMessage}} {{emailLabel}} Passwort {{buttonLabel}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'LoginFormComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/MaxItemsPipe.html":{"url":"pipes/MaxItemsPipe.html","title":"pipe - MaxItemsPipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n MaxItemsPipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/form/max-items.pipe.ts\n \n\n \n Description\n \n \n This pipe slices an array after the nth item \n\n \n\n\n \n Metadata\n \n \n \n Name\n maxItems\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(array: Array, maxItems: number, start: number)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/max-items.pipe.ts:8\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n array\n \n Array\n \n \n \n No\n \n \n \n []\n \n\n \n \n maxItems\n \n number\n \n \n \n No\n \n \n \n \n\n \n \n start\n \n number\n \n \n \n No\n \n \n \n 0\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n\n \n\n\n \n import { Pipe, PipeTransform } from '@angular/core';\n/** This pipe slices an array after the nth item */\n@Pipe({\n name: 'maxItems'\n})\n\nexport class MaxItemsPipe implements PipeTransform {\n transform(array: Array = [], maxItems: number, start: number = 0): any {\n return array.slice(start, maxItems);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/MediumEditorComponent.html":{"url":"components/MediumEditorComponent.html","title":"component - MediumEditorComponent","body":"\n \n\n\n\n\n\n Components\n MediumEditorComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/medium-editor/src/lib/medium-editor.component.ts\n\n\n \n Description\n \n \n Wraps medium-editor to a reactive form component.\nhttps://components.entrecode.de/misc/medium-editor?e=1\n\n \n\n\n \n Implements\n \n \n OnInit\n OnDestroy\n ControlValueAccessor\n \n\n\n\n Metadata\n \n \n\n\n \n encapsulation\n ViewEncapsulation.None\n \n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-medium-editor\n \n\n \n styleUrls\n ./medium-editor.component.scss\n \n\n\n\n \n templateUrl\n medium-editor.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n container\n \n \n Private\n editor\n \n \n propagateChange\n \n \n Public\n ready\n \n \n value\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnDestroy\n \n \n ngOnInit\n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n model\n \n \n options\n \n \n placeholder\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n modelChange\n \n \n \n \n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n model\n \n \n data model \n\n \n Type : any\n\n \n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:35\n \n \n \n \n \n \n \n \n \n options\n \n \n MediumEditor options \n\n \n Type : any\n\n \n \n Default value : {}\n \n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:37\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n empty placeholder \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:39\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n modelChange\n \n \n change emitter \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:41\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:63\n \n \n\n\n \n \n destroys editor \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:52\n \n \n\n\n \n \n inits editor \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:78\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:82\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: any)\n \n \n\n\n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:68\n \n \n\n\n \n \n Writes value to editor on outside model change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n container\n \n \n \n \n \n \n \n container: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('container')\n \n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:43\n \n \n\n \n \n container element \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n editor\n \n \n \n \n \n \n \n editor: MediumEditor\n\n \n \n \n \n Type : MediumEditor\n\n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:47\n \n \n\n \n \n editor instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => {\n }\n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:75\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n ready\n \n \n \n \n \n \n \n ready: Promise\n\n \n \n \n \n Type : Promise\n\n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:49\n \n \n\n \n \n ready promise \n\n \n \n\n \n \n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n value: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/medium-editor/src/lib/medium-editor.component.ts:45\n \n \n\n \n \n current value \n\n \n \n\n \n \n\n\n\n\n\n \n import {\n Component,\n ElementRef,\n EventEmitter,\n forwardRef,\n Input,\n OnDestroy,\n OnInit,\n Output,\n ViewChild,\n ViewEncapsulation\n} from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\n\nimport * as MediumEditor from 'medium-editor/dist/js/medium-editor';\n\n/** Wraps medium-editor to a reactive form component.\n * https://components.entrecode.de/misc/medium-editor?e=1\n*/\n@Component({\n selector: 'ec-medium-editor',\n styleUrls: ['./medium-editor.component.scss'],\n templateUrl: 'medium-editor.component.html',\n encapsulation: ViewEncapsulation.None,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => MediumEditorComponent),\n multi: true\n }\n ]\n})\nexport class MediumEditorComponent implements OnInit, OnDestroy, ControlValueAccessor {\n /** data model */\n @Input() model: any;\n /** MediumEditor [options](https://github.com/yabwe/medium-editor#mediumeditor-options) */\n @Input() options: any = {};\n /** empty placeholder */\n @Input() placeholder: string;\n /** change emitter */\n @Output() modelChange: EventEmitter = new EventEmitter();\n /** container element */\n @ViewChild('container') container: ElementRef;\n /** current value */\n value: any;\n /** editor instance */\n private editor: MediumEditor;\n /** ready promise */\n public ready: Promise;\n\n /** inits editor */\n ngOnInit() {\n this.container.nativeElement.innerHTML = this.model || '';\n this.options.placeholder = this.placeholder;\n this.editor = new MediumEditor(this.container.nativeElement, this.options);\n this.editor.subscribe('editableInput', () => {\n this.value = this.editor.getContent();\n this.propagateChange(this.value);\n });\n this.ready = Promise.resolve(this.editor);\n }\n /** destroys editor */\n ngOnDestroy(): void {\n this.editor.destroy();\n }\n\n /** Writes value to editor on outside model change. */\n writeValue(value: any) {\n this.value = value || '';\n this.ready.then((editor) => {\n editor.setContent(this.value);\n });\n }\n\n propagateChange = (_: any) => {\n }\n\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n\n registerOnTouched() {\n }\n}\n\n \n\n \n \n \n\n \n \n ./medium-editor.component.scss\n \n @import '~medium-editor/src/sass/medium-editor.scss';\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'MediumEditorComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/MediumEditorModule.html":{"url":"modules/MediumEditorModule.html","title":"module - MediumEditorModule","body":"\n \n\n\n\n\n Modules\n MediumEditorModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_MediumEditorModule\n\n\n\ncluster_MediumEditorModule_declarations\n\n\n\ncluster_MediumEditorModule_MediumEditorComponent_providers\n\n\n\ncluster_MediumEditorModule_exports\n\n\n\n\nMediumEditorComponent\n\nMediumEditorComponent\n\n\n\nMediumEditorModule\n\nMediumEditorModule\n\nMediumEditorModule -->\n\nMediumEditorComponent->MediumEditorModule\n\n\n\n\n\nMediumEditorComponent \n\nMediumEditorComponent \n\nMediumEditorComponent -->\n\nMediumEditorModule->MediumEditorComponent \n\n\n\n MediumEditorComponent), multi: true\n} -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}\n\n MediumEditorComponent), multi: true\n}->MediumEditorComponent -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}->MediumEditorComponent\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/medium-editor/src/lib/medium-editor.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n MediumEditorComponent\n \n \n \n \n Exports\n \n \n MediumEditorComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { MediumEditorComponent } from './medium-editor.component';\n\nexport const mediumModuleConfig = {\n imports: [CommonModule],\n exports: [MediumEditorComponent],\n declarations: [MediumEditorComponent],\n providers: [],\n};\n\n@NgModule(mediumModuleConfig)\nexport class MediumEditorModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/MenuComponent.html":{"url":"components/MenuComponent.html","title":"component - MenuComponent","body":"\n \n\n\n\n\n\n Components\n MenuComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/utility/menu/menu.component.ts\n\n\n \n Description\n \n \n Renders a nested menu from a given routes Array (the same you would use for angular routing). \n\n \n\n\n \n Implements\n \n \n OnChanges\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-menu,[ec-menu]\n \n\n \n styleUrls\n ./menu.component.scss\n \n\n\n\n \n templateUrl\n ./menu.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n hover\n \n \n Private\n timeout\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n cancelTimeout\n \n \n getColor\n \n \n getItemColor\n \n \n getLevel\n \n \n getPath\n \n \n hasActivePath\n \n \n hoverItem\n \n \n hoverOut\n \n \n isActive\n \n \n isSelected\n \n \n ngOnChanges\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n colors\n \n \n hoverDelay\n \n \n parent\n \n \n route\n \n \n routes\n \n \n title\n \n \n vanishDelay\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(router: Router)\n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:31\n \n \n\n \n \n Injects the Router. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n colors\n \n \n Color map of submenus. \n\n \n Type : string[]\n\n \n \n Default value : ['#29A9E1', '#00DBF0', '#4A5EA9', '#29A9E1', '#C9C8D4']\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:23\n \n \n \n \n \n \n \n \n \n hoverDelay\n \n \n Delay before menu is shown on mouseover. \n\n \n Default value : 50\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:27\n \n \n \n \n \n \n \n \n \n parent\n \n \n Parent Menu (when nested) \n\n \n Type : MenuComponent\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:21\n \n \n \n \n \n \n \n \n \n route\n \n \n The currently active route \n\n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:17\n \n \n \n \n \n \n \n \n \n routes\n \n \n Routes that should be used for the menu. You can use your angular router routes here. \n\n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:15\n \n \n \n \n \n \n \n \n \n title\n \n \n The title of the menu \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:19\n \n \n \n \n \n \n \n \n \n vanishDelay\n \n \n Delay before menu is hidden after mouseout. \n\n \n Default value : 500\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:25\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n cancelTimeout\n \n \n \n \n \n \n \ncancelTimeout()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:84\n \n \n\n\n \n \n Cancels the current timeout \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n getColor\n \n \n \n \n \n \n \ngetColor(level: number)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:64\n \n \n\n\n \n \n Returns the color for the current level. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n level\n \n number\n \n \n \n No\n \n \n \n 0\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getItemColor\n \n \n \n \n \n \n \ngetItemColor(item)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:69\n \n \n\n\n \n \n Returns the color for the given item. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getLevel\n \n \n \n \n \n \n \ngetLevel(level: number)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:59\n \n \n\n\n \n \n Returns the level of nesting (parent=0). \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n level\n \n number\n \n \n \n No\n \n \n \n 0\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPath\n \n \n \n \n \n \n \ngetPath(item, path: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:98\n \n \n\n\n \n \n Returns the full path to an item. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n item\n \n \n \n \n No\n \n \n \n \n\n \n \n path\n \n string\n \n \n \n No\n \n \n \n ''\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n hasActivePath\n \n \n \n \n \n \n \nhasActivePath(item, parent)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:48\n \n \n\n\n \n \n Returns true if the item or a child of it is active. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n item\n \n \n No\n \n \n \n \n\n \n \n parent\n \n \n No\n \n \n \n this\n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n hoverItem\n \n \n \n \n \n \n \nhoverItem(item)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:74\n \n \n\n\n \n \n Hovers the item after hoverDelay timeout. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n hoverOut\n \n \n \n \n \n \n \nhoverOut()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:91\n \n \n\n\n \n \n Hovers out after vanishDelay \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n isActive\n \n \n \n \n \n \n \nisActive(path)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:106\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n path\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isSelected\n \n \n \n \n \n \n \nisSelected(item)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:53\n \n \n\n\n \n \n Returns true if the item is selected. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:38\n \n \n\n\n \n \n updates the routes on change of route \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n hover\n \n \n \n \n \n \n \n hover: \n\n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:29\n \n \n\n \n \n The currently hovered Route\n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n timeout\n \n \n \n \n \n \n \n timeout: \n\n \n \n \n \n Defined in packages/ui/src/lib/utility/menu/menu.component.ts:31\n \n \n\n \n \n The timeout for delay handling \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, Input, OnChanges } from '@angular/core';\nimport { Router } from '@angular/router'; // TODO cannot import Route...\n\n/** Renders a nested menu from a given routes Array (the same you would use for angular routing). */\n@Component({\n selector: 'ec-menu,[ec-menu]',\n templateUrl: './menu.component.html',\n styleUrls: ['./menu.component.scss']\n})\nexport class MenuComponent implements OnChanges {\n /** Routes that should be used for the menu. You can use your angular router routes here. */\n @Input() routes; // : Route[];\n /** The currently active route */\n @Input() route; // : Route;\n /** The title of the menu */\n @Input() title: string;\n /** Parent Menu (when nested) */\n @Input() parent: MenuComponent;\n /** Color map of submenus. */\n @Input() colors: string[] = ['#29A9E1', '#00DBF0', '#4A5EA9', '#29A9E1', '#C9C8D4'];\n /** Delay before menu is hidden after mouseout. */\n @Input() vanishDelay = 500;\n /** Delay before menu is shown on mouseover. */\n @Input() hoverDelay = 50;\n /** The currently hovered Route*/\n public hover; // : Route;\n /** The timeout for delay handling */\n private timeout;\n\n /** Injects the Router. */\n constructor(private router: Router) {\n }\n\n /** updates the routes on change of route */\n ngOnChanges() {\n if (this.route) {\n this.routes = this.route.children\n .filter(route => route.path && route.path.indexOf(':') === -1)\n .filter(route => !route.data || !route.data.hidden);\n console.log('routes', this.routes);\n }\n }\n\n /** Returns true if the item or a child of it is active. */\n hasActivePath(item, parent = this) { // this.parent\n return parent.getPath(item) === this.router.url;\n }\n\n /** Returns true if the item is selected. */\n isSelected(item) {\n const path = this.getPath(item);\n return path !== '/' && (path === this.router.url || this.router.url.indexOf(path) === 0);\n }\n\n /** Returns the level of nesting (parent=0). */\n getLevel(level = 0) {\n return this.parent ? this.parent.getLevel(++level) : level;\n }\n\n /** Returns the color for the current level. */\n getColor(level = 0) {\n return this.colors[this.getLevel(level) % this.colors.length];\n }\n\n /** Returns the color for the given item. */\n getItemColor(item) {\n return this.isActive(item) ? this.getColor(1) : 'initial';\n }\n\n /** Hovers the item after hoverDelay timeout. */\n hoverItem(item) { // : Route\n if (!this.hover) {\n this.hover = item;\n }\n this.timeout = setTimeout(() => {\n this.hover = item;\n }, this.hoverDelay);\n }\n\n /** Cancels the current timeout */\n cancelTimeout() {\n if (this.timeout) {\n clearTimeout(this.timeout);\n }\n }\n\n /** Hovers out after vanishDelay */\n hoverOut() {\n this.timeout = setTimeout(() => {\n delete this.hover;\n }, this.vanishDelay);\n }\n\n /** Returns the full path to an item. */\n getPath(item, path: string = '') {\n path = '/' + item.path + path;\n if (!this.parent) {\n return path;\n }\n return this.parent.getPath(this.route, path);\n }\n\n isActive(path) {\n return path !== '/' && (path === this.router.url || this.router.url.indexOf(path) === 0);\n }\n}\n\n \n\n \n \n \n \n \n {{item.data?.title || item.path}}\n \n \n \n {{child.data?.title || child.path}}\n \n \n \n \n\n \n\n \n \n ./menu.component.scss\n \n li.is-active>a {\n text-decoration: underline;\n}\n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{item.data?.title || item.path}} {{child.data?.title || child.path}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'MenuComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ModalComponent.html":{"url":"components/ModalComponent.html","title":"component - ModalComponent","body":"\n \n\n\n\n\n\n Components\n ModalComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/modal/modal.component.ts\n\n\n \n Description\n \n \n A modal is an extension of a pop. It adds different style options that apply x.ui markup.\nhttps://components.entrecode.de/ui/modal?e=1\nhttps://medium.com/claritydesignsystem/ng-content-the-hidden-docs-96a29d70d11b\n\n \n\n \n Extends\n \n \n PopComponent\n \n\n \n Implements\n \n \n OnInit\n OnChanges\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-modal\n \n\n\n\n\n \n templateUrl\n ./modal.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n Public\n classes\n \n \n Public\n elementRef\n \n \n Public\n popService\n \n \n templates\n \n \n types\n \n \n activated\n \n \n clickEvent\n \n \n Public\n elementRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n initMode\n \n \n ngOnChanges\n \n \n ngOnInit\n \n \n Public\n hide\n \n \n isOutside\n \n \n Public\n show\n \n \n Public\n toggle\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n animation\n \n \n backdrop\n \n \n body\n \n \n columns\n \n \n footer\n \n \n header\n \n \n mode\n \n \n active\n \n \n hideOnClickOutside\n \n \n type\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n toggle\n \n \n \n \n\n\n \n \n HostListeners\n \n \n \n \n \n \n document:click\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(popService: PopService, elementRef: ElementRef, cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:43\n \n \n\n \n \n Constructs the modal, injects pop service \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n popService\n \n \n PopService\n \n \n \n No\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n animation\n \n \n Sets data-animate. \n\n \n Default value : 'fadeIn 4'\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:31\n \n \n \n \n \n \n \n \n \n backdrop\n \n \n If true, the modal will have a dark backdrop that disables clicking outside. \n\n \n Default value : false\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:29\n \n \n \n \n \n \n \n \n \n body\n \n \n Body Template \n\n \n Type : TemplateRef\n\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:35\n \n \n \n \n \n \n \n \n \n columns\n \n \n Sets data-col. If specified, the width of the modal is fixed to the given value (1-12). \n\n \n Type : number | string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:41\n \n \n \n \n \n \n \n \n \n footer\n \n \n Footer Template \n\n \n Type : TemplateRef\n\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:37\n \n \n \n \n \n \n \n \n \n header\n \n \n Header Template \n\n \n Type : TemplateRef\n\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:33\n \n \n \n \n \n \n \n \n \n mode\n \n \n This property sets the mode + additional options.\nIt expects the type at first and non mandatory options like opens-left afterwards. \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:27\n \n \n \n \n \n \n \n \n \n active\n \n \n If true, .ec-pop is part of the DOM (*ngIf) + .active is set on .ec-pop-container. \n\n \n Type : boolean\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:29\n \n \n \n \n \n \n \n \n \n hideOnClickOutside\n \n \n If set to true, the pop will hide when a click happens outside the pop. \n\n \n Default value : false\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:35\n \n \n \n \n \n \n \n \n \n type\n \n \n The used type on the host element \n\n \n Type : string\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:33\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n toggle\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:37\n \n \n \n \n\n\n \n HostListeners \n \n \n \n \n \n \n document:click\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndocument:click($event)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:42\n \n \n\n\n \n \n Listens for document:click and hides \n\n\n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n initMode\n \n \n \n \n \n \n \ninitMode()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:52\n \n \n\n\n \n \n Is called on init and change. Parses mode input and throws warning if type is not supported. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:76\n \n \n\n\n \n \n calls initMode \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:72\n \n \n\n\n \n \n calls initMode \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n hide\n \n \n \n \n \n \n \n \n hide()\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:90\n \n \n\n\n \n \n Hides the pop. Sets active false and removes pop from popService.stack \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n isOutside\n \n \n \n \n \n \n \nisOutside(element)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:61\n \n \n\n\n \n \n yields true if the given element is outside the pop / or is the wrapper element itself (the backdrop) \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n element\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n show\n \n \n \n \n \n \n \n \n show(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:77\n \n \n\n\n \n \n Shows the pop. Sets active true and adds pop to popService.stack \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n toggle\n \n \n \n \n \n \n \n \n toggle(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:67\n \n \n\n\n \n \n Shows if not active, hides if active. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:48\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n classes\n \n \n \n \n \n \n \n classes: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:43\n \n \n\n \n \n Will contain the classes (mode - type) \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:47\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n popService\n \n \n \n \n \n \n \n popService: PopService\n\n \n \n \n \n Type : PopService\n\n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:46\n \n \n\n\n \n \n \n \n \n \n \n \n \n templates\n \n \n \n \n \n \n \n templates: TemplateRef[]\n\n \n \n \n \n Type : TemplateRef[]\n\n \n \n \n \n Decorators : \n \n \n @ContentChildren(TemplateRef)\n \n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:39\n \n \n\n \n \n Templates for header body and footer \n\n \n \n\n \n \n \n \n \n \n \n \n \n types\n \n \n \n \n \n \n \n types: []\n\n \n \n \n \n Type : []\n\n \n \n \n \n Default value : [\n 'dialog',\n 'overlay',\n 'deck',\n 'toast',\n 'snackbar'\n ]\n \n \n \n \n Defined in packages/ui/src/lib/modal/modal.component.ts:18\n \n \n\n \n \n all possible modes that can be set \n\n \n \n\n \n \n \n \n \n \n \n \n \n activated\n \n \n \n \n \n \n \n activated: \n\n \n \n \n \n Default value : false\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:31\n \n \n\n \n \n Flip and stays true after first show \n\n \n \n\n \n \n \n \n \n \n \n \n \n clickEvent\n \n \n \n \n \n \n \n clickEvent: \n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:39\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:55\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Input, OnInit, ElementRef, OnChanges, TemplateRef, ContentChildren, ChangeDetectorRef } from '@angular/core';\nimport { PopComponent } from '../pop/pop.component';\nimport { PopService } from '../pop/pop.service';\n\n/**\n * A modal is an extension of a pop. It adds different style options that apply x.ui markup.\n * https://components.entrecode.de/ui/modal?e=1\n *\n * https://medium.com/claritydesignsystem/ng-content-the-hidden-docs-96a29d70d11b\n */\n@Component({\n selector: 'ec-modal',\n templateUrl: './modal.component.html'\n})\n\nexport class ModalComponent extends PopComponent implements OnInit, OnChanges {\n /** all possible modes that can be set */\n types = [\n 'dialog',\n 'overlay',\n 'deck',\n 'toast',\n 'snackbar'\n ];\n /** This property sets the mode + additional options.\n * It expects the type at first and non mandatory options like opens-left afterwards. */\n @Input() mode: string;\n /** If true, the modal will have a dark backdrop that disables clicking outside. */\n @Input() backdrop = false;\n /** Sets data-animate. */\n @Input() animation = 'fadeIn 4';\n /** Header Template */\n @Input() header: TemplateRef;\n /** Body Template */\n @Input() body: TemplateRef;\n /** Footer Template */\n @Input() footer: TemplateRef;\n /** Templates for header body and footer */\n @ContentChildren(TemplateRef) templates: TemplateRef[];\n /** Sets data-col. If specified, the width of the modal is fixed to the given value (1-12). */\n @Input() columns: number | string;\n /** Will contain the classes (mode - type) */\n public classes: string;\n /** Constructs the modal, injects pop service */\n constructor(\n public popService: PopService,\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef) {\n super(popService, elementRef, cdr);\n }\n /** Is called on init and change. Parses mode input and throws warning if type is not supported. */\n initMode() {\n this.mode = this.mode || 'dialog';\n this.type = this.mode.split(' ')[0];\n if (!this.types.includes(this.type)) {\n const fallback = this.mode.replace(this.type, 'dialog');\n console.warn(`ec-modal does not support the mode \"${this.type}\".\n Use one of ${this.types.join(', ')}.\n Falling back to ${fallback}.`);\n this.type = fallback;\n }\n this.classes = this.mode.split(' ').splice(1).join(' ');\n this.types.forEach(type => {\n this.elementRef.nativeElement.classList.remove(`${type}-wrapper`);\n });\n if (this.backdrop) {\n this.elementRef.nativeElement.classList.add(`${this.type}-wrapper`);\n }\n }\n\n /** calls initMode */\n ngOnInit() {\n this.initMode();\n }\n /** calls initMode */\n ngOnChanges() {\n this.initMode();\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ModalComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ModelConfig.html":{"url":"interfaces/ModelConfig.html","title":"interface - ModelConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n ModelConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/model-config/model-config.interface.ts\n \n\n \n Description\n \n \n This is the interface for a model's configuration.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n fields\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n fields\n \n \n \n \n fields: FieldConfig\n\n \n \n\n\n \n \n Type : FieldConfig\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Array of FieldConfigProperty Objects. Sets up the behaviour of each field. \n\n \n \n \n \n \n \n\n\n \n import { FieldConfig } from '@ec.components/core';\n\n/** This is the interface for a model's configuration.*/\nexport interface ModelConfig {\n /** Array of FieldConfigProperty Objects. Sets up the behaviour of each field. */\n fields?: FieldConfig;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ModelConfigService.html":{"url":"injectables/ModelConfigService.html","title":"injectable - ModelConfigService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n ModelConfigService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/model-config/model-config.service.ts\n \n\n \n Description\n \n \n The main class for configuring the behaviour of a model.\nBy default, everything is auto generated from the model's schema but can be overriden via the\nset method. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n omittedFields\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n generateConfig\n \n \n get\n \n \n getFieldConfig\n \n \n getLightModel\n \n \n getMinLevel\n \n \n getSystemFields\n \n \n set\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(crud: CrudService, sdk: SdkService, typeConfig: TypeConfigService, symbol: SymbolService)\n \n \n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:23\n \n \n\n \n \n Injects CrudService and SdkService. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n crud\n \n \n CrudService\n \n \n \n No\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n typeConfig\n \n \n TypeConfigService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n generateConfig\n \n \n \n \n \n \n \ngenerateConfig(model: string, customFieldConfig?: FieldConfig)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:191\n \n \n\n\n \n \n Generates a CrudConfig for the given model.\nMerges three configurations into one:\n\ndefault field config, obtained by getFieldConfig\nglobal model config (if any) configured via with set\ncustomFieldConfig: any custom field config that is merged on top of the other two.\nThis enables the developer to either customize at a global scale to target all lists/forms,\nor just specific components. \n\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n customFieldConfig\n \n FieldConfig\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : Promise>\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n get\n \n \n \n \n \n \n \nget(property: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:39\n \n \n\n\n \n \n Retrieves the given model config.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n Example :\n \n * ModelConfig.get('muffin'); //returns muffin config;\n *\n \n \n \n Returns : CrudConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getFieldConfig\n \n \n \n \n \n \n \ngetFieldConfig(model: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:121\n \n \n\n\n \n \n Returns the default field config for the given model.\nUtilizes PublicAPI#getFieldConfig + TypeConfigService#get.\nThis config is meant to deliver the default behaviour when nothing else is configured. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getLightModel\n \n \n \n \n \n \n \ngetLightModel(model)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:220\n \n \n\n\n \n \n Returns light model information \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n model\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getMinLevel\n \n \n \n \n \n \n \ngetMinLevel(model: string, customFieldConfig?: FieldConfig)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:100\n \n \n\n\n \n \n Parses config for fields that require leveled entries \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n model\n \n string\n \n \n \n No\n \n \n\n \n \n customFieldConfig\n \n FieldConfig\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getSystemFields\n \n \n \n \n \n \n \ngetSystemFields()\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:59\n \n \n\n\n \n \n Returns the field config for all system fields \n\n\n \n Returns : { id: { label: any; view: string; form: boolean; immutable: boolean; hideInList: boolean; }; _cre...\n\n \n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \n \nset(property: string, config: CrudConfig)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:54\n \n \n\n\n \n \n Sets the given model config.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n property\n \n string\n \n \n \n No\n \n \n\n \n \n config\n \n CrudConfig\n \n \n \n No\n \n \n\n \n \n \n \n \n Example :\n \n * ModelConfig.set('muffin', {\n * fields: {\n * title: {\n * label: 'Muffin Titel'\n * }\n * });\n *\n \n \n \n Returns : CrudConfig\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n omittedFields\n \n \n \n \n \n \n \n omittedFields: Array\n\n \n \n \n \n Type : Array\n\n \n \n \n \n Default value : [\n 'id',\n 'private',\n 'created',\n 'creator',\n 'modified'\n ]\n \n \n \n \n Defined in packages/data/src/lib/model-config/model-config.service.ts:17\n \n \n\n \n \n Array of property names that are omitted by default. \n\n \n \n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Config, FieldConfig, Item } from '@ec.components/core';\nimport { SymbolService } from '@ec.components/ui';\nimport { fields } from 'ec.sdk/lib/PublicAPI';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\nimport { CrudConfig } from '../crud/crud-config.interface';\nimport { CrudService } from '../crud/crud.service';\nimport { SdkService } from '../sdk/sdk.service';\nimport { TypeConfigService } from './type-config.service';\n\n/** The main class for configuring the behaviour of a model.\n * By default, everything is auto generated from the model's schema but can be overriden via the\n * set method. */\n@Injectable()\nexport class ModelConfigService extends Config {\n /** Array of property names that are omitted by default. */\n omittedFields: Array = [\n 'id',\n 'private',\n 'created',\n 'creator',\n 'modified'\n ];\n\n /** Injects CrudService and SdkService. */\n constructor(private crud: CrudService,\n private sdk: SdkService,\n private typeConfig: TypeConfigService,\n private symbol: SymbolService) {\n super();\n }\n\n /** Retrieves the given model config.\n * @example\n * ```typescript\n * ModelConfig.get('muffin'); //returns muffin config;\n * ```\n * */\n get(property: string): CrudConfig {\n return this.configure('model', property);\n }\n\n /** Sets the given model config.\n * @example\n * ```typescript\n * ModelConfig.set('muffin', {\n * fields: {\n * title: {\n * label: 'Muffin Titel'\n * }\n * });\n * ```\n * */\n set(property: string, config: CrudConfig): CrudConfig {\n return this.configure('model', property, config);\n }\n\n /** Returns the field config for all system fields */\n getSystemFields() {\n return {\n id: {\n label: this.symbol.resolve('field.label.id'),\n view: 'string',\n form: false,\n immutable: true,\n hideInList: true\n },\n _created: {\n label: this.symbol.resolve('field.label.created'),\n display: this.typeConfig.displayDate(),\n group: this.typeConfig.groupDate(),\n form: false,\n immutable: true,\n sortable: true,\n hideInList: true,\n rawFilter: true\n },\n _modified: {\n label: this.symbol.resolve('field.label.modified'),\n display: this.typeConfig.displayDate(),\n group: this.typeConfig.groupDate(),\n form: false,\n immutable: true,\n sortable: true,\n hideInList: false,\n rawFilter: true\n },\n _creator: {\n label: this.symbol.resolve('field.label.creator'),\n display: this.typeConfig.displayAccount(),\n view: 'account',\n form: false,\n immutable: true,\n hideInList: true\n }\n };\n }\n\n /** Parses config for fields that require leveled entries */\n getMinLevel(model: string, customFieldConfig?: FieldConfig) {\n return this.generateConfig(model, customFieldConfig)\n .then((modelConfig) => {\n const fieldConfig = modelConfig.fields;\n return Object.keys(fieldConfig)\n .filter(field => !!fieldConfig[field].type)\n .map(field => {\n const inputView = fieldConfig[field].inputView;\n const views = this.typeConfig.get(fieldConfig[field].type).inputViews || [];\n if (!inputView || !views) {\n return 1;\n }\n const match = views.find(v => v.name === inputView);\n return match ? match.levels || 1 : 1;\n }).reduce((max, lvl) => Math.max(max, lvl), 1);\n });\n }\n\n /** Returns the default field config for the given model.\n * Utilizes PublicAPI#getFieldConfig + TypeConfigService#get.\n * This config is meant to deliver the default behaviour when nothing else is configured. */\n getFieldConfig(model: string): Promise {\n return this.sdk.api.getFieldConfig(model).then((fieldConfig: fields) => {\n const merged = {};\n Object.assign(merged, this.getSystemFields());\n Object.keys(fieldConfig).map(property => fieldConfig[property])\n .forEach(({\n config,\n type,\n title,\n unique,\n mutable,\n readOnly,\n required,\n validation,\n description,\n localizable\n }) => {\n /* type = type as string; */\n config = config || {};\n if (type.includes('asset')) {\n type = type.replace('a', 'dmA');\n }\n // parse field config\n const { hideInList,\n hideInForm,\n hideOnCreate,\n hideOnEdit,\n placeholder,\n inputView,\n label,\n classes,\n columns = 12\n } = config;\n const typeConfig = this.typeConfig.get(type);\n // assign default values + merge customFieldConfig if given\n merged[title] = Object.assign({\n property: title,\n label: label || title + (type === 'datetime' ? ` ${this.symbol.resolve('datetime.local')}` : ''),\n placeholder,\n description,\n validation,\n relation: validation,\n immutable: !mutable,\n readOnly,\n hideInList,\n hideInForm,\n create: !hideOnCreate,\n edit: !hideOnEdit,\n classes,\n unique,\n required,\n columns,\n /* display: ((value) => value), */\n localizable,\n }, typeConfig, {\n placeholder: placeholder || typeConfig.placeholder,\n inputView: inputView || typeConfig.inputView || type\n });\n });\n return merged;\n });\n }\n\n /** Generates a CrudConfig for the given model.\n * Merges three configurations into one:\n * - default field config, obtained by getFieldConfig\n * - global model config (if any) configured via with set\n * - customFieldConfig: any custom field config that is merged on top of the other two.\n * This enables the developer to either customize at a global scale to target all lists/forms,\n * or just specific components. */\n generateConfig(model: string, customFieldConfig?: FieldConfig): Promise> {\n // first step: merge global model config with default entry config\n const modelConfig = Object.assign(this.get(model) || {}, {\n identifier: 'id',\n identifierPattern: /^[0-9A-Za-z-_]{7,14}$/, // shortID pattern\n label: '_entryTitle',\n onSave: (item: Item, value) => this.crud.save(model, item.getBody(), value)\n });\n return this.getFieldConfig(model)\n .then((fieldConfig: FieldConfig) => {\n const modelConfigFields = modelConfig.fields || {};\n const relevantKeys = Object.keys(customFieldConfig || modelConfigFields);\n const mergedFields = {};\n if (!relevantKeys.length) {\n modelConfig.fields = fieldConfig;\n } else {\n relevantKeys.forEach(key => {\n mergedFields[key] = Object.assign(\n {},\n fieldConfig[key] || {},\n modelConfigFields[key] || {},\n (customFieldConfig || {})[key]);\n });\n modelConfig.fields = mergedFields;\n }\n return modelConfig;\n });\n }\n /** Returns light model information */\n getLightModel(model) {\n return this.sdk.ready.then(() => this.sdk.api.modelList()).then((models) => models[model]);\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ModelConfiguration.html":{"url":"interfaces/ModelConfiguration.html","title":"interface - ModelConfiguration","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n ModelConfiguration\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/model-config/model-configuration.interface.ts\n \n\n \n Description\n \n \n This is the interface for a model's configuration.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n fields\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n fields\n \n \n \n \n fields: FieldConfig\n\n \n \n\n\n \n \n Type : FieldConfig\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Array of FieldConfigProperty Objects. Sets up the behaviour of each field. \n\n \n \n \n \n \n \n\n\n \n import { FieldConfig } from '@ec.components/core';\n/** This is the interface for a model's configuration.*/\nexport interface ModelConfiguration {\n /** Array of FieldConfigProperty Objects. Sets up the behaviour of each field. */\n fields?: FieldConfig;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Notification.html":{"url":"classes/Notification.html","title":"class - Notification","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Notification\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/notifications/notification.ts\n \n\n \n Description\n \n \n A Notification is used inside NotificationService and NotificationComponent to display any information to the user.\n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n append\n \n \n Optional\n error\n \n \n Optional\n hide\n \n \n Optional\n host\n \n \n Optional\n message\n \n \n Optional\n replace\n \n \n Optional\n sticky\n \n \n Optional\n time\n \n \n Optional\n title\n \n \n Optional\n type\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(notification: Notification)\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:24\n \n \n\n \n \n The constructor just looks if an error is set, and if yes, sets the type to error. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n notification\n \n \n Notification\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Optional\n append\n \n \n \n \n \n \n \n append: []\n\n \n \n \n \n Type : []\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:22\n \n \n\n \n \n If set, the notification will be appended to the given array of Notifications when activated \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n error\n \n \n \n \n \n \n \n error: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:18\n \n \n\n \n \n If an error is given, the type will automatically be set to error. The error will be displayed inside the notification via ec-error.\n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n hide\n \n \n \n \n \n \n \n hide: []\n\n \n \n \n \n Type : []\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:20\n \n \n\n \n \n Notifications that should be hidden when this one gets active \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n host\n \n \n \n \n \n \n \n host: NotificationsComponent\n\n \n \n \n \n Type : NotificationsComponent\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:10\n \n \n\n \n \n The host the is NotificationsComponent that should display the notification. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n message\n \n \n \n \n \n \n \n message: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:8\n \n \n\n \n \n The message is shown below the title and is meant for further description. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n replace\n \n \n \n \n \n \n \n replace: []\n\n \n \n \n \n Type : []\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:24\n \n \n\n \n \n If set, the notification will replace all others in the given array of Notifications when activated \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n sticky\n \n \n \n \n \n \n \n sticky: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:14\n \n \n\n \n \n If true, the notification will stay forever \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n time\n \n \n \n \n \n \n \n time: number\n\n \n \n \n \n Type : number\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:12\n \n \n\n \n \n The amount of ms it should be visible \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n title\n \n \n \n \n \n \n \n title: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:6\n \n \n\n \n \n The title is the headline of a notification and the only value that is required. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Optional\n type\n \n \n \n \n \n \n \n type: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notification.ts:16\n \n \n\n \n \n Determines the looks. Currently info, error and success are defined. \n\n \n \n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import { NotificationsComponent } from './notifications.component';\n\n/** A Notification is used inside NotificationService and NotificationComponent to display any information to the user.*/\nexport class Notification {\n /** The title is the headline of a notification and the only value that is required. */\n title?: string;\n /** The message is shown below the title and is meant for further description. */\n message?: string;\n /** The host the is NotificationsComponent that should display the notification. */\n host?: NotificationsComponent;\n /** The amount of ms it should be visible */\n time?: number;\n /** If true, the notification will stay forever */\n sticky?: boolean;\n /** Determines the looks. Currently info, error and success are defined. */\n type?: string;\n /** If an error is given, the type will automatically be set to error. The error will be displayed inside the notification via ec-error.*/\n error?: any;\n /** Notifications that should be hidden when this one gets active */\n hide?: this[];\n /** If set, the notification will be appended to the given array of Notifications when activated */\n append?: this[];\n /** If set, the notification will replace all others in the given array of Notifications when activated */\n replace?: this[];\n\n /** The constructor just looks if an error is set, and if yes, sets the type to error. */\n constructor(notification: Notification) {\n if (notification.error) {\n this.type = 'error';\n }\n Object.assign(this, notification);\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/NotificationsComponent.html":{"url":"components/NotificationsComponent.html","title":"component - NotificationsComponent","body":"\n \n\n\n\n\n\n Components\n NotificationsComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/notifications/notifications.component.ts\n\n\n \n Description\n \n \n Displays any kind of Notification inside the DOM.\nIt listens on the notificationService.$emitter for notifications.\nhttps://components.entrecode.de/ui/notifications?e=1\n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-notifications\n \n\n\n\n\n \n templateUrl\n ./notifications.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n notifications\n \n \n \n \n\n\n \n \n Inputs\n \n \n \n \n \n \n time\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(notificationService: NotificationsService)\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.component.ts:21\n \n \n\n \n \n Listens on the NotificationService and shows each notification that has this component set as host, or none at all. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n time\n \n \n The default time for a notification to be visible. Will be ignored if the notification itself has a time set. \n\n \n Type : number\n\n \n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.component.ts:21\n \n \n \n \n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Collection\n\n \n \n \n \n Type : Collection\n\n \n \n \n \n Default value : new Collection([])\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.component.ts:19\n \n \n\n \n \n The current stack of notifications that are visible. \n\n \n \n\n \n \n\n\n\n\n \n Notifications\nThe Notifications Module is a combination of the NotificationsService and the NotificationsComponent.\nSimple Usage\n\nPlace the component somewhere in your app template:\n\n\nEmit notifications via the service\n\nexport class MyComponent {\n constructor(private notifications: NotificationsService) {}\n\n showNotification() {\n this.notifications.emit({\n type: 'success',\n title: 'Das ist der Notification Titel',\n message: 'Das ist die Beschreibung'\n });\n }\n\n doSomethingRisky() {\n return Promise.reject('Fehler')\n .catch((err) => {\n this.notifications.emit({\n error: err, // passing the error Object\n title: 'Fehler!'\n })\n })\n }\n}The given type will be added as class. The classes that are available by default can be looked up here.\nAdvanced Usage\nYou can also use multiple ec-notifications at different places:\n\n\nA\nBAll you have to do, is pass the instance of the component that should display the notification via the host property:\nexport class MyComponent {\n constructor(private notifications: NotificationsService) {}\n\n emit(host) {\n this.notifications.emit({\n type: 'success',\n title: 'Das ist der Notification Titel',\n host: host\n });\n }\n}Hiding previous errors\nHere is an example usage of a typical success/error handling.\nIt features hiding previous notifications. We recommended you to use the WithNotifications interface for that case.\nexport class MuffinComponent implements WithNotifications {\n /** Recent Error notification */\n notifications: Notification[] = [];\n\nconstructor(\n public bakery:BakeryService,\n public notificationService: NotificationsService,\n )\n\n bake() {\n this.bakery.bake().then(()=> {\n this.notificationService.emit({\n title: 'Muffin was baken!',\n hide: this.notifications // this will hide all preceding notifications\n })\n }).catch(error=>{\n this.notificationService.emit({\n title: 'Error while baking',\n sticky: true,\n hide: this.notifications, // this will hide all preceding notifications\n replace: this.notifications // this will replace the given array with the new notification\n })\n });\n }\n}The hide option is useful to hide obsolete errors. E.g. If you successfully log in after one failiure, the sticky error notification of the first attempt will be hidden. This enables you to keep errors messages as long as they are needed.\nInstead of replace, you could also use append (see notification.component.ts for implementation).\n\n \n\n \n import { Component, Input } from '@angular/core';\nimport { Collection } from '@ec.components/core';\nimport { Notification } from './notification';\nimport { NotificationsService } from './notifications.service';\n\n/** Displays any kind of Notification inside the DOM.\n * It listens on the notificationService.$emitter for notifications.\n * https://components.entrecode.de/ui/notifications?e=1\n * */\n@Component({\n selector: 'ec-notifications',\n templateUrl: './notifications.component.html',\n})\nexport class NotificationsComponent {\n /** The current stack of notifications that are visible. */\n notifications: Collection = new Collection([]);\n /** The default time for a notification to be visible. Will be ignored if the notification itself has a time set. */\n @Input() time: number;\n\n /** Listens on the NotificationService and shows each notification that has this component set as host, or none at all. */\n constructor(private notificationService: NotificationsService) {\n this.time = this.time || this.notificationService.defaultTime;\n this.notificationService.emitter$.subscribe((notification: Notification) => {\n if (notification.hide) {\n this.notifications.removeAll(notification.hide);\n }\n if (!notification.title && !notification.message) {\n // console.warn('tried to emit notification without message and title', notification);\n return;\n }\n if (notification.append) {\n notification.append.push(notification);\n }\n if (notification.replace) {\n notification.replace.length = 0;\n notification.replace.push(notification);\n }\n\n if (!notification.host || notification.host === this) {\n this.notifications.add(notification);\n if (notification.sticky) {\n if (notification.time) {\n console.warn('notification.time is ignored because it was set sticky');\n }\n return;\n }\n setTimeout(() => this.notifications.remove(notification), notification.time || this.time);\n }\n });\n }\n}\n\n \n\n \n \n \n {{notification.title}}\n {{notification.message}}\n \n \n \n \n \n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{notification.title}} {{notification.message}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'NotificationsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/NotificationsModule.html":{"url":"modules/NotificationsModule.html","title":"module - NotificationsModule","body":"\n \n\n\n\n\n Modules\n NotificationsModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_NotificationsModule\n\n\n\ncluster_NotificationsModule_declarations\n\n\n\ncluster_NotificationsModule_imports\n\n\n\ncluster_NotificationsModule_exports\n\n\n\ncluster_NotificationsModule_providers\n\n\n\n\nErrorComponent\n\nErrorComponent\n\n\n\nNotificationsModule\n\nNotificationsModule\n\nNotificationsModule -->\n\nErrorComponent->NotificationsModule\n\n\n\n\n\nNotificationsComponent\n\nNotificationsComponent\n\nNotificationsModule -->\n\nNotificationsComponent->NotificationsModule\n\n\n\n\n\nErrorComponent \n\nErrorComponent \n\nErrorComponent -->\n\nNotificationsModule->ErrorComponent \n\n\n\n\n\nNotificationsComponent \n\nNotificationsComponent \n\nNotificationsComponent -->\n\nNotificationsModule->NotificationsComponent \n\n\n\n\n\nIconModule\n\nIconModule\n\nNotificationsModule -->\n\nIconModule->NotificationsModule\n\n\n\n\n\nPopModule\n\nPopModule\n\nNotificationsModule -->\n\nPopModule->NotificationsModule\n\n\n\n\n\nNotificationsService\n\nNotificationsService\n\nNotificationsModule -->\n\nNotificationsService->NotificationsModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/notifications/notifications.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n ErrorComponent\n \n \n NotificationsComponent\n \n \n \n \n Providers\n \n \n NotificationsService\n \n \n \n \n Imports\n \n \n IconModule\n \n \n PopModule\n \n \n \n \n Exports\n \n \n ErrorComponent\n \n \n NotificationsComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { NotificationsComponent } from './notifications.component';\nimport { NotificationsService } from './notifications.service';\nimport { PopModule } from '../pop/pop.module';\nimport { ErrorComponent } from './error/error.component';\nimport { IconModule } from '../icon/icon.module';\n\n@NgModule({\n declarations: [\n NotificationsComponent,\n ErrorComponent,\n ],\n imports: [\n CommonModule,\n PopModule,\n IconModule,\n ],\n exports: [\n NotificationsComponent,\n ErrorComponent,\n ],\n providers: [\n {\n provide: 'useDesktopNotifications',\n useValue: false\n }, NotificationsService]\n})\nexport class NotificationsModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/NotificationsService.html":{"url":"injectables/NotificationsService.html","title":"injectable - NotificationsService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n NotificationsService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/notifications/notifications.service.ts\n \n\n \n Description\n \n \n This service is the main interaction layer for the developer to show notifications.\nYou can use desktop notifications by default by providing:\n {\n provide: \"useDesktopNotifications\",\n useValue: true\n }in your module's providers.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n defaultTime\n \n \n Private\n emitter\n \n \n Public\n emitter$\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n desktopNotification\n \n \n emit\n \n \n getPermission\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(useDesktopNotifications)\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:26\n \n \n\n \n \n The constructors injects the useDesktopNotifications flag from the module.\nIf true, all notifications will be shown as desktop notifications instead. \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n useDesktopNotifications\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n desktopNotification\n \n \n \n \n \n \n \ndesktopNotification(notification: Notification)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:61\n \n \n\n\n \n \n Emits a desktop notification after asking for permission (if not already granted). \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n notification\n \n Notification\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n emit\n \n \n \n \n \n \n \nemit(notification: Notification, desktop?: boolean)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:34\n \n \n\n\n \n \n Emits a notification to all ec-notification components. If host is set, it is only pushed to the specified host.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n notification\n \n Notification\n \n \n \n No\n \n \n\n \n \n desktop\n \n boolean\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getPermission\n \n \n \n \n \n \n \ngetPermission()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:48\n \n \n\n\n \n \n Asks for permission to show desktop notifications, if not already granted. \n\n\n \n Returns : Promise\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n defaultTime\n \n \n \n \n \n \n \n defaultTime: number\n\n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 5000\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:26\n \n \n\n \n \n The default view time for a notification. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n emitter\n \n \n \n \n \n \n \n emitter: Subject\n\n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:22\n \n \n\n \n \n The emitter subject to fire notifications. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n emitter$\n \n \n \n \n \n \n \n emitter$: Observable\n\n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.emitter.asObservable()\n \n \n \n \n Defined in packages/ui/src/lib/notifications/notifications.service.ts:24\n \n \n\n \n \n Observable that is nexted when a new notification comes in. \n\n \n \n\n \n \n\n\n \n\n\n \n import { Inject, Injectable } from '@angular/core';\nimport { Notification } from './notification';\nimport { Observable } from 'rxjs';\nimport { Subject } from 'rxjs';\n\n/** Workaround to get window without typescript complaining */\ndeclare const window;\n\n/** This service is the main interaction layer for the developer to show notifications.\n * You can use desktop notifications by default by providing:\n * ```json\n {\n provide: \"useDesktopNotifications\",\n useValue: true\n }```\n * in your module's providers.\n *\n * */\n@Injectable()\nexport class NotificationsService {\n /** The emitter subject to fire notifications. */\n private emitter: Subject = new Subject();\n /** Observable that is nexted when a new notification comes in. */\n public emitter$: Observable = this.emitter.asObservable();\n /** The default view time for a notification. */\n public defaultTime = 5000;\n\n /** The constructors injects the useDesktopNotifications flag from the module.\n * If true, all notifications will be shown as desktop notifications instead. */\n constructor(@Inject('useDesktopNotifications') private useDesktopNotifications) {\n }\n\n /** Emits a notification to all ec-notification components. If host is set, it is only pushed to the specified host.*/\n emit(notification: Notification, desktop?: boolean) {\n const instance = new Notification(notification);\n if (desktop || this.useDesktopNotifications) {\n this.desktopNotification(instance);\n } else {\n this.emitter.next(instance);\n }\n if (notification && notification.error) {\n console.error(notification.error);\n }\n return instance;\n }\n\n /** Asks for permission to show desktop notifications, if not already granted. */\n getPermission(): Promise {\n if (window.Notification.permission === 'granted') {\n return Promise.resolve();\n }\n return window.Notification.requestPermission().then((permission) => {\n // If the user accepts, let's create a notification\n if (permission !== 'granted') {\n return Promise.reject('Desktop Notification Permission Denied!');\n }\n });\n }\n\n /** Emits a desktop notification after asking for permission (if not already granted). */\n desktopNotification(notification: Notification) {\n if (!('Notification' in window)) {\n console.warn('This browser does not support desktop notification');\n }\n this.getPermission().then(() => {\n const message = new window.Notification(notification.title, { body: notification.message });\n if (notification.sticky) {\n if (notification.time) {\n console.warn('notification.time is ignored because it was set sticky');\n }\n return;\n }\n setTimeout(() => message.close(), notification.time || this.defaultTime);\n });\n }\n\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/OutputComponent.html":{"url":"components/OutputComponent.html","title":"component - OutputComponent","body":"\n \n\n\n\n\n\n Components\n OutputComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/io/output/output.component.ts\n\n\n \n Description\n \n \n Outputs the given field of the given item, rendering the component dynamically. \n\n \n\n \n Extends\n \n \n DynamicSlotComponent\n \n\n \n Implements\n \n \n OnChanges\n \n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-output\n \n\n\n\n\n \n templateUrl\n ../dynamic-slot/dynamic-slot.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n componentFactoryResolver\n \n \n fieldHost\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnChanges\n \n \n loadComponent\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n field\n \n \n item\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n field\n \n \n The instance of field that should be used in the template \n\n \n Type : Field\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/output/output.component.ts:14\n \n \n \n \n \n \n \n \n \n item\n \n \n The belonging item \n\n \n Type : Item\n\n \n \n \n \n \n Defined in packages/ui/src/lib/io/output/output.component.ts:16\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/io/output/output.component.ts:20\n \n \n\n\n \n \n The component is loade as soon as the field and item are known.\nIf the field has no output property set, the DefaultOutputComponent will be rendered. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n loadComponent\n \n \n \n \n \n \n \nloadComponent(component: Type, data: Object)\n \n \n\n\n \n \n Inherited from DynamicSlotComponent\n\n \n \n \n \n Defined in DynamicSlotComponent:18\n \n \n\n\n \n \n Loads the given component inside the fieldHost. Sets current item and field by default. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n component\n \n Type\n \n \n \n No\n \n \n \n \n\n \n \n data\n \n Object\n \n \n \n No\n \n \n \n {}\n \n\n \n \n \n \n \n \n \n Returns : ComponentRef\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n componentFactoryResolver\n \n \n \n \n \n \n \n componentFactoryResolver: ComponentFactoryResolver\n\n \n \n \n \n Type : ComponentFactoryResolver\n\n \n \n \n \n Inherited from DynamicSlotComponent\n\n \n \n \n \n Defined in DynamicSlotComponent:14\n \n \n\n\n \n \n \n \n \n \n \n \n \n fieldHost\n \n \n \n \n \n \n \n fieldHost: SlotHostDirective\n\n \n \n \n \n Type : SlotHostDirective\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(SlotHostDirective)\n \n \n \n \n \n Inherited from DynamicSlotComponent\n\n \n \n \n \n Defined in DynamicSlotComponent:11\n \n \n\n \n \n The FieldHostDirective will be used to nest custom components into the field \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, Input, OnChanges, ChangeDetectionStrategy } from '@angular/core';\nimport { DynamicSlotComponent } from '../dynamic-slot/dynamic-slot.component';\nimport { Field, Item } from '@ec.components/core';\nimport { DefaultOutputComponent } from '../../form/default-output/default-output.component';\n\n/** Outputs the given field of the given item, rendering the component dynamically. */\n@Component({\n selector: 'ec-output',\n templateUrl: '../dynamic-slot/dynamic-slot.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush,\n})\nexport class OutputComponent extends DynamicSlotComponent implements OnChanges {\n /** The instance of field that should be used in the template */\n @Input() field: Field;\n /** The belonging item */\n @Input() item: Item;\n\n /** The component is loade as soon as the field and item are known.\n * If the field has no output property set, the DefaultOutputComponent will be rendered. */\n ngOnChanges() {\n if (this.field && this.item) {\n this.loadComponent(this.field.output || DefaultOutputComponent,\n {\n item: this.item,\n field: this.field\n });\n }\n }\n}\n\n \n\n \n \n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'OutputComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Pagination.html":{"url":"classes/Pagination.html","title":"class - Pagination","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Pagination\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/pagination/pagination.ts\n \n\n \n Description\n \n \n This class can be used to control the loading behaviour of external data. \n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n change\n \n \n Public\n change$\n \n \n Protected\n config\n \n \n Public\n pages\n \n \n Protected\n total\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n first\n \n \n getPage\n \n \n getPages\n \n \n isActive\n \n \n isFirst\n \n \n isLast\n \n \n last\n \n \n Protected\n load\n \n \n next\n \n \n params\n \n \n prev\n \n \n select\n \n \n setTotal\n \n \n slice\n \n \n updateSize\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(config?: ListConfig, total?: number)\n \n \n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:15\n \n \n\n \n \n You can init each Pagination instance with an optional config.\nIf no config is provided, it will default to {page: 1, size: 25}. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n \n ListConfig\n \n \n \n Yes\n \n \n \n \n total\n \n \n number\n \n \n \n Yes\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n change\n \n \n \n \n \n \n \n change: \n\n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:13\n \n \n\n \n \n Subject for tracking changes. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n change$\n \n \n \n \n \n \n \n change$: Observable\n\n \n \n \n \n Type : Observable\n\n \n \n \n \n Default value : this.change.asObservable()\n \n \n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:15\n \n \n\n \n \n Observable that is nexted when the pagination has changed. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Protected\n config\n \n \n \n \n \n \n \n config: ListConfig\n\n \n \n \n \n Type : ListConfig\n\n \n \n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:9\n \n \n\n \n \n The pagination config \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n pages\n \n \n \n \n \n \n \n pages: Array\n\n \n \n \n \n Type : Array\n\n \n \n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:11\n \n \n\n \n \n Array to iterate over the number of pages. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Protected\n total\n \n \n \n \n \n \n \n total: number\n\n \n \n \n \n Type : number\n\n \n \n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:7\n \n \n\n \n \n The total number of items that is being paginated. It can be changed via setTotal. \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n first\n \n \n \n \n \n \n \nfirst()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:93\n \n \n\n\n \n \n Loads the first Page \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPage\n \n \n \n \n \n \n \ngetPage()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:33\n \n \n\n\n \n \n Retrieves the current page \n\n\n \n Returns : number\n\n \n \n \n \n \n \n \n \n \n \n \n \n getPages\n \n \n \n \n \n \n \ngetPages()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:38\n \n \n\n\n \n \n Retrieves the number of pages \n\n\n \n Returns : number\n\n \n \n \n \n \n \n \n \n \n \n \n \n isActive\n \n \n \n \n \n \n \nisActive(page: number)\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:107\n \n \n\n\n \n \n Returns true if the given page number is currently active.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n page\n \n number\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isFirst\n \n \n \n \n \n \n \nisFirst()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:112\n \n \n\n\n \n \n Returns true if the current page is the first one \n\n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n isLast\n \n \n \n \n \n \n \nisLast()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:117\n \n \n\n\n \n \n Returns true if the current page is the last one \n\n\n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n last\n \n \n \n \n \n \n \nlast()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:98\n \n \n\n\n \n \n Loads the last page \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Protected\n load\n \n \n \n \n \n \n \n \n load(config?: ListConfig)\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:76\n \n \n\n\n \n \n Merges config and fires next on change \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n ListConfig\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n next\n \n \n \n \n \n \n \nnext()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:43\n \n \n\n\n \n \n Loads the next page. Throws error if already on last page. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n params\n \n \n \n \n \n \n \nparams()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:130\n \n \n\n\n \n \n Returns an object with all relevant infos about the current state of pagination \n\n\n \n Returns : { page: number; pages: number; total: number; from: number; to: any; size: any; availableSizes: a...\n\n \n \n \n \n \n \n \n \n \n \n \n \n prev\n \n \n \n \n \n \n \nprev()\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:52\n \n \n\n\n \n \n Loads the previous page. Throws error if already on first page. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \n \nselect(page: number, silent)\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:84\n \n \n\n\n \n \n Selects the given page number \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n page\n \n number\n \n \n \n No\n \n \n \n \n\n \n \n silent\n \n \n \n \n No\n \n \n \n false\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n setTotal\n \n \n \n \n \n \n \nsetTotal(total: number)\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:63\n \n \n\n\n \n \n Sets the total number of items and calculcates the page count.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n total\n \n number\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n slice\n \n \n \n \n \n \n \nslice(items: Array)\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:125\n \n \n\n\n \n \n slices a given array according to the current pagination state \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n items\n \n Array\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n updateSize\n \n \n \n \n \n \n \nupdateSize(size: number)\n \n \n\n\n \n \n Defined in packages/core/src/lib/pagination/pagination.ts:142\n \n \n\n\n \n \n updates the size of the pages. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n size\n \n number\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n\n \n Pagination\nPagination can be used to keep track of the pages of arbitrary items.\nconst pagination = new Pagination({ size: 10 });\npagination.setTotal(50); //tells the pagination that it should paginate over 50 items.\npagination.getPages(); //5See list.ts/list.component for example usage.\n\n \n\n \n import { Subject, Observable } from 'rxjs';\nimport { ListConfig } from '../list/list-config.interface';\n\n/** This class can be used to control the loading behaviour of external data. */\nexport class Pagination {\n /** The total number of items that is being paginated. It can be changed via setTotal. */\n protected total: number;\n /** The pagination config */\n protected config: ListConfig;\n /** Array to iterate over the number of pages. */\n public pages: Array;\n /** Subject for tracking changes. */\n private change = new Subject();\n /** Observable that is nexted when the pagination has changed. */\n public change$: Observable = this.change.asObservable();\n\n /** You can init each Pagination instance with an optional config.\n * If no config is provided, it will default to ```{page: 1, size: 25}```. */\n constructor(config?: ListConfig, total?: number) {\n this.config = { page: 1, size: 25 };\n Object.assign(this.config, config);\n Object.assign(this.config, {\n availableSizes: Array.from(new Set([this.config.size]\n .concat(this.config.availableSizes || [10, 25, 50, 100], [this.config.size])\n .sort(((a, b) => a - b))))\n });\n if (total) {\n this.setTotal(total);\n }\n }\n\n /** Retrieves the current page */\n getPage(): number {\n return this.config.page;\n }\n\n /** Retrieves the number of pages */\n getPages(): number {\n return this.pages ? this.pages.length : 0;\n }\n\n /** Loads the next page. Throws error if already on last page. */\n next(): void {\n if (this.isLast()) {\n return; // already last page\n }\n this.config.page += 1;\n this.load();\n }\n\n /** Loads the previous page. Throws error if already on first page. */\n prev(): void {\n if (this.isFirst()) {\n return; // already first page\n }\n this.config.page -= 1;\n this.load();\n }\n\n /**\n * Sets the total number of items and calculcates the page count.\n * */\n setTotal(total: number) {\n /* if (this.total !== total) {\n this.change.next(this.config);\n } */\n this.total = total;\n this.pages = new Array(Math.ceil(this.total / this.config.size));\n if (this.config.page !== 1 && this.config.page > this.pages.length) {\n this.config.page = this.pages.length || 1;\n this.load();\n }\n }\n\n /** Merges config and fires next on change */\n protected load(config?: ListConfig): void {\n if (config) {\n Object.assign(this.config, config);\n }\n this.change.next(this.config);\n }\n\n /** Selects the given page number */\n select(page: number, silent = false): void {\n if (page === this.config.page || silent) {\n this.config.page = page;\n return;\n }\n this.load({ page: page });\n }\n\n /** Loads the first Page */\n first(): void {\n this.load({ page: 1 });\n }\n\n /** Loads the last page */\n last() {\n if (!this.pages) {\n throw new Error(`Cannot load last page without knowing the item count.\n Call setTotal(itemCount) before loading.`);\n }\n this.load({ page: this.pages.length });\n }\n\n /** Returns true if the given page number is currently active.*/\n isActive(page: number): boolean {\n return this.config.page === page;\n }\n\n /** Returns true if the current page is the first one */\n isFirst(): boolean {\n return this.config.page === 1;\n }\n\n /** Returns true if the current page is the last one */\n isLast(): boolean {\n if (!this.pages) {\n return true;\n }\n return this.config.page === this.pages.length;\n }\n\n /** slices a given array according to the current pagination state */\n slice(items: Array): Array {\n return items.slice((this.config.page - 1) * this.config.size, (this.config.page) * this.config.size);\n }\n\n /** Returns an object with all relevant infos about the current state of pagination */\n params() {\n return {\n page: this.getPage(),\n pages: this.getPages(),\n total: this.total,\n from: (this.getPage() - 1) * this.config.size + 1,\n to: Math.min(this.getPage() * this.config.size, this.total),\n size: this.config.size,\n availableSizes: this.config.availableSizes,\n };\n }\n /** updates the size of the pages. */\n updateSize(size: number) {\n if (!size) {\n return;\n }\n this.load({ size, page: 1 });\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/PaginationComponent.html":{"url":"components/PaginationComponent.html","title":"component - PaginationComponent","body":"\n \n\n\n\n\n\n Components\n PaginationComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/list/pagination/pagination.component.ts\n\n\n \n Description\n \n \n The Pagination component renders a given instance of the Pagination class.\n\n \n\n\n \n Implements\n \n \n OnChanges\n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-pagination\n \n\n\n\n\n \n templateUrl\n ./pagination.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n container\n \n \n Private\n page\n \n \n Private\n pageContainer\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n isVisible\n \n \n ngOnChanges\n \n \n ngOnInit\n \n \n updateSize\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n config\n \n \n pagination\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n config\n \n \n The config that is used \n\n \n Type : PaginationConfig\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:23\n \n \n \n \n \n \n \n \n \n pagination\n \n \n A Pagination Instance \n\n \n Type : Pagination\n\n \n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:15\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n isVisible\n \n \n \n \n \n \n \nisVisible(page)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:39\n \n \n\n\n \n \n Determines if a page should be visible \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n page\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:31\n \n \n\n\n \n \n As soon as the pagination is known, the change$ event is subscribed to translate the container on change.\n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:26\n \n \n\n\n \n \n Init config. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n updateSize\n \n \n \n \n \n \n \nupdateSize(value: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:45\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n container\n \n \n \n \n \n \n \n container: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('container')\n \n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:17\n \n \n\n \n \n The div container for the pages\n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n page\n \n \n \n \n \n \n \n page: QueryList\n\n \n \n \n \n Type : QueryList\n\n \n \n \n \n Decorators : \n \n \n @ViewChildren('page')\n \n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:21\n \n \n\n \n \n The pages li elements. The first one is used to determine the container translation. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n pageContainer\n \n \n \n \n \n \n \n pageContainer: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('pageContainer')\n \n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination.component.ts:19\n \n \n\n \n \n The ul around pages \n\n \n \n\n \n \n\n\n\n\n \n Pagination\nTODO\n\n \n\n \n import { Component, ElementRef, Input, OnInit, QueryList, ViewChild, ViewChildren } from '@angular/core';\nimport { OnChanges } from '@angular/core/src/metadata/lifecycle_hooks';\nimport { Pagination } from '@ec.components/core';\nimport { PaginationConfig } from './pagination-config.interface';\n\n/**\n * The Pagination component renders a given instance of the Pagination class.\n */\n@Component({\n selector: 'ec-pagination',\n templateUrl: './pagination.component.html',\n})\nexport class PaginationComponent implements OnChanges, OnInit {\n /** A Pagination Instance */\n @Input() pagination: Pagination;\n /** The div container for the pages*/\n @ViewChild('container') private container: ElementRef;\n /** The ul around pages */\n @ViewChild('pageContainer') private pageContainer: ElementRef;\n /** The pages li elements. The first one is used to determine the container translation. */\n @ViewChildren('page') private page: QueryList;\n /** The config that is used */\n @Input() config: PaginationConfig;\n\n /** Init config. */\n ngOnInit() {\n this.config = new PaginationConfig(this.config);\n }\n\n /** As soon as the pagination is known, the change$ event is subscribed to translate the container on change.*/\n ngOnChanges() {\n if (!this.pagination) {\n return;\n }\n this.config = new PaginationConfig(this.config);\n }\n\n /** Determines if a page should be visible */\n isVisible(page) {\n const current = this.pagination.getPage();\n return Math.abs(current - page) \n \n\n \n \n 1&&!pagination?.isFirst()\">\n \n \n {{'pagination.first' | symbol}}\n \n \n \n \n {{'pagination.prev' | symbol}}\n \n \n \n 1\">\n \n \n \n {{i+1}}\n \n \n \n \n 1&&!pagination?.isLast()\">\n \n \n {{'pagination.next' | symbol}}\n \n \n \n \n {{'pagination.last' | symbol}}\n \n \n \n \n {{pagination?.params()?.from}} - {{pagination?.params()?.to}} {{ 'pagination.of' | symbol}} {{pagination?.params()?.total}}\n \n \n 1\" (change)=\"updateSize($event.target.value)\" class=\"input\">\n \n {{size}} {{'pagination.size' | symbol}}\n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' 1&&!pagination?.isFirst()\"> {{\\'pagination.first\\' | symbol}} {{\\'pagination.prev\\' | symbol}} 1\"> {{i+1}} 1&&!pagination?.isLast()\"> {{\\'pagination.next\\' | symbol}} {{\\'pagination.last\\' | symbol}} {{pagination?.params()?.from}} - {{pagination?.params()?.to}} {{ \\'pagination.of\\' | symbol}} {{pagination?.params()?.total}} 1\" (change)=\"updateSize($event.target.value)\" class=\"input\"> {{size}} {{\\'pagination.size\\' | symbol}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'PaginationComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/PaginationConfig.html":{"url":"classes/PaginationConfig.html","title":"class - PaginationConfig","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n PaginationConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/list/pagination/pagination-config.interface.ts\n \n\n \n Description\n \n \n Configuration for a pagination component \n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n hideFirstLast\n \n \n hidePages\n \n \n range\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(config: PaginationConfig)\n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination-config.interface.ts:11\n \n \n\n \n \n The constructor assigns the config \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n config\n \n \n PaginationConfig\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n hideFirstLast\n \n \n \n \n \n \n \n hideFirstLast: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination-config.interface.ts:9\n \n \n\n \n \n Hides first and last Link \n\n \n \n\n \n \n \n \n \n \n \n \n \n hidePages\n \n \n \n \n \n \n \n hidePages: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination-config.interface.ts:11\n \n \n\n \n \n Hides pages \n\n \n \n\n \n \n \n \n \n \n \n \n \n range\n \n \n \n \n \n \n \n range: number\n\n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 2\n \n \n \n \n Defined in packages/ui/src/lib/list/pagination/pagination-config.interface.ts:7\n \n \n\n \n \n Range of displayed pages in the UI. Controls the number of pages before and after the current page. Defaults to 3.\nNOTE: For a smoother UX, there are minimum 2 * range + 1 pages visible.\n\n \n \n\n \n \n\n\n\n\n\n\n\n\n \n\n\n \n import { SymbolService } from '../../symbol/symbol.service';\n\n/** Configuration for a pagination component */\nexport class PaginationConfig {\n /** Range of displayed pages in the UI. Controls the number of pages before and after the current page. Defaults to 3.\n * NOTE: For a smoother UX, there are minimum ```2 * range + 1``` pages visible.*/\n range = 2;\n /** Hides first and last Link */\n hideFirstLast: boolean;\n /** Hides pages */\n hidePages: boolean;\n /** The constructor assigns the config */\n constructor(config: PaginationConfig) {\n Object.assign(this, config);\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/PasswordResetComponent.html":{"url":"components/PasswordResetComponent.html","title":"component - PasswordResetComponent","body":"\n \n\n\n\n\n\n Components\n PasswordResetComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/data/src/lib/auth/password-reset/password-reset.component.ts\n\n\n \n Description\n \n \n Form to send password reset request.\nhttps://components.entrecode.de/auth/password-reset?e=1\n\n \n\n\n \n Implements\n \n \n WithLoader\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-password-reset\n \n\n\n\n\n \n templateUrl\n password-reset.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n auth\n \n \n email\n \n \n loader\n \n \n lockForm\n \n \n Public\n notifications\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n reset\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n placeholder\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n success\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(auth: AuthService, notifications: NotificationsService)\n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:27\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n auth\n \n \n AuthService\n \n \n \n No\n \n \n \n \n notifications\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n Optional api to be used (if not using sdk.api instance) \n\n \n Type : PublicAPI\n\n \n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:21\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n Custom placeholder for email field \n\n \n Default value : 'E-Mail Adresse...'\n \n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:23\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n success\n \n \n Event after request was successful \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:25\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n reset\n \n \n \n \n \n \n \nreset()\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:32\n \n \n\n\n \n \n Sends request through AuthService and shows notifications + loader. \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n auth\n \n \n \n \n \n \n \n auth: AuthService\n\n \n \n \n \n Type : AuthService\n\n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n email\n \n \n \n \n \n \n \n email: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:19\n \n \n\n \n \n The user email \n\n \n \n\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: \n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LoaderComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:27\n \n \n\n \n \n The loader \n\n \n \n\n \n \n \n \n \n \n \n \n \n lockForm\n \n \n \n \n \n \n \n lockForm: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:17\n \n \n\n \n \n To ensure the user only sends one request, the form is locked after the request has been sent \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n notifications\n \n \n \n \n \n \n \n notifications: NotificationsService\n\n \n \n \n \n Type : NotificationsService\n\n \n \n \n \n Defined in packages/data/src/lib/auth/password-reset/password-reset.component.ts:29\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';\nimport PublicAPI from 'ec.sdk/lib/PublicAPI';\nimport { LoaderComponent, NotificationsService, WithLoader } from '@ec.components/ui';\nimport { AuthService } from '../auth.service';\n\n/** Form to send password reset request.\n * https://components.entrecode.de/auth/password-reset?e=1\n *\n*/\n@Component({\n selector: 'ec-password-reset',\n templateUrl: 'password-reset.component.html'\n})\n\nexport class PasswordResetComponent implements WithLoader {\n /** To ensure the user only sends one request, the form is locked after the request has been sent */\n lockForm: boolean;\n /** The user email */\n email: string;\n /** Optional api to be used (if not using sdk.api instance) */\n @Input() api: PublicAPI;\n /** Custom placeholder for email field */\n @Input() placeholder = 'E-Mail Adresse...';\n /** Event after request was successful */\n @Output() success: EventEmitter = new EventEmitter();\n /** The loader */\n @ViewChild(LoaderComponent) loader;\n\n constructor(public auth: AuthService, public notifications: NotificationsService) {\n }\n /** Sends request through AuthService and shows notifications + loader. */\n reset() {\n const reset = this.auth.resetPassword(this.email, this.api)\n .then(() => {\n this.notifications.emit({\n type: 'success',\n title: 'Mail versendet',\n message: 'Sie haben soeben eine Mail mit weiteren Anweisungen erhalten',\n sticky: true\n });\n this.lockForm = true;\n this.success.emit();\n }).catch((error) => {\n this.notifications.emit({\n title: 'Fehler beim Passwort zurücksetzen',\n error,\n sticky: true\n });\n console.log('could not reset password', error);\n });\n this.loader.wait(reset);\n }\n}\n\n \n\n \n \n\n \n \n \n \n {{'passwordReset.button' | symbol}}\n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{\\'passwordReset.button\\' | symbol}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'PasswordResetComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/PopComponent.html":{"url":"components/PopComponent.html","title":"component - PopComponent","body":"\n \n\n\n\n\n\n Components\n PopComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/pop/pop.component.ts\n\n\n \n Description\n \n \n A Pop is an area of content whose visibility can be toggled.\nIt can be used e.g as dialog, drawer or dialog.\nhttps://components.entrecode.de/ui/pop?e=1\n\n \n\n\n\n\n\n Metadata\n \n \n\n \n changeDetection\n ChangeDetectionStrategy.OnPush\n \n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-pop\n \n\n\n\n\n \n templateUrl\n ./pop.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n activated\n \n \n clickEvent\n \n \n Public\n elementRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Public\n hide\n \n \n isOutside\n \n \n Public\n show\n \n \n Public\n toggle\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n active\n \n \n hideOnClickOutside\n \n \n type\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n toggle\n \n \n \n \n\n\n \n \n HostListeners\n \n \n \n \n \n \n document:click\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(popService: PopService, elementRef: ElementRef, cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:52\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n popService\n \n \n PopService\n \n \n \n No\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n active\n \n \n If true, .ec-pop is part of the DOM (*ngIf) + .active is set on .ec-pop-container. \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:29\n \n \n \n \n \n \n \n \n \n hideOnClickOutside\n \n \n If set to true, the pop will hide when a click happens outside the pop. \n\n \n Default value : false\n \n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:35\n \n \n \n \n \n \n \n \n \n type\n \n \n The used type on the host element \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:33\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n toggle\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:37\n \n \n \n \n\n\n \n HostListeners \n \n \n \n \n \n \n document:click\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndocument:click($event)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:42\n \n \n\n\n \n \n Listens for document:click and hides \n\n\n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Public\n hide\n \n \n \n \n \n \n \n \n hide()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:90\n \n \n\n\n \n \n Hides the pop. Sets active false and removes pop from popService.stack \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n isOutside\n \n \n \n \n \n \n \nisOutside(element)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:61\n \n \n\n\n \n \n yields true if the given element is outside the pop / or is the wrapper element itself (the backdrop) \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n element\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n show\n \n \n \n \n \n \n \n \n show(e?)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:77\n \n \n\n\n \n \n Shows the pop. Sets active true and adds pop to popService.stack \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n toggle\n \n \n \n \n \n \n \n \n toggle(e?)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:67\n \n \n\n\n \n \n Shows if not active, hides if active. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n activated\n \n \n \n \n \n \n \n activated: \n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:31\n \n \n\n \n \n Flip and stays true after first show \n\n \n \n\n \n \n \n \n \n \n \n \n \n clickEvent\n \n \n \n \n \n \n \n clickEvent: \n\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:39\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.component.ts:55\n \n \n\n\n \n \n\n\n\n\n \n Pop\nA Pop is not just a modal, but a section of markup that appears (pops) anywhere and with any style on your page.\nUsage\n\n \n Close\n \n \n Some body content\n \n \n This is the footer\n \n\nShow popThe default pop classes can be looked up here.\n\n \n\n \n import {\n Component,\n EventEmitter,\n Input,\n Output,\n HostBinding,\n OnInit,\n HostListener,\n ElementRef,\n ChangeDetectionStrategy,\n ChangeDetectorRef\n} from '@angular/core';\nimport { PopService } from './pop.service';\n\n/** A Pop is an area of content whose visibility can be toggled.\n * It can be used e.g as dialog, drawer or dialog.\n * https://components.entrecode.de/ui/pop?e=1\n * */\n@Component({\n selector: 'ec-pop',\n templateUrl: './pop.component.html',\n changeDetection: ChangeDetectionStrategy.OnPush\n})\nexport class PopComponent {\n /** If true, .ec-pop is part of the DOM (*ngIf) + .active is set on .ec-pop-container. */\n @Input() @HostBinding('class.is-active') active: boolean;\n /** Flip and stays true after first show */\n activated = false;\n /** The used type on the host element */\n @Input() type: string;\n /** If set to true, the pop will hide when a click happens outside the pop. */\n @Input() hideOnClickOutside = false;\n // tslint:disable-next-line:no-output-rename\n @Output('toggle') _toggle: EventEmitter = new EventEmitter();\n\n clickEvent;\n\n /** Listens for document:click and hides */\n @HostListener('document:click', ['$event']) clickedOutside($event) {\n if (\n this.hideOnClickOutside &&\n this.active &&\n this.clickEvent &&\n $event !== this.clickEvent && // to ensure the show event wont hide immediately\n this.elementRef &&\n this.isOutside($event.target)) {\n this.hide();\n }\n }\n\n constructor(protected popService: PopService,\n public elementRef: ElementRef,\n protected cdr: ChangeDetectorRef\n ) {\n }\n\n /** yields true if the given element is outside the pop / or is the wrapper element itself (the backdrop) */\n isOutside(element) {\n return !this.elementRef.nativeElement.contains(element)/* ||\n element === this.elementRef.nativeElement */;\n }\n\n /** Shows if not active, hides if active. */ // active: boolean = !this.active, emit: boolean = false\n public toggle(e?) {\n if (this.active) {\n this.hide();\n } else {\n this.show(e);\n }\n this._toggle.emit(this.active);\n }\n\n /** Shows the pop. Sets active true and adds pop to popService.stack */\n public show(e?) {\n this.active = true;\n this.activated = true;\n this.popService.stack.add(this);\n if (e) {\n this.clickEvent = e;\n } else if (this.hideOnClickOutside) {\n // console.warn('To use hideOnClickOutside, you need to pass the click event to the show method of ec-pop!');\n }\n this.cdr.markForCheck();\n }\n\n /** Hides the pop. Sets active false and removes pop from popService.stack */\n public hide() {\n this.popService.stack.remove(this);\n this.active = false;\n this.cdr.markForCheck();\n }\n}\n\n \n\n \n \n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'PopComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/PopModule.html":{"url":"modules/PopModule.html","title":"module - PopModule","body":"\n \n\n\n\n\n Modules\n PopModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_PopModule\n\n\n\ncluster_PopModule_declarations\n\n\n\ncluster_PopModule_imports\n\n\n\ncluster_PopModule_exports\n\n\n\ncluster_PopModule_providers\n\n\n\n\nModalComponent\n\nModalComponent\n\n\n\nPopModule\n\nPopModule\n\nPopModule -->\n\nModalComponent->PopModule\n\n\n\n\n\nPopComponent\n\nPopComponent\n\nPopModule -->\n\nPopComponent->PopModule\n\n\n\n\n\nModalComponent \n\nModalComponent \n\nModalComponent -->\n\nPopModule->ModalComponent \n\n\n\n\n\nPopComponent \n\nPopComponent \n\nPopComponent -->\n\nPopModule->PopComponent \n\n\n\n\n\nIconModule\n\nIconModule\n\nPopModule -->\n\nIconModule->PopModule\n\n\n\n\n\nPopService\n\nPopService\n\nPopModule -->\n\nPopService->PopModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/pop/pop.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n ModalComponent\n \n \n PopComponent\n \n \n \n \n Providers\n \n \n PopService\n \n \n \n \n Imports\n \n \n IconModule\n \n \n \n \n Exports\n \n \n ModalComponent\n \n \n PopComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { PopComponent } from './pop.component';\nimport { PopService } from './pop.service';\nimport { ModalComponent } from '../modal/modal.component';\nimport { IconModule } from '../icon/icon.module';\n\nexport const popModuleConfig = {\n declarations: [\n PopComponent,\n ModalComponent,\n ],\n imports: [\n CommonModule,\n IconModule\n ],\n exports: [\n PopComponent,\n ModalComponent,\n ],\n providers: [PopService]\n};\n\n@NgModule(popModuleConfig)\nexport class PopModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/PopService.html":{"url":"injectables/PopService.html","title":"injectable - PopService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n PopService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/pop/pop.service.ts\n \n\n \n Description\n \n \n Holds a stack of all open pops. listens for escape keydown events to close the latest opened pop. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n defaultColumns\n \n \n stack\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.service.ts:11\n \n \n\n \n \n Listens for escape keys and hides latest pop + removes the pop from stack \n\n \n \n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n defaultColumns\n \n \n \n \n \n \n \n defaultColumns: number\n\n \n \n \n \n Type : number\n\n \n \n \n \n Default value : 9\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.service.ts:9\n \n \n\n \n \n default value for columns of any pop \n\n \n \n\n \n \n \n \n \n \n \n \n \n stack\n \n \n \n \n \n \n \n stack: Collection\n\n \n \n \n \n Type : Collection\n\n \n \n \n \n Default value : new Collection()\n \n \n \n \n Defined in packages/ui/src/lib/pop/pop.service.ts:11\n \n \n\n \n \n Stack of current opened pops \n\n \n \n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Collection } from '@ec.components/core';\nimport { PopComponent } from './pop.component';\n\n/** Holds a stack of all open pops. listens for escape keydown events to close the latest opened pop. */\n@Injectable()\nexport class PopService {\n /** default value for columns of any pop */\n defaultColumns = 9;\n /** Stack of current opened pops */\n stack: Collection = new Collection();\n /** Listens for escape keys and hides latest pop + removes the pop from stack */\n constructor() {\n window.addEventListener('keydown', (event) => {\n if ((event.keyCode === 27 || event.key === 'Escape') && this.stack.items.length) {\n const latestPop = this.stack.items[this.stack.items.length - 1];\n latestPop.hide();\n this.stack.remove(latestPop);\n }\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/ResourceActionbarState.html":{"url":"interfaces/ResourceActionbarState.html","title":"interface - ResourceActionbarState","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n ResourceActionbarState\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/resource-actionbar/resource-actionbar.component.ts\n \n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n action\n \n \n actionbar\n \n \n api\n \n \n Optional\n options\n \n \n relation\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n action\n \n \n \n \n action: ActionFunction\n\n \n \n\n\n \n \n Type : ActionFunction\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n actionbar\n \n \n \n \n actionbar: ActionbarComponent\n\n \n \n\n\n \n \n Type : ActionbarComponent\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n api\n \n \n \n \n api: Core\n\n \n \n\n\n \n \n Type : Core\n\n \n \n\n\n\n\n\n \n \n \n \n \n \n \n options\n \n \n \n \n options: Object\n\n \n \n\n\n \n \n Type : Object\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n \n \n \n \n \n relation\n \n \n \n \n relation: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n \n \n\n\n \n import { Component, OnInit, ElementRef, Input, ChangeDetectorRef, EventEmitter, Output } from '@angular/core';\nimport { ActionbarComponent, Action, ActionFunction, selectTemplate } from '@ec.components/ui';\nimport { NotificationsService, ListComponent } from '@ec.components/ui';\nimport { ResourceConfig } from '../resource-config/resource-config.service';\nimport ListResource from 'ec.sdk/lib/resources/ListResource';\nimport Core from 'ec.sdk/lib/Core';\nimport { Item } from '@ec.components/core';\nimport { SdkService } from '../sdk/sdk.service';\n\nexport interface ResourceActionbarState {\n api: Core;\n relation: string;\n actionbar: ActionbarComponent;\n action?: ActionFunction;\n options?: Object;\n}\n\n@Component({\n selector: 'ec-resource-actionbar',\n template: selectTemplate\n})\nexport class ResourceActionbarComponent extends ActionbarComponent implements OnInit {\n\n state: ResourceActionbarState;\n\n @Output() create: EventEmitter = new EventEmitter();\n @Output() select: EventEmitter> = new EventEmitter();\n\n @Input() actions: Action[];\n\n constructor(\n public notificationService: NotificationsService,\n public sdk: SdkService,\n public resourceConfig: ResourceConfig,\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef,\n ) {\n super(elementRef, cdr);\n }\n\n ngOnInit() {\n const state = {\n api: this.sdk.api,\n relation: 'tags'\n };\n const { api, relation } = state;\n this.sdk.ready.then(() => {\n this.loadResourceListActions({\n api,\n relation,\n actionbar: this\n });\n });\n }\n\n getResourceListActions(listResource: ListResource, relation: string, action?: ActionFunction): Action[] {\n const actions: Action[] = listResource.getAllItems()\n .map((resource) => {\n const { identifier, label } = this.resourceConfig.get(relation);\n return {\n id: resource[identifier],\n title: resource[label] || '- no title -',\n data: resource,\n path: relation,\n action: (item, bar) => {\n if (action) {\n action(item.getBody().data, bar);\n } else {\n console.log('no action specified..');\n }\n }\n };\n });\n if (listResource.hasNextLink()) {\n actions.push({\n id: 'next-page',\n title: `Load Page`,\n path: null,\n data: {},\n select: false,\n action: () => {\n listResource.followNextLink().then((list) => {\n const concatted = this.list.items\n .map(i => i.getBody())\n .filter(i => i.id !== 'next-page')\n .concat(this.getResourceListActions(list, relation, action));\n this.loadActions(concatted);\n });\n }\n });\n }\n return actions;\n }\n\n reload() {\n this.loadResourceListActions({\n ...this.state,\n options: {}\n });\n }\n\n loadResourceListActions(state: ResourceActionbarState = this.state, stack = true): Promise {\n const { api, relation, actionbar, action, options } = state;\n this.state = {\n ...this.state,\n ...state\n };\n const loading = api.resourceList(relation, options)\n .then(list => {\n return this.getResourceListActions(list, relation, action);\n }).then(actions => {\n if (actions) {\n actionbar.loadActions(actions, stack);\n }\n return actions;\n }).catch(error => {\n this.notificationService.emit({\n title: 'Error while loading Resources',\n error\n });\n }).then(actions => actions || []);\n if (actionbar.dropdownLoader) {\n actionbar.dropdownLoader.wait(loading);\n }\n return loading;\n }\n\n resourceAction({ relation, title, api, action, actionbar, add, path }:\n {\n relation: string,\n title: string,\n api: Core,\n action?: ActionFunction,\n actionbar?: ActionbarComponent,\n add?: boolean,\n path?: string\n }) {\n return {\n id: path || relation,\n title: title,\n add,\n action: () => this.loadResourceListActions(\n { api, relation, actionbar, action }\n )\n };\n }\n\n filterDropdownList(listComponent: ListComponent, query) {\n const paths = this.currentActions()\n .map(a => a.path)\n .filter((value, index, self) => self.indexOf(value) === index)\n .filter(v => !!v);\n if (!paths.length) {\n return super.filterDropdownList(listComponent, query);\n }\n const { identifier, label } = this.resourceConfig.get(this.state.relation);\n this.loadResourceListActions({\n ...this.state,\n options: {\n [label + '~']: { exact: query }\n }\n }, false).then((actions) => {\n if (actions.length === 0) {\n this.loadActions([{\n title: `\"${query}\" erstellen`,\n id: 'createnew',\n select: false,\n action: () => {\n if (this.create.observers.length) {\n this.create.emit(query);\n } else {\n const item = new Item({\n id: Date.now() + '',\n title: query,\n }, this.config);\n this.addItem(item);\n this.searchbar.clear();\n this.reload();\n }\n }\n }], false);\n }\n });\n\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ResourceConfig.html":{"url":"injectables/ResourceConfig.html","title":"injectable - ResourceConfig","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n ResourceConfig\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/resource-config/resource-config.service.ts\n \n\n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n base64uuid\n \n \n created\n \n \n get\n \n \n hexColor\n \n \n shortID\n \n \n stringField\n \n \n tagsField\n \n \n uuid\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n config\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(symbol: SymbolService, typeConfig: TypeConfigService)\n \n \n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:10\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n typeConfig\n \n \n TypeConfigService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n base64uuid\n \n \n \n \n \n \n \nbase64uuid()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:70\n \n \n\n\n \n \n regex for base64 uuid \n\n\n \n Returns : RegExp\n\n \n \n \n \n \n \n \n \n \n \n \n \n created\n \n \n \n \n \n \n \ncreated(label: string, symbol: SymbolService)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:24\n \n \n\n\n \n \n returns the config for a created field \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n label\n \n string\n \n \n \n No\n \n \n \n 'Date'\n \n\n \n \n symbol\n \n SymbolService\n \n \n \n No\n \n \n \n \n\n \n \n \n \n \n \n \n Returns : { label: string; sortable: boolean; view: string; display: any; group: any; form: boolean; immuta...\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n get\n \n \n \n \n \n \n \nget(relationName: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:14\n \n \n\n\n \n \n Returns the CrudConfig for the given relation name. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n relationName\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : CrudConfig\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n hexColor\n \n \n \n \n \n \n \nhexColor()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:36\n \n \n\n\n \n \n returns the config for a hexColor field \n\n\n \n Returns : { label: string; view: string; prefill: string; }\n\n \n \n \n \n \n \n \n \n \n \n \n \n shortID\n \n \n \n \n \n \n \nshortID()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:62\n \n \n\n\n \n \n returns regex for a shortID \n\n\n \n Returns : RegExp\n\n \n \n \n \n \n \n \n \n \n \n \n \n stringField\n \n \n \n \n \n \n \nstringField(label, filterable, sortable)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:53\n \n \n\n\n \n \n returns the config for a string field \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n label\n \n \n No\n \n \n \n \n\n \n \n filterable\n \n \n No\n \n \n \n true\n \n\n \n \n sortable\n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : { label: any; view: string; filterable: boolean; sortable: boolean; }\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n tagsField\n \n \n \n \n \n \n \ntagsField(label, list)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:44\n \n \n\n\n \n \n returns the config for a tags field \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n label\n \n \n No\n \n \n \n \n\n \n \n list\n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : { label: any; view: string; display: (value: any) => any; list: boolean; }\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n uuid\n \n \n \n \n \n \n \nuuid()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:66\n \n \n\n\n \n \n returns regex for a uuid \n\n\n \n Returns : RegExp\n\n \n \n \n \n \n\n\n\n \n \n Accessors\n \n \n \n \n \n \n config\n \n \n\n \n \n getconfig()\n \n \n \n \n Defined in packages/data/src/lib/resource-config/resource-config.service.ts:75\n \n \n \n \n Returns the whole resource-config, which maps a resource relation name to a CrudConfig. \n\n\n \n Returns : literal type\n\n \n \n \n\n \n \n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { SymbolService } from '@ec.components/ui';\nimport Resource from 'ec.sdk/lib/resources/Resource';\nimport { CrudConfig } from '../crud/crud-config.interface';\nimport { AdminEntryInputComponent } from '../entry-form/admin-entry-input.component';\nimport { TypeConfigService } from '../model-config/type-config.service';\n\n@Injectable()\n/** Contains default configurations for all kinds of resources. Used by ResourceList and ResourceForm. */\nexport class ResourceConfig {\n\n constructor(private symbol: SymbolService, private typeConfig: TypeConfigService) { }\n /** Returns the CrudConfig for the given relation name. */\n get(relationName: string): CrudConfig {\n if (!this.config[relationName]) {\n console.error(`${relationName} could not be found in the resource-config.\n Use one of ${Object.keys(this.config)}`);\n return {};\n } // TODO enrich fields with type with type-config?\n return this.config[relationName];\n }\n\n /** returns the config for a created field */\n created(label = 'Date', symbol: SymbolService) {\n return {\n label,\n sortable: true,\n view: 'date',\n display: this.typeConfig.displayDate(),\n group: this.typeConfig.groupDate(),\n form: false,\n immutable: true\n };\n }\n /** returns the config for a hexColor field */\n hexColor() {\n return {\n label: '#',\n view: 'color',\n prefill: '#ffffff'\n };\n }\n /** returns the config for a tags field */\n tagsField(label, list = true) {\n return {\n label,\n view: 'tags',\n display: (value) => value || [],\n list\n };\n }\n /** returns the config for a string field */\n stringField(label, filterable = true, sortable = true) {\n return {\n label,\n view: 'string',\n filterable,\n sortable\n };\n }\n /** returns regex for a shortID */\n shortID(): RegExp {\n return /^[0-9A-Za-z-_]{7,14}$/;\n }\n /** returns regex for a uuid */\n uuid(): RegExp {\n return /^[0-9A-F]{8}-[0-9A-F]{4}-4[0-9A-F]{3}-[89AB][0-9A-F]{3}-[0-9A-F]{12}$/i;\n }\n /** regex for base64 uuid */\n base64uuid(): RegExp {\n return /^[a-zA-Z0-9\\\\-_]{22}$/;\n }\n\n /** Returns the whole resource-config, which maps a resource relation name to a CrudConfig. */\n get config(): { [key: string]: CrudConfig } {\n return {\n dataManager: {\n identifier: 'dataManagerID',\n identifierPattern: this.uuid(),\n label: 'title',\n permissions: {\n post: 'dm-create',\n put: 'dm::edit',\n delete: 'dm::delete',\n get: true\n },\n fields: {\n hexColor: this.hexColor(),\n shortID: {\n immutable: true,\n list: false\n },\n title: Object.assign(this.stringField('Name'), { required: true }),\n description: {\n label: this.symbol.resolve('field.label.description'),\n view: 'string',\n filterable: true\n },\n config: {\n label: this.symbol.resolve('field.label.config'),\n view: 'json',\n list: false,\n immutable: true\n },\n defaultLocale: {\n list: false,\n immutable: true\n },\n locales: this.tagsField(this.symbol.resolve('field.label.locales'), false),\n publicAssetRights: Object.assign(\n this.tagsField(this.symbol.resolve('datamanager.field.label.publicAssetRights'), false),\n { immutable: true }),\n rights: Object.assign(this.tagsField('rights', false), { immutable: true }),\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n model: {\n identifier: 'modelID',\n identifierPattern: this.uuid(),\n label: 'title',\n fields: {\n hexColor: this.hexColor(),\n title: Object.assign(this.stringField('Model'), { required: true }),\n description: {\n label: this.symbol.resolve('field.label.description'),\n view: 'string',\n filterable: true,\n },\n locales: {\n list: false,\n prefill: []\n },\n fields: {\n view: 'tags',\n display: (value) => {\n return (value || []).map(field => field.title).filter(field => field[0] !== '_');\n },\n prefill: []\n },\n titleField: {\n view: 'string',\n list: false\n },\n config: {\n list: false,\n view: 'json'\n },\n hasEntries: {\n immutable: true,\n view: 'boolean'\n },\n hooks: {\n display: (value) => {\n return (value || []).map(hook => (hook.methods || []).join(', '));\n },\n view: 'tags'\n },\n policies: {\n display: (value) => {\n return (value || []).map(policy => policy.method);\n },\n view: 'tags'\n },\n sync: {\n list: false,\n view: 'json',\n immutable: true\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n // ec accounts\n account: {\n identifier: 'accountID',\n identifierPattern: this.uuid(),\n label: 'email',\n permissions: {\n get: 'acc:list',\n put: 'acc:edit:'\n },\n fields: {\n name: this.stringField(this.symbol.resolve('field.label.name')),\n email: {\n label: this.symbol.resolve('field.label.email'),\n view: 'string',\n filterable: true,\n sortable: true\n },\n hasPassword: {\n label: this.symbol.resolve('field.label.password'),\n view: 'boolean',\n filterable: true,\n sortable: true,\n readOnly: true\n },\n hasPendingEmail: {\n label: this.symbol.resolve('account.field.label.hasPendingEmail'),\n view: 'boolean',\n filterable: true,\n sortable: true,\n readOnly: true\n },\n language: {\n label: this.symbol.resolve('account.field.label.language'),\n view: 'string',\n list: false\n },\n openID: {\n list: false\n },\n permissions: this.tagsField(this.symbol.resolve('account.field.label.permissions'), false),\n groups: {\n label: this.symbol.resolve('account.field.label.groups'),\n type: 'groups',\n input: AdminEntryInputComponent,\n list: false,\n display: (value) => value ? value.map(group => group.name) : []\n },\n state: {\n label: this.symbol.resolve('account.field.label.state')\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n dmAccount: {\n identifier: 'accountID',\n identifierPattern: this.uuid(),\n label: 'email',\n permissions: {\n get: 'acc:list',\n put: 'acc:edit:'\n },\n methods: ['get', 'put', 'delete'],\n fields: {\n accountID: {\n label: this.symbol.resolve('field.label.id'),\n view: 'string',\n hideInList: true,\n },\n title: {\n label: 'Title',\n filterable: true,\n hideInList: true\n },\n email: {\n label: this.symbol.resolve('field.label.title'),\n view: 'string',\n filterable: true,\n sortable: true,\n resolve: (body) => body.email || body.accountID\n },\n hasPassword: {\n label: this.symbol.resolve('dmAccount.field.label.hasPassword'),\n view: 'boolean',\n filterable: true,\n readOnly: true\n },\n pending: {\n label: this.symbol.resolve('dmAccount.field.label.pending'),\n view: 'boolean',\n filterable: true,\n readOnly: true\n },\n oauth: {\n list: false\n }\n }\n },\n template: {\n identifier: 'templateID',\n identifierPattern: this.uuid(),\n label: 'name',\n permissions: {\n post: 'dm-template-create',\n get: 'dm-template::view'\n },\n fields: {\n name: {\n label: this.symbol.resolve('template.field.label.template'),\n view: 'string',\n filterable: true,\n sortable: true\n },\n version: {\n label: this.symbol.resolve('template.field.label.version'),\n display: this.typeConfig.displayDate(),\n group: this.typeConfig.groupDate(),\n form: false\n }\n }\n },\n app: {\n identifier: 'appID',\n identifierPattern: this.uuid(),\n permissions: {\n post: 'app-create',\n delete: 'app::delete',\n put: 'app::edit'\n },\n fields: {\n hexColor: this.hexColor(),\n shortID: {\n label: this.symbol.resolve('field.label.shortID'),\n list: false\n },\n title: {\n label: this.symbol.resolve('app.field.label.app'),\n view: 'string',\n filterable: true,\n sortable: true,\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n platform: {\n identifier: 'platformID',\n identifierPattern: this.uuid(),\n fields: {\n title: {\n label: this.symbol.resolve('platform.field.label.platform'),\n view: 'string'\n },\n platformType: {\n label: this.symbol.resolve('platform.field.label.platformType'),\n view: 'string'\n },\n config: {\n label: this.symbol.resolve('field.label.config'),\n view: 'json',\n list: false\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n build: {},\n deployment: {},\n asset: { // old ec.asset\n identifier: 'assetID',\n identifierPattern: this.uuid(),\n fields: {\n thumb: {\n form: false,\n label: this.symbol.resolve('asset.field.label.thumb'),\n view: 'preview',\n resolve: (asset) => {\n if (asset.type !== 'image') {\n return '';\n }\n return asset.getImageUrl(200);\n },\n immutable: true\n },\n assetID: {\n label: 'assetID',\n list: false,\n form: false,\n immutable: true\n },\n title: {\n label: this.symbol.resolve('field.label.title'),\n view: 'string',\n sortable: true,\n filterable: true\n },\n files: {\n label: this.symbol.resolve('asset.field.label.files'),\n view: 'tag',\n form: false,\n display: value => value.length,\n immutable: true\n },\n type: {\n filterOperator: 'exact',\n form: false,\n immutable: true\n },\n tags: this.tagsField(this.symbol.resolve('asset.field.label.tags')),\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n tags: {\n identifier: 'tag',\n label: 'tag',\n fields: {\n tag: {\n view: 'string',\n readOnly: true,\n sortable: true,\n filterable: true\n },\n count: {\n view: 'number',\n readOnly: true,\n create: false,\n sortable: true\n }\n }\n },\n legacyAsset: { // old public assets\n identifier: 'assetID',\n identifierPattern: this.uuid(),\n label: 'title',\n fields: {\n thumb: {\n form: false,\n label: this.symbol.resolve('asset.field.label.thumb'),\n view: 'preview',\n resolve: (asset) => {\n if (asset.type !== 'image') {\n return '';\n }\n return asset.getImageUrl(200);\n },\n immutable: true\n },\n assetID: {\n label: 'assetID',\n list: false,\n form: false,\n immutable: true\n },\n title: {\n label: this.symbol.resolve('field.label.title'),\n view: 'string',\n sortable: true,\n filterable: true\n },\n files: {\n label: this.symbol.resolve('asset.field.label.files'),\n view: 'tag',\n form: false,\n display: value => value.length,\n immutable: true\n },\n type: {\n filterOperator: 'exact',\n form: false,\n immutable: true\n },\n tags: this.tagsField(this.symbol.resolve('asset.field.label.tags')),\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n // https://doc.entrecode.de/en/develop/resources/dm-assetgroup/\n assetGroup: {\n identifier: 'assetGroupID',\n label: 'assetGroupID',\n fields: {\n assetGroupID: {\n label: this.symbol.resolve('asset.field.label.assetGroupID'),\n view: 'string',\n filterable: true\n },\n public: {\n view: 'boolean',\n prefill: false\n },\n settings: {\n view: 'json',\n display: (json) => JSON.stringify(json),\n prefill: {}\n /*\n urlExpiration: string\n disabledTypes: Array\n imageSizes: Array\n thumbSizes: Array\n */\n },\n policies: {\n view: 'tags',\n display: (policies) => (policies || []).map(p => p.method),\n prefill: []\n /*\n method: get, put, post, delete\n user: public, dmUser\n conditions: JSON or null (https://entrecode.de/schema/dm-assetgroup#definitions/conditions)\n */\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n dmAsset: { // new assets\n identifier: 'assetID',\n identifierPattern: this.base64uuid(),\n label: 'title',\n fields: {\n file: {\n label: this.symbol.resolve('dmAsset.field.label.file'),\n display: value => value.url,\n view: 'preview',\n immutable: true,\n form: false,\n list: false\n },\n thumb: {\n form: false,\n list: true,\n label: this.symbol.resolve('asset.field.label.thumb'),\n view: 'preview',\n resolve: (asset) => {\n if (asset.type !== 'image' || !asset.thumbnails || !asset.thumbnails.length) {\n return '';\n }\n return asset.thumbnails[0].url;\n },\n immutable: true\n },\n assetID: {\n label: this.symbol.resolve('dmAsset.field.label.assetID'),\n list: false,\n form: false,\n immutable: true\n },\n title: {\n label: this.symbol.resolve('field.label.title'),\n view: 'string',\n sortable: true,\n filterable: true\n },\n caption: {\n label: this.symbol.resolve('dmAsset.field.label.caption'),\n view: 'string'\n },\n duplicates: {\n label: this.symbol.resolve('dmAsset.field.label.duplicates'),\n view: 'number',\n list: false,\n form: false\n },\n thumbnails: {\n label: this.symbol.resolve('dmAsset.field.label.thumbnails'),\n display: values => values.map(value => value.url),\n list: false,\n form: false\n },\n type: {\n label: this.symbol.resolve('dmAsset.field.label.type'),\n view: 'string',\n filterOperator: 'any',\n hideInList: true,\n immutable: true,\n form: false\n },\n tags: {\n label: this.symbol.resolve('dmAsset.field.label.tags'),\n view: 'tags',\n filterOperator: 'any',\n hideInList: true\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n dmClient: {\n identifier: 'clientID',\n fields: {\n clientID: {\n label: this.symbol.resolve('client.field.label.clientID'),\n view: 'string'\n },\n callbackURL: {\n label: this.symbol.resolve('client.field.label.callbackURL'),\n view: 'string',\n },\n tokenMethod: this.tagsField(this.symbol.resolve('client.field.label.tokenMethod')),\n disableStrategies: this.tagsField(this.symbol.resolve('client.field.label.disableStrategies')),\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n role: {\n identifier: 'roleID',\n identifierPattern: this.uuid(),\n label: 'name',\n fields: {\n name: {\n label: this.symbol.resolve('field.label.name'),\n view: 'string',\n filterable: true,\n sortable: true\n },\n label: {\n label: this.symbol.resolve('field.label.label'),\n view: 'string'\n },\n accounts: {\n label: this.symbol.resolve('role.field.label.accounts'),\n type: 'accounts',\n prefill: [],\n list: false,\n display: (value) => value ? value.title : '',\n input: AdminEntryInputComponent,\n filterPopClass: 'dialog'\n },\n addRegistered: {\n label: this.symbol.resolve('role.field.label.addRegistered'),\n view: 'boolean'/* ,\n prefill: false */\n },\n addUnregistered: {\n label: this.symbol.resolve('role.field.label.addUnregistered'),\n view: 'boolean'/* ,\n prefill: false */\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n codeSource: {\n identifier: 'codeSourceID',\n identifierPattern: this.uuid(),\n fields: {\n codeSourceID: {\n label: this.symbol.resolve('field.label.id'),\n },\n codeSourceType: {\n label: this.symbol.resolve('field.label.type'),\n view: 'tag'\n },\n config: {\n label: this.symbol.resolve('field.label.config'),\n list: false\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n dataSource: {\n identifier: 'dataSourceID',\n identifierPattern: this.uuid(),\n fields: {\n dataSourceID: {\n label: this.symbol.resolve('field.label.id'),\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n target: {\n identifier: 'targetID',\n identifierPattern: this.uuid(),\n fields: {\n targetType: {\n label: this.symbol.resolve('field.label.type'),\n view: 'tag'\n },\n config: {\n label: this.symbol.resolve('field.label.config'),\n list: false\n },\n created: this.created(this.symbol.resolve('field.label.created'), this.symbol),\n }\n },\n group: {\n identifier: 'groupID',\n identifierPattern: this.uuid(),\n label: 'name',\n fields: {\n name: {\n label: this.symbol.resolve('field.label.name'),\n view: 'string'\n },\n permissions: {\n view: 'tags',\n display: (value) => value || [],\n list: false\n },\n /* created: this.created(this.symbol.resolve('field.label.created'), this.symbol), */\n }\n },\n invite: {\n identifier: 'invite',\n identifierPattern: this.uuid(),\n label: 'invite',\n fields: {\n invite: {\n view: 'string'\n },\n permissions: {\n view: 'tags'\n },\n groups: {\n view: 'tags',\n display: (group => group ? group.map(g => g.name) : [])\n }\n }\n }\n };\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ResourceCrudComponent.html":{"url":"components/ResourceCrudComponent.html","title":"component - ResourceCrudComponent","body":"\n \n\n\n\n\n\n Components\n ResourceCrudComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/resource-crud/resource-crud.component.ts\n\n\n \n Description\n \n \n The ResourceCrudComponent takes a relation name and api to render a resource list with create/edit/delete functionality out of the box.\n * \n *\n \n\n\n \n Implements\n \n \n OnInit\n WithLoader\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-resource-crud\n \n\n\n\n\n \n templateUrl\n ./resource-crud.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n list\n \n \n loader\n \n \n pop\n \n \n Public\n route\n \n \n Public\n router\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n create\n \n \n Public\n hasMethod\n \n \n initMethods\n \n \n ngOnInit\n \n \n select\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n config\n \n \n relation\n \n \n selection\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n columnClicked\n \n \n createClicked\n \n \n selected\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, auth: AuthService, loaderService: LoaderService, notificationService: NotificationsService, router: Router, route: ActivatedRoute)\n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:47\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n auth\n \n \n AuthService\n \n \n \n No\n \n \n \n \n loaderService\n \n \n LoaderService\n \n \n \n No\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n The API Connector that possesses the resource list, see https://entrecode.github.io/ec.sdk/#api-connectors \n\n \n Type : Core\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:29\n \n \n \n \n \n \n \n \n \n config\n \n \n CrudConfig for customization of the crud's UI.\n\n \n Type : CrudConfig\n\n \n \n Default value : {}\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:33\n \n \n \n \n \n \n \n \n \n relation\n \n \n The name of the resource. If given, the generic ListResource loading will be used (api.resourceList) \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:31\n \n \n \n \n \n \n \n \n \n selection\n \n \n The selection that should be used \n\n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:35\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n columnClicked\n \n \n Emits when a list element is clicked \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:43\n \n \n \n \n \n \n \n \n \n createClicked\n \n \n Output that is nexted when pressing the create button \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:47\n \n \n \n \n \n \n \n \n \n selected\n \n \n Emits when the selection has changed \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:45\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n create\n \n \n \n \n \n \n \ncreate()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:90\n \n \n\n\n \n \n Method that is invoked when pressing the create button. Default behaviour is opening the resource-pop. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n Public\n hasMethod\n \n \n \n \n \n \n \n \n hasMethod(method: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:72\n \n \n\n\n \n \n Returns true if the given method is part of the methods array (or if there is no methods array) \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n method\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n initMethods\n \n \n \n \n \n \n \ninitMethods()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:61\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:57\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \n \nselect(item)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:77\n \n \n\n\n \n \n Called on list columnClicked \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n list\n \n \n \n \n \n \n \n list: ResourceListComponent\n\n \n \n \n \n Type : ResourceListComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(ResourceListComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:37\n \n \n\n \n \n The ResourceListComponent inside the template. \n\n \n \n\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: LoaderComponent\n\n \n \n \n \n Type : LoaderComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LoaderComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:41\n \n \n\n \n \n The lists loader \n\n \n \n\n \n \n \n \n \n \n \n \n \n pop\n \n \n \n \n \n \n \n pop: ResourcePopComponent\n\n \n \n \n \n Type : ResourcePopComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(ResourcePopComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:39\n \n \n\n \n \n The Pop inside the template. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n route\n \n \n \n \n \n \n \n route: ActivatedRoute\n\n \n \n \n \n Type : ActivatedRoute\n\n \n \n \n \n Decorators : \n \n \n @Optional()\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:54\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n router\n \n \n \n \n \n \n \n router: Router\n\n \n \n \n \n Type : Router\n\n \n \n \n \n Decorators : \n \n \n @Optional()\n \n \n \n \n \n Defined in packages/data/src/lib/resource-crud/resource-crud.component.ts:53\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, Input, OnInit, Optional, Output, ViewChild } from '@angular/core';\nimport { ActivatedRoute, Router } from '@angular/router';\nimport { SdkService } from '../sdk/sdk.service';\nimport { Selection } from '@ec.components/core';\nimport { LoaderComponent } from '@ec.components/ui';\nimport { LoaderService } from '@ec.components/ui';\nimport { NotificationsService } from '@ec.components/ui';\nimport { AuthService } from '../auth/auth.service';\nimport { WithLoader } from '@ec.components/ui';\nimport { CrudConfig } from '../crud/crud-config.interface';\nimport { ResourceListComponent } from '../resource-list/resource-list.component';\nimport { ResourcePopComponent } from '../resource-pop/resource-pop.component';\nimport Core from 'ec.sdk/lib/Core';\n\n/** The ResourceCrudComponent takes a relation name and api to render a resource list with create/edit/delete functionality out of the box.\n * ```html\n * \n * ```\n * */\n@Component({\n selector: 'ec-resource-crud',\n templateUrl: './resource-crud.component.html',\n})\nexport class ResourceCrudComponent implements OnInit, WithLoader {\n /** The API Connector that possesses the resource list, see https://entrecode.github.io/ec.sdk/#api-connectors */\n @Input() api: Core; // sdk api connector\n /** The name of the resource. If given, the generic ListResource loading will be used (api.resourceList) */\n @Input() relation: string;\n /** CrudConfig for customization of the crud's UI.*/\n @Input() config: CrudConfig = {};\n /** The selection that should be used */\n @Input() selection: Selection;\n /** The ResourceListComponent inside the template. */\n @ViewChild(ResourceListComponent) list: ResourceListComponent;\n /** The Pop inside the template. */\n @ViewChild(ResourcePopComponent) pop: ResourcePopComponent;\n /** The lists loader */\n @ViewChild(LoaderComponent) loader: LoaderComponent;\n /** Emits when a list element is clicked */\n @Output() columnClicked: EventEmitter = new EventEmitter();\n /** Emits when the selection has changed */\n @Output() selected: EventEmitter = new EventEmitter();\n /** Output that is nexted when pressing the create button */\n @Output() createClicked: EventEmitter = new EventEmitter();\n\n constructor(private sdk: SdkService,\n private auth: AuthService,\n private loaderService: LoaderService,\n private notificationService: NotificationsService,\n @Optional() public router: Router,\n @Optional() public route: ActivatedRoute) {\n }\n\n ngOnInit() {\n this.initMethods();\n }\n\n initMethods() {\n if (!this.relation) {\n return;\n }\n this.auth.getAllowedResourceMethods(this.relation, {}, this.config.methods)\n .then((methods) => {\n this.config.methods = methods;\n });\n }\n\n /** Returns true if the given method is part of the methods array (or if there is no methods array) */\n public hasMethod(method: string) {\n return this.config.methods && this.config.methods.indexOf(method) !== -1;\n }\n\n /** Called on list columnClicked */\n select(item) {\n if (!item) {\n return;\n }\n if (this.columnClicked.observers.length) {\n this.columnClicked.emit(item);\n return;\n }\n this.pop.edit(item.getBody());\n // TODO: check CrudComponent#loadEntry for further inspiration\n }\n\n /** Method that is invoked when pressing the create button. Default behaviour is opening the resource-pop. */\n create() {\n if (this.createClicked.observers.length) {\n this.createClicked.next();\n } else if (this.pop) {\n this.pop.create();\n }\n }\n}\n\n \n\n \n \n \n \n \n {{config?.createLabel}}\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{config?.createLabel}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ResourceCrudComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ResourceListPopComponent.html":{"url":"components/ResourceListPopComponent.html","title":"component - ResourceListPopComponent","body":"\n \n\n\n\n\n\n Components\n ResourceListPopComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts\n\n\n\n \n Extends\n \n \n PopComponent\n \n\n \n Implements\n \n \n OnChanges\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-resource-list-pop\n \n\n\n\n\n \n templateUrl\n ./resource-list-pop.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n cdr\n \n \n Public\n elementRef\n \n \n lightModel\n \n \n Public\n popService\n \n \n Public\n resourceConfig\n \n \n searchbar\n \n \n activated\n \n \n clickEvent\n \n \n Public\n elementRef\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnChanges\n \n \n select\n \n \n Public\n hide\n \n \n isOutside\n \n \n Public\n show\n \n \n Public\n toggle\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n config\n \n \n relation\n \n \n selection\n \n \n active\n \n \n hideOnClickOutside\n \n \n type\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n columnClicked\n \n \n pasted\n \n \n toggle\n \n \n \n \n\n \n \n HostBindings\n \n \n \n \n \n \n class\n \n \n \n \n\n \n \n HostListeners\n \n \n \n \n \n \n document:click\n \n \n \n \n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(resourceConfig: ResourceConfig, popService: PopService, elementRef: ElementRef, cdr: ChangeDetectorRef)\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:24\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n resourceConfig\n \n \n ResourceConfig\n \n \n \n No\n \n \n \n \n popService\n \n \n PopService\n \n \n \n No\n \n \n \n \n elementRef\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n cdr\n \n \n ChangeDetectorRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n \n Type : Core\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:16\n \n \n \n \n \n \n \n \n \n config\n \n \n \n Type : ListConfig\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:17\n \n \n \n \n \n \n \n \n \n relation\n \n \n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:15\n \n \n \n \n \n \n \n \n \n selection\n \n \n \n Type : Selection\n\n \n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:18\n \n \n \n \n \n \n \n \n \n active\n \n \n If true, .ec-pop is part of the DOM (*ngIf) + .active is set on .ec-pop-container. \n\n \n Type : boolean\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:29\n \n \n \n \n \n \n \n \n \n hideOnClickOutside\n \n \n If set to true, the pop will hide when a click happens outside the pop. \n\n \n Default value : false\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:35\n \n \n \n \n \n \n \n \n \n type\n \n \n The used type on the host element \n\n \n Type : string\n\n \n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:33\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n columnClicked\n \n \n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:19\n \n \n \n \n \n \n \n \n \n pasted\n \n \n $event Type: EventEmitter>\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:20\n \n \n \n \n \n \n \n \n \n toggle\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:37\n \n \n \n \n\n \n HostBindings \n \n \n \n \n \n \n class\n \n \n \n \n \n \n \n class: \n\n \n \n \n \n Default value : 'toast-wrapper'\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:23\n \n \n\n \n \n Set host class to make sure the type is used \n\n \n \n\n \n \n\n\n \n HostListeners \n \n \n \n \n \n \n document:click\n \n \n \n \n \n \n \n Arguments : '$event' \n \n \n \n \ndocument:click($event)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:42\n \n \n\n\n \n \n Listens for document:click and hides \n\n\n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnChanges\n \n \n \n \n \n \n \nngOnChanges()\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:35\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \n \nselect(item)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:45\n \n \n\n\n \n \n emits columnClicked event or toggles selection if no observers. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n item\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n hide\n \n \n \n \n \n \n \n \n hide()\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:90\n \n \n\n\n \n \n Hides the pop. Sets active false and removes pop from popService.stack \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n isOutside\n \n \n \n \n \n \n \nisOutside(element)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:61\n \n \n\n\n \n \n yields true if the given element is outside the pop / or is the wrapper element itself (the backdrop) \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n element\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n show\n \n \n \n \n \n \n \n \n show(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:77\n \n \n\n\n \n \n Shows the pop. Sets active true and adds pop to popService.stack \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n toggle\n \n \n \n \n \n \n \n \n toggle(e?)\n \n \n\n\n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:67\n \n \n\n\n \n \n Shows if not active, hides if active. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n cdr\n \n \n \n \n \n \n \n cdr: ChangeDetectorRef\n\n \n \n \n \n Type : ChangeDetectorRef\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:30\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:29\n \n \n\n\n \n \n \n \n \n \n \n \n \n lightModel\n \n \n \n \n \n \n \n lightModel: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:24\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n popService\n \n \n \n \n \n \n \n popService: PopService\n\n \n \n \n \n Type : PopService\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:28\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n resourceConfig\n \n \n \n \n \n \n \n resourceConfig: ResourceConfig\n\n \n \n \n \n Type : ResourceConfig\n\n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:27\n \n \n\n\n \n \n \n \n \n \n \n \n \n searchbar\n \n \n \n \n \n \n \n searchbar: SearchbarComponent\n\n \n \n \n \n Type : SearchbarComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(SearchbarComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/resource-list-pop/resource-list-pop.component.ts:21\n \n \n\n\n \n \n \n \n \n \n \n \n \n activated\n \n \n \n \n \n \n \n activated: \n\n \n \n \n \n Default value : false\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:31\n \n \n\n \n \n Flip and stays true after first show \n\n \n \n\n \n \n \n \n \n \n \n \n \n clickEvent\n \n \n \n \n \n \n \n clickEvent: \n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:39\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n elementRef\n \n \n \n \n \n \n \n elementRef: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Inherited from PopComponent\n\n \n \n \n \n Defined in PopComponent:55\n \n \n\n\n \n \n\n\n\n\n\n \n import { ChangeDetectorRef, Component, ElementRef, EventEmitter, HostBinding, Input, OnChanges, Output, ViewChild } from '@angular/core';\nimport { Item, ListConfig, Selection } from '@ec.components/core';\nimport { PopComponent, PopService, SearchbarComponent } from '@ec.components/ui';\nimport Core from 'ec.sdk/lib/Core';\nimport Resource from 'ec.sdk/lib/resources/Resource';\nimport { ResourceConfig } from '../resource-config/resource-config.service';\n\n@Component({\n selector: 'ec-resource-list-pop',\n templateUrl: './resource-list-pop.component.html',\n\n})\n\nexport class ResourceListPopComponent extends PopComponent implements OnChanges {\n @Input() relation: string;\n @Input() api: Core;\n @Input() config: ListConfig;\n @Input() selection: Selection;\n @Output() columnClicked: EventEmitter> = new EventEmitter();\n @Output() pasted: EventEmitter> = new EventEmitter();\n @ViewChild(SearchbarComponent) searchbar: SearchbarComponent;\n /** Set host class to make sure the type is used */\n @HostBinding('class') class = 'toast-wrapper';\n lightModel: any;\n\n constructor(\n public resourceConfig: ResourceConfig,\n public popService: PopService,\n public elementRef: ElementRef,\n public cdr: ChangeDetectorRef\n ) {\n super(popService, elementRef, cdr);\n }\n\n ngOnChanges() {\n if (this.relation) {\n this.config = Object.assign({}, this.config || {}, this.resourceConfig.get(this.relation));\n }\n if (this.config) {\n this.config = Object.assign({ hidePagination: true, disableHeader: true }, this.config);\n }\n }\n\n /** emits columnClicked event or toggles selection if no observers. */\n select(item) {\n if (this.columnClicked.observers.length) {\n this.columnClicked.emit(item);\n } else if (this.selection) {\n this.selection.toggle(item);\n }\n this.searchbar.focusEvent.emit(true);\n }\n}\n\n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ResourceListPopComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/ResourceModule.html":{"url":"modules/ResourceModule.html","title":"module - ResourceModule","body":"\n \n\n\n\n\n Modules\n ResourceModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_ResourceModule\n\n\n\ncluster_ResourceModule_declarations\n\n\n\ncluster_ResourceModule_imports\n\n\n\ncluster_ResourceModule_exports\n\n\n\ncluster_ResourceModule_providers\n\n\n\n\nApiActionbarComponent\n\nApiActionbarComponent\n\n\n\nResourceModule\n\nResourceModule\n\nResourceModule -->\n\nApiActionbarComponent->ResourceModule\n\n\n\n\n\nResourceActionbarComponent\n\nResourceActionbarComponent\n\nResourceModule -->\n\nResourceActionbarComponent->ResourceModule\n\n\n\n\n\nResourceCrudComponent\n\nResourceCrudComponent\n\nResourceModule -->\n\nResourceCrudComponent->ResourceModule\n\n\n\n\n\nResourceDeletePopComponent\n\nResourceDeletePopComponent\n\nResourceModule -->\n\nResourceDeletePopComponent->ResourceModule\n\n\n\n\n\nResourceFormComponent\n\nResourceFormComponent\n\nResourceModule -->\n\nResourceFormComponent->ResourceModule\n\n\n\n\n\nResourceListComponent\n\nResourceListComponent\n\nResourceModule -->\n\nResourceListComponent->ResourceModule\n\n\n\n\n\nResourceListPopComponent\n\nResourceListPopComponent\n\nResourceModule -->\n\nResourceListPopComponent->ResourceModule\n\n\n\n\n\nResourcePopComponent\n\nResourcePopComponent\n\nResourceModule -->\n\nResourcePopComponent->ResourceModule\n\n\n\n\n\nResourceSelectComponent\n\nResourceSelectComponent\n\nResourceModule -->\n\nResourceSelectComponent->ResourceModule\n\n\n\n\n\nApiActionbarComponent \n\nApiActionbarComponent \n\nApiActionbarComponent -->\n\nResourceModule->ApiActionbarComponent \n\n\n\n\n\nResourceActionbarComponent \n\nResourceActionbarComponent \n\nResourceActionbarComponent -->\n\nResourceModule->ResourceActionbarComponent \n\n\n\n\n\nResourceCrudComponent \n\nResourceCrudComponent \n\nResourceCrudComponent -->\n\nResourceModule->ResourceCrudComponent \n\n\n\n\n\nResourceDeletePopComponent \n\nResourceDeletePopComponent \n\nResourceDeletePopComponent -->\n\nResourceModule->ResourceDeletePopComponent \n\n\n\n\n\nResourceFormComponent \n\nResourceFormComponent \n\nResourceFormComponent -->\n\nResourceModule->ResourceFormComponent \n\n\n\n\n\nResourceListComponent \n\nResourceListComponent \n\nResourceListComponent -->\n\nResourceModule->ResourceListComponent \n\n\n\n\n\nResourceListPopComponent \n\nResourceListPopComponent \n\nResourceListPopComponent -->\n\nResourceModule->ResourceListPopComponent \n\n\n\n\n\nResourcePopComponent \n\nResourcePopComponent \n\nResourcePopComponent -->\n\nResourceModule->ResourcePopComponent \n\n\n\n\n\nResourceSelectComponent \n\nResourceSelectComponent \n\nResourceSelectComponent -->\n\nResourceModule->ResourceSelectComponent \n\n\n\n\n\nSdkModule \n\nSdkModule \n\nSdkModule -->\n\nResourceModule->SdkModule \n\n\n\n\n\nUiModule \n\nUiModule \n\nUiModule -->\n\nResourceModule->UiModule \n\n\n\n\n\nSdkModule\n\nSdkModule\n\nResourceModule -->\n\nSdkModule->ResourceModule\n\n\n\n\n\nUiModule\n\nUiModule\n\nResourceModule -->\n\nUiModule->ResourceModule\n\n\n\n\n\nResourceConfig\n\nResourceConfig\n\nResourceModule -->\n\nResourceConfig->ResourceModule\n\n\n\n\n\nResourceService\n\nResourceService\n\nResourceModule -->\n\nResourceService->ResourceModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/data/src/lib/resource/resource.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n ApiActionbarComponent\n \n \n ResourceActionbarComponent\n \n \n ResourceCrudComponent\n \n \n ResourceDeletePopComponent\n \n \n ResourceFormComponent\n \n \n ResourceListComponent\n \n \n ResourceListPopComponent\n \n \n ResourcePopComponent\n \n \n ResourceSelectComponent\n \n \n \n \n EntryComponents\n \n \n ResourceListComponent\n \n \n \n \n Providers\n \n \n ResourceConfig\n \n \n ResourceService\n \n \n \n \n Imports\n \n \n SdkModule\n \n \n UiModule\n \n \n \n \n Exports\n \n \n ApiActionbarComponent\n \n \n ResourceActionbarComponent\n \n \n ResourceCrudComponent\n \n \n ResourceDeletePopComponent\n \n \n ResourceFormComponent\n \n \n ResourceListComponent\n \n \n ResourceListPopComponent\n \n \n ResourcePopComponent\n \n \n ResourceSelectComponent\n \n \n SdkModule\n \n \n UiModule\n \n \n \n \n \n\n\n \n\n\n \n // import { BrowserModule } from '@angular/platform-browser';\nimport { CommonModule } from '@angular/common';\nimport { FormsModule } from '@angular/forms';\nimport { NgModule } from '@angular/core';\nimport { UiModule } from '@ec.components/ui';\nimport { SdkModule } from '../sdk/sdk.module';\nimport { ResourceListComponent } from '../resource-list/resource-list.component';\nimport { ResourceFormComponent } from '../resource-form/resource-form.component';\nimport { ResourcePopComponent } from '../resource-pop/resource-pop.component';\nimport { ResourceCrudComponent } from '../resource-crud/resource-crud.component';\nimport { ResourceDeletePopComponent } from '../resource-delete-pop/resource-delete-pop.component';\nimport { ResourceSelectComponent } from '../resource-select/resource-select.component';\nimport { ResourceService } from '../resource-config/resource.service';\nimport { ResourceConfig } from '../resource-config/resource-config.service';\nimport { ResourceListPopComponent } from '../resource-list-pop/resource-list-pop.component';\nimport { ResourceActionbarComponent } from '../resource-actionbar/resource-actionbar.component';\nimport { ApiActionbarComponent } from '../resource-actionbar/api-actionbar.component';\n\n@NgModule({\n entryComponents: [\n ResourceListComponent,\n ],\n declarations: [\n ResourceListComponent,\n ResourceListPopComponent,\n ResourceFormComponent,\n ResourcePopComponent,\n ResourceCrudComponent,\n ResourceDeletePopComponent,\n ResourceSelectComponent,\n ResourceActionbarComponent,\n ApiActionbarComponent,\n ],\n imports: [\n CommonModule,\n FormsModule,\n UiModule,\n SdkModule,\n ],\n exports: [\n UiModule,\n SdkModule,\n ResourceListComponent,\n ResourceListPopComponent,\n ResourceFormComponent,\n ResourcePopComponent,\n ResourceCrudComponent,\n ResourceDeletePopComponent,\n ResourceSelectComponent,\n ResourceActionbarComponent,\n ApiActionbarComponent,\n ],\n providers: [\n ResourceService,\n ResourceConfig,\n ],\n})\nexport class ResourceModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/ResourceService.html":{"url":"injectables/ResourceService.html","title":"injectable - ResourceService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n ResourceService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/resource-config/resource.service.ts\n \n\n \n Description\n \n \n The CRUD service is meant to be used when modifying entries.\nAs the letters state it should be used to create update and delete entries.\nEach action fires up a change that can be subscribed upon in any component to react to relevant\nchanges.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n changes\n \n \n Public\n config\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n change\n \n \n clean\n \n \n create\n \n \n del\n \n \n isImmutableProperty\n \n \n matches\n \n \n save\n \n \n update\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, config: ResourceConfig)\n \n \n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:35\n \n \n\n \n \n Injects sdk \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n config\n \n \n ResourceConfig\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n change\n \n \n \n \n \n \n \nchange(filter?: Update)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:53\n \n \n\n\n \n \n Yields an observable that emits for all updates that match the given filter \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n filter\n \n Update\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : Observable\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n clean\n \n \n \n \n \n \n \nclean(value: Object, setEmptyStringsToNull, deleteNullProperties)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:103\n \n \n\n\n \n \n Removes all null or undefined values from the given object \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n value\n \n Object\n \n \n \n No\n \n \n \n \n\n \n \n setEmptyStringsToNull\n \n \n \n \n No\n \n \n \n true\n \n\n \n \n deleteNullProperties\n \n \n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : Object\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n create\n \n \n \n \n \n \n \ncreate(relation: string, value: Object, api: Core)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:121\n \n \n\n\n \n \n Creates a new resource with the given value for the given relation. Fires the \"create\" change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n relation\n \n string\n \n \n \n No\n \n \n\n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n api\n \n Core\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n del\n \n \n \n \n \n \n \ndel(relation: string, resource: Resource)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:132\n \n \n\n\n \n \n deletes the given resource and emits the \"delete\" change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n relation\n \n string\n \n \n \n No\n \n \n\n \n \n resource\n \n Resource\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n isImmutableProperty\n \n \n \n \n \n \n \nisImmutableProperty(key: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:97\n \n \n\n\n \n \n Returns true if the given field key is an immutable system property \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n matches\n \n \n \n \n \n \n \nmatches(change: Update, filter: Update)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:47\n \n \n\n\n \n \n Gives true if the given change fits all property values of the filter. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n change\n \n Update\n \n \n \n No\n \n \n\n \n \n filter\n \n Update\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : boolean\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n save\n \n \n \n \n \n \n \nsave(item: Item, value: Object, relation: string, api: Core)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:64\n \n \n\n\n \n \n Saves the given resource with the given value. If the resource is not yet existing,\nit will be created.Otherwise it will be updated. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n item\n \n Item\n \n \n \n No\n \n \n\n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n relation\n \n string\n \n \n \n No\n \n \n\n \n \n api\n \n Core\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n update\n \n \n \n \n \n \n \nupdate(relation, resource: Resource, value: Object)\n \n \n\n\n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:82\n \n \n\n\n \n \n Updates the given resource with the new value. Fires the \"update\" change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n relation\n \n \n \n \n No\n \n \n\n \n \n resource\n \n Resource\n \n \n \n No\n \n \n\n \n \n value\n \n Object\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n changes\n \n \n \n \n \n \n \n changes: Subject\n\n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:35\n \n \n\n \n \n The changes event is emitted everytime an resource is created or updated. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n config\n \n \n \n \n \n \n \n config: ResourceConfig\n\n \n \n \n \n Type : ResourceConfig\n\n \n \n \n \n Defined in packages/data/src/lib/resource-config/resource.service.ts:38\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Item } from '@ec.components/core';\nimport Core from 'ec.sdk/lib/Core';\nimport Resource from 'ec.sdk/lib/resources/Resource';\nimport { Subject, Observable } from 'rxjs';\nimport { filter as rxFilter } from 'rxjs/operators';\nimport { ResourceList } from '../resource-list/resource-list';\nimport { SdkService } from '../sdk/sdk.service';\nimport { ResourceConfig } from './resource-config.service';\n\n/** Instances of Update are emitted by the changes EventEmitter of the CrudService. */\nexport interface Update {\n /** The relation that has been updated. */\n relation: string | string[];\n /** The relevant resource. */\n resource?: Resource;\n /** The list where it happened. */\n list?: ResourceList;\n /** The type of update. (create/read/update/delete) */\n type?: 'post' | 'get' | 'put' | 'delete';\n /** An identifier associated with the update e.g. an entryID */\n identifier?: string;\n /** If true, the Update will reach all subscribers, ignoring all filters. Use with caution (reloads everything) */\n broadcast?: boolean;\n}\n\n/** The CRUD service is meant to be used when modifying entries.\n * As the letters state it should be used to create update and delete entries.\n * Each action fires up a change that can be subscribed upon in any component to react to relevant\n * changes.\n * */\n@Injectable()\nexport class ResourceService {\n /** The changes event is emitted everytime an resource is created or updated. */\n public changes: Subject = new Subject();\n\n /** Injects sdk */\n constructor(private sdk: SdkService, public config: ResourceConfig) {\n /* this.sdk.changesEnvironment.subscribe(env =>\n this.changes.next({\n relation: 'environment',\n broadcast: true\n })) */\n }\n\n /** Gives true if the given change fits all property values of the filter. */\n matches(change: Update, filter: Update): boolean {\n return change.broadcast || Object.keys(filter)\n .reduce((match, key) => match && change[key] === filter[key], true);\n }\n\n /** Yields an observable that emits for all updates that match the given filter */\n change(filter?: Update): Observable {\n if (!filter) {\n return this.changes.asObservable();\n }\n return this.changes.asObservable().pipe(\n rxFilter((change: Update) => this.matches(change, filter))\n );\n }\n\n /** Saves the given resource with the given value. If the resource is not yet existing,\n * it will be created.Otherwise it will be updated. */\n save(item: Item, value: Object, relation: string, api: Core): Promise {\n const resource = item.getBody();\n if (item.config.onSave) {\n return Promise.resolve(item.config.onSave(item, value));\n }\n item.deleteImmutableProperties(value);\n if (resource && resource.save) {\n return this.update(relation, resource, value);\n }\n return this.create(relation, value, api)\n .then((_resource) => {\n return _resource;\n }).catch((err) => {\n return Promise.reject(err);\n });\n }\n\n /** Updates the given resource with the new value. Fires the \"update\" change. */\n update(relation, resource: Resource, value: Object): Promise {\n const oldValues = {}; // save old values\n Object.keys(value).forEach((key) => oldValues[key] = resource[key]);\n Object.assign(resource, this.clean(value, false, false)); // assign new form values\n return resource.save().then((_resource) => {\n this.changes.next({ relation, resource: _resource, type: 'put' });\n return _resource;\n })\n .catch((err) => {\n Object.assign(resource, this.clean(oldValues, false, false)); // fall back to old values\n return Promise.reject(err);\n });\n }\n\n /** Returns true if the given field key is an immutable system property */\n isImmutableProperty(key: string) {\n return key[0] === '_' ||\n ['id', 'created', 'modified'].indexOf(key) !== -1;\n }\n\n /** Removes all null or undefined values from the given object */\n clean(value: Object, setEmptyStringsToNull = true, deleteNullProperties = true): Object {\n for (const key in value) {\n if (value.hasOwnProperty(key)) {\n if (setEmptyStringsToNull && value[key] === '') { // clear empty strings\n value[key] = null;\n }\n if (deleteNullProperties && value[key] === null) {\n delete value[key];\n }\n if (this.isImmutableProperty(key)) { // filter system properties\n delete value[key];\n }\n }\n }\n return value;\n }\n\n /** Creates a new resource with the given value for the given relation. Fires the \"create\" change. */\n create(relation: string, value: Object, api: Core): Promise {\n return api.create(relation, this.clean(value))\n .then((resource: Resource) => {\n this.changes.next({ relation, resource, type: 'post' });\n return resource;\n }).catch((err) => {\n return Promise.reject(err);\n });\n }\n\n /** deletes the given resource and emits the \"delete\" change. */\n del(relation: string, resource: Resource) {\n return resource.del().then((res) => {\n this.changes.next({ relation, resource, type: 'delete' });\n return res;\n });\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/SdkField.html":{"url":"interfaces/SdkField.html","title":"interface - SdkField","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n SdkField\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/model-config/sdk-field.ts\n \n\n \n Description\n \n \n Field Config as obtained by PublicAPI#getFieldConfig.\nSee https://doc.entrecode.de/data_manager/#field-data-types for more info\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n config\n \n \n default\n \n \n description\n \n \n localizable\n \n \n mutable\n \n \n readOnly\n \n \n required\n \n \n title\n \n \n type\n \n \n unique\n \n \n validation\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n config\n \n \n \n \n config: Object\n\n \n \n\n\n \n \n Type : Object\n\n \n \n\n\n\n\n\n \n \n further field config options (like columns etc.) \n\n \n \n \n \n \n \n \n \n \n default\n \n \n \n \n default: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Default value that is returned for a newly created required field on old entries \n\n \n \n \n \n \n \n \n \n \n description\n \n \n \n \n description: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Field Description. Used for placeholders \n\n \n \n \n \n \n \n \n \n \n localizable\n \n \n \n \n localizable: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n Not implemented yet. \n\n \n \n \n \n \n \n \n \n \n mutable\n \n \n \n \n mutable: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n Tells if the field value can be changed. If true, the field is a system field \n\n \n \n \n \n \n \n \n \n \n readOnly\n \n \n \n \n readOnly: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n If true, the field can only be altered when creating. \n\n \n \n \n \n \n \n \n \n \n required\n \n \n \n \n required: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n If true, the field must have a value \n\n \n \n \n \n \n \n \n \n \n title\n \n \n \n \n title: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n System Title \n\n \n \n \n \n \n \n \n \n \n type\n \n \n \n \n type: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Field Type \n\n \n \n \n \n \n \n \n \n \n unique\n \n \n \n \n unique: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n\n\n\n\n \n \n Unique: each entry has a unique value for that field \n\n \n \n \n \n \n \n \n \n \n validation\n \n \n \n \n validation: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n Validation info, depends on field type. \n\n \n \n \n \n \n \n\n\n \n export interface SdkField {\n /** further field config options (like columns etc.) */\n config: Object;\n /** Field Type */\n type: string;\n /** System Title */\n title: string;\n /** Unique: each entry has a unique value for that field */\n unique: boolean;\n /** Default value that is returned for a newly created required field on old entries */\n default: string;\n /** Tells if the field value can be changed. If true, the field is a system field */\n mutable: boolean;\n /** If true, the field can only be altered when creating. */\n readOnly: boolean;\n /** If true, the field must have a value */\n required: boolean;\n /** Validation info, depends on field type. */\n validation: string;\n /** Field Description. Used for placeholders */\n description: string;\n /** Not implemented yet. */\n localizable: boolean;\n};\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/SdkModule.html":{"url":"modules/SdkModule.html","title":"module - SdkModule","body":"\n \n\n\n\n\n Modules\n SdkModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SdkModule\n\n\n\ncluster_SdkModule_providers\n\n\n\n\nSdkService\n\nSdkService\n\n\n\nSdkModule\n\nSdkModule\n\nSdkModule -->\n\nSdkService->SdkModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/data/src/lib/sdk/sdk.module.ts\n \n\n\n\n\n \n \n \n Providers\n \n \n SdkService\n \n \n \n \n \n\n\n \n\n\n \n // import { BrowserModule } from '@angular/platform-browser';\nimport { NgModule } from '@angular/core';\nimport { SdkService } from './sdk.service';\n\n@NgModule({\n entryComponents: [],\n declarations: [],\n imports: [],\n exports: [],\n providers: [\n SdkService\n ],\n})\nexport class SdkModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/SdkService.html":{"url":"injectables/SdkService.html","title":"injectable - SdkService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n SdkService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/sdk/sdk.service.ts\n \n\n \n Description\n \n \n The SdkService exposes all instances of the ec.sdk APIs.\nTo be able to use it, you have to provide an environment like this in your module's providers:\n {\n provide: 'environment',\n useValue: {\n datamanagerID: '83cc6374',\n environment: 'stage',\n clientID: 'rest',\n // init: false\n // the init option will prevent automatically initing the sdk.\n // you have to call sdk.init() yourself. This can be useful if your environment is not known before runtime\n }\n }The environment is optional, defaulting to live. See\nhttps://entrecode.github.io/ec.sdk/#environment for more info. The clientID is only optional if\nyou do not plan to use authentication. See https://entrecode.github.io/ec.sdk/#environment =>\nsetClientID.\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n _api\n \n \n Public\n accounts\n \n \n apiResolved\n \n \n Public\n changesEnvironment\n \n \n Public\n datamanager\n \n \n Public\n environment\n \n \n Public\n ready\n \n \n roots\n \n \n Private\n schemaRequests\n \n \n Public\n session\n \n \n Public\n user\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n getAccount\n \n \n getSchema\n \n \n Public\n init\n \n \n noApi\n \n \n useDatamanager\n \n \n \n \n\n\n\n\n\n \n \n Accessors\n \n \n \n \n \n \n root\n \n \n api\n \n \n \n \n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(environment)\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:78\n \n \n\n \n \n Calls init and sets ready to true when finished. Omits init if environment has set init: false \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n environment\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n getAccount\n \n \n \n \n \n \n \ngetAccount(api)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:132\n \n \n\n\n \n \n Returns the current account. Works for all apis \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n api\n \n \n No\n \n \n \n this.accounts\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n getSchema\n \n \n \n \n \n \n \ngetSchema(model, api)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:121\n \n \n\n\n \n \n Returns a schema for the given model. Caches the promise. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n model\n \n \n No\n \n \n \n \n\n \n \n api\n \n \n No\n \n \n \n this._api\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Public\n init\n \n \n \n \n \n \n \n \n init(environment)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:88\n \n \n\n\n \n \n Creates all the API instances and determines the current user. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n environment\n \n \n No\n \n \n \n this.environment\n \n\n \n \n \n \n \n \n \n Returns : Promise\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n noApi\n \n \n \n \n \n \n \nnoApi(api: Core)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:144\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n api\n \n Core\n \n \n \n No\n \n \n \n this._api\n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n useDatamanager\n \n \n \n \n \n \n \nuseDatamanager(shortID: string, environment)\n \n \n\n\n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:111\n \n \n\n\n \n \n Uses the given datamanager and optional short id to init api.\nIf you set \"datamanagerID\" in your environment, this method is called automatically. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n shortID\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n environment\n \n \n \n \n No\n \n \n \n this.environment\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n _api\n \n \n \n \n \n \n \n _api: PublicAPI\n\n \n \n \n \n Type : PublicAPI\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:51\n \n \n\n \n \n Current Public API instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n accounts\n \n \n \n \n \n \n \n accounts: Accounts\n\n \n \n \n \n Type : Accounts\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:49\n \n \n\n \n \n Current Accounts instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n apiResolved\n \n \n \n \n \n \n \n apiResolved: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:34\n \n \n\n \n \n Flips to true as soon as the PublicAPI instance was resolved (now contains model and asset relations) \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n changesEnvironment\n \n \n \n \n \n \n \n changesEnvironment: Subject\n\n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:53\n \n \n\n \n \n Emits when the env changes \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n datamanager\n \n \n \n \n \n \n \n datamanager: DataManager\n\n \n \n \n \n Type : DataManager\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:67\n \n \n\n \n \n Current DataManager instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n environment\n \n \n \n \n \n \n \n environment: \n\n \n \n \n \n Decorators : \n \n \n @Inject('environment')\n \n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:81\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n ready\n \n \n \n \n \n \n \n ready: Promise\n\n \n \n \n \n Type : Promise\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:78\n \n \n\n \n \n Promise that should be used before using any auth related stuff:\n * this.sdk.ready.then(account => {});\n *\n \n \n\n \n \n \n \n \n \n \n \n \n roots\n \n \n \n \n \n \n \n roots: literal type\n\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:36\n \n \n\n \n \n Collects different datamanager root instances \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n schemaRequests\n \n \n \n \n \n \n \n schemaRequests: object\n\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {}\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:71\n \n \n\n \n \n Pending schema requests \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n session\n \n \n \n \n \n \n \n session: Session\n\n \n \n \n \n Type : Session\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:47\n \n \n\n \n \n Current Session instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n user\n \n \n \n \n \n \n \n user: AccountResource\n\n \n \n \n \n Type : AccountResource\n\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:69\n \n \n\n \n \n Current User \n\n \n \n\n \n \n\n\n \n \n Accessors\n \n \n \n \n \n \n root\n \n \n\n \n \n getroot()\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:37\n \n \n\n \n \n \n \n \n \n \n api\n \n \n\n \n \n getapi()\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:55\n \n \n \n \n getter for api. Throws error if no api present. \n\n\n \n Returns : PublicAPI\n\n \n \n \n\n \n \n setapi(api)\n \n \n \n \n Defined in packages/data/src/lib/sdk/sdk.service.ts:62\n \n \n \n \n Sets the public api \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n api\n \n \n \n No\n \n \n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n\n \n\n\n \n import { Inject, Injectable } from '@angular/core';\nimport Accounts from 'ec.sdk/lib/Accounts';\nimport Core, { environment as env } from 'ec.sdk/lib/Core';\nimport DataManager from 'ec.sdk/lib/DataManager';\nimport PublicAPI from 'ec.sdk/lib/PublicAPI';\nimport Session from 'ec.sdk/lib/Session';\nimport AccountResource from 'ec.sdk/lib/resources/accounts/AccountResource';\nimport DataManagerResource from 'ec.sdk/lib/resources/datamanager/DataManagerResource';\nimport { Subject } from 'rxjs';\n\n/** The SdkService exposes all instances of the ec.sdk APIs.\n * To be able to use it, you have to provide an environment like this in your module's providers:\n *\n *```json\n {\n provide: 'environment',\n useValue: {\n datamanagerID: '83cc6374',\n environment: 'stage',\n clientID: 'rest',\n // init: false\n // the init option will prevent automatically initing the sdk.\n // you have to call sdk.init() yourself. This can be useful if your environment is not known before runtime\n }\n }```\n * The environment is optional, defaulting to live. See\n * https://entrecode.github.io/ec.sdk/#environment for more info. The clientID is only optional if\n * you do not plan to use authentication. See https://entrecode.github.io/ec.sdk/#environment =>\n * setClientID.\n */\n@Injectable()\nexport class SdkService {\n /** Flips to true as soon as the PublicAPI instance was resolved (now contains model and asset relations) */\n apiResolved: boolean;\n /** Collects different datamanager root instances */\n roots: { [id: string]: Promise } = {};\n get root(): Promise {\n if (!this._api) {\n throw new Error('no api');\n }\n if (!this.roots[this._api.dataManagerID]) {\n this.roots[this._api.dataManagerID] = this.ready.then(() => this.datamanager.dataManager(this._api.dataManagerID));\n }\n return this.roots[this._api.dataManagerID];\n }\n /** Current Session instance */\n public session: Session;\n /** Current Accounts instance */\n public accounts: Accounts;\n /** Current Public API instance */\n public _api: PublicAPI;\n /** Emits when the env changes */\n public changesEnvironment: Subject = new Subject();\n /** getter for api. Throws error if no api present. */\n get api(): PublicAPI {\n if (this.noApi()) {\n throw new Error('get api: ' + this.noApi());\n }\n return this._api;\n }\n /** Sets the public api */\n set api(api: PublicAPI) {\n this._api = api;\n this._api.resolve().then(() => this.apiResolved = true);\n }\n /** Current DataManager instance */\n public datamanager: DataManager;\n /** Current User */\n public user: AccountResource;\n /** Pending schema requests */\n private schemaRequests = {};\n /** Promise that should be used before using any auth related stuff:\n *\n * ```ts\n * this.sdk.ready.then(account => {});\n * ```\n * */\n public ready: Promise;\n\n /** Calls init and sets ready to true when finished. Omits init if environment has set init: false */\n constructor(@Inject('environment') public environment) {\n if (!environment || environment.init !== false) {\n this.init();\n }\n }\n\n /** Creates all the API instances and determines the current user. */\n public init(environment = this.environment): Promise {\n if (environment !== this.environment) {\n this.changesEnvironment.next(environment);\n }\n this.environment = environment;\n this.session = new Session(environment.environment);\n if (environment.clientID) {\n this.session.setClientID(environment.clientID);\n }\n this.accounts = new Accounts(environment.environment);\n if (environment.datamanagerID) {\n this.useDatamanager(environment.datamanagerID, environment);\n }\n this.ready = this.getAccount()\n .then((user) => {\n this.user = user;\n this.datamanager = new DataManager(environment.environment);\n return this.user;\n });\n return this.ready;\n }\n /** Uses the given datamanager and optional short id to init api.\n * If you set \"datamanagerID\" in your environment, this method is called automatically. */\n useDatamanager(shortID: string, environment = this.environment) {\n this.apiResolved = false;\n this._api = new PublicAPI(shortID, environment.environment, true);\n this._api.resolve().then(api => this.apiResolved = true);\n if (environment.clientID) {\n this._api.setClientID(environment.clientID);\n }\n }\n\n /** Returns a schema for the given model. Caches the promise. */\n getSchema(model, api = this._api) {\n if (this.noApi(api)) {\n return Promise.reject('getSchema: ' + this.noApi(api));\n }\n if (!this.schemaRequests[model] || this.schemaRequests[model].api !== api) {\n this.schemaRequests[model] = { request: api.getSchema(model), api };\n }\n return this.schemaRequests[model].request;\n }\n\n /** Returns the current account. Works for all apis */\n getAccount(api = this.accounts) {\n if (this.noApi(api)) {\n /* return Promise.reject('getAccount: ' + this.noApi(api)); */\n return Promise.resolve();\n }\n return api.me().then((account) => {\n return account || this._api.me();\n }).catch((err) => {\n return null;\n });\n }\n\n noApi(api: Core = this._api) {\n if (!api) {\n return `No API was initialized. Either set datamanagerID in your environment or call useDatamanager with your shortID`;\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/SelectModule.html":{"url":"modules/SelectModule.html","title":"module - SelectModule","body":"\n \n\n\n\n\n Modules\n SelectModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SelectModule\n\n\n\ncluster_SelectModule_declarations\n\n\n\ncluster_SelectModule_SelectComponent_providers\n\n\n\ncluster_SelectModule_imports\n\n\n\ncluster_SelectModule_exports\n\n\n\n\nActionbarComponent\n\nActionbarComponent\n\n\n\nSelectModule\n\nSelectModule\n\nSelectModule -->\n\nActionbarComponent->SelectModule\n\n\n\n\n\nSelectComponent\n\nSelectComponent\n\nSelectModule -->\n\nSelectComponent->SelectModule\n\n\n\n\n\nActionbarComponent \n\nActionbarComponent \n\nActionbarComponent -->\n\nSelectModule->ActionbarComponent \n\n\n\n\n\nListModule \n\nListModule \n\nListModule -->\n\nSelectModule->ListModule \n\n\n\n\n\nSelectComponent \n\nSelectComponent \n\nSelectComponent -->\n\nSelectModule->SelectComponent \n\n\n\n SelectComponent), multi: true\n} -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true\n}\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true\n}\n\n SelectComponent), multi: true\n}->SelectComponent -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true\n}->SelectComponent\n\n\n\n\n\nListModule\n\nListModule\n\nSelectModule -->\n\nListModule->SelectModule\n\n\n\n\n\nLoaderModule\n\nLoaderModule\n\nSelectModule -->\n\nLoaderModule->SelectModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/select/select.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n ActionbarComponent\n \n \n SelectComponent\n \n \n \n \n Imports\n \n \n ListModule\n \n \n LoaderModule\n \n \n \n \n Exports\n \n \n ActionbarComponent\n \n \n ListModule\n \n \n SelectComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { DndModule } from 'ngx-drag-drop';\nimport { ListModule } from '../list/list.module';\nimport { SelectComponent } from './select.component';\nimport { ActionbarComponent } from '../actionbar/actionbar.component';\nimport { LoaderModule } from '../loader/loader.module';\n\nexport const selectModuleConfig = {\n imports: [\n CommonModule,\n ListModule,\n DndModule,\n LoaderModule\n ],\n declarations: [\n SelectComponent,\n ActionbarComponent\n ],\n exports: [\n ListModule,\n SelectComponent,\n ActionbarComponent,\n DndModule\n ],\n providers: [],\n};\n\n\n@NgModule(selectModuleConfig)\nexport class SelectModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SignupComponent.html":{"url":"components/SignupComponent.html","title":"component - SignupComponent","body":"\n \n\n\n\n\n\n Components\n SignupComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/data/src/lib/auth/signup/signup.component.ts\n\n\n \n Description\n \n \n Uses LoginFormComponent. Tries to login via AuthService. Shows notifications and nexts success Subject if login was successful.\nhttps://components.entrecode.de/auth/signup?e=1\n\n \n\n \n Extends\n \n \n LoginComponent\n \n\n \n Implements\n \n \n WithLoader\n WithNotifications\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-signup\n \n\n\n\n\n \n templateUrl\n signup.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n loader\n \n \n notifications\n \n \n Public\n auth\n \n \n loader\n \n \n notifications\n \n \n Public\n notificationService\n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n signup\n \n \n login\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n invite\n \n \n api\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n success\n \n \n error\n \n \n success\n \n \n \n \n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n You can optionally specify PublicAPI instance. Defaults to SdkService#api. \n\n \n Type : PublicAPI\n\n \n \n \n \n \n Defined in packages/data/src/lib/auth/signup/signup.component.ts:17\n \n \n \n \n \n \n \n \n \n invite\n \n \n Invite code to use. If set, the invite form field will be hidden. \n\n \n Default value : ''\n \n \n \n \n \n Defined in packages/data/src/lib/auth/signup/signup.component.ts:19\n \n \n \n \n \n \n \n \n \n api\n \n \n You can optionally specify PublicAPI instance. Defaults to SdkService#api. \n\n \n Type : PublicAPI\n\n \n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:24\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n success\n \n \n Subject that is nexted when the login was successful. Meant to be used for redirecting to another page (or similar). \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/auth/signup/signup.component.ts:21\n \n \n \n \n \n \n \n \n \n error\n \n \n Subject that is nexted when an error occurs. For custom error reactions \n\n $event Type: EventEmitter\n\n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:28\n \n \n \n \n \n \n \n \n \n success\n \n \n Subject that is nexted when the login was successful. Meant to be used for redirecting to another page (or similar). \n\n $event Type: EventEmitter\n\n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:26\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n signup\n \n \n \n \n \n \n \nsignup(undefined)\n \n \n\n\n \n \n Defined in packages/data/src/lib/auth/signup/signup.component.ts:28\n \n \n\n\n \n \n Communicates with the AuthService. Handles loader, notifications and success Subject. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin(undefined)\n \n \n\n\n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:39\n \n \n\n\n \n \n Communicates with the AuthService. Handles loader, notifications and success Subject. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: \n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LoaderComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/auth/signup/signup.component.ts:23\n \n \n\n \n \n The included loader. \n\n \n \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in packages/data/src/lib/auth/signup/signup.component.ts:25\n \n \n\n \n \n Error notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n auth\n \n \n \n \n \n \n \n auth: AuthService\n\n \n \n \n \n Type : AuthService\n\n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:34\n \n \n\n\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n loader: \n\n \n \n \n \n Decorators : \n \n \n @ViewChild(LoaderComponent)\n \n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:30\n \n \n\n \n \n The included loader. \n\n \n \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:32\n \n \n\n \n \n Error notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n notificationService\n \n \n \n \n \n \n \n notificationService: NotificationsService\n\n \n \n \n \n Type : NotificationsService\n\n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:35\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Inherited from LoginComponent\n\n \n \n \n \n Defined in LoginComponent:36\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';\nimport { LoginComponent } from '../login/login.component';\nimport { WithNotifications, LoaderComponent, WithLoader, Notification } from '@ec.components/ui';\nimport PublicAPI from 'ec.sdk/lib/PublicAPI';\nimport AccountResource from 'ec.sdk/lib/resources/accounts/AccountResource';\n\n/** Uses LoginFormComponent. Tries to login via AuthService. Shows notifications and nexts success Subject if login was successful.\n * https://components.entrecode.de/auth/signup?e=1\n*/\n@Component({\n selector: 'ec-signup',\n templateUrl: 'signup.component.html'\n})\n\nexport class SignupComponent extends LoginComponent implements WithLoader, WithNotifications {\n /** You can optionally specify PublicAPI instance. Defaults to SdkService#api. */\n @Input() api: PublicAPI;\n /** Invite code to use. If set, the invite form field will be hidden. */\n @Input() invite = '';\n /** Subject that is nexted when the login was successful. Meant to be used for redirecting to another page (or similar). */\n @Output() success: EventEmitter = new EventEmitter();\n /** The included loader. */\n @ViewChild(LoaderComponent) loader;\n /** Error notifications */\n notifications: Notification[] = [];\n\n /** Communicates with the AuthService. Handles loader, notifications and success Subject. */\n signup({ email, password, invite }) {\n const registration = this.auth.signup({ email, password, invite }, this.api)\n .then((user) => {\n this.notificationService.emit({\n type: 'success',\n title: this.symbol.resolve('signup.success'),\n hide: this.notifications\n });\n this.success.emit(user);\n })\n .catch((error) => {\n this.notificationService.emit({\n title: this.symbol.resolve('signup.error'),\n error,\n sticky: true,\n hide: this.notifications,\n replace: this.notifications\n });\n this.error.next(error);\n console.log('could not signup', error);\n });\n this.loader.wait(registration);\n }\n}\n\n \n\n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'SignupComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/SignupFormComponent.html":{"url":"components/SignupFormComponent.html","title":"component - SignupFormComponent","body":"\n \n\n\n\n\n\n Components\n SignupFormComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/utility/signup-form/signup-form.component.ts\n\n\n \n Description\n \n \n Login Form Component with validation. Fires success event with credentials on submit.\nhttps://components.entrecode.de/ui/login?e=1\n\n \n\n \n Extends\n \n \n LoginFormComponent\n \n\n \n Implements\n \n \n OnInit\n WithLoader\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-signup-form\n \n\n\n\n\n \n templateUrl\n ./signup-form.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n errorMessage\n \n \n Public\n form\n \n \n notifications\n \n \n Protected\n submitted\n \n \n Public\n symbol\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n onSubmit\n \n \n signup\n \n \n login\n \n \n ngOnInit\n \n \n onSubmit\n \n \n showError\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n buttonLabel\n \n \n invite\n \n \n invitePlaceholder\n \n \n buttonClasses\n \n \n buttonLabel\n \n \n emailLabel\n \n \n emailPlaceholder\n \n \n loader\n \n \n passwordLabel\n \n \n passwordPlaceholder\n \n \n showLabels\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n error\n \n \n success\n \n \n \n \n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n buttonLabel\n \n \n The Label of the submit button. Defaults to Login \n\n \n Default value : this.symbol.resolve('signup.button.label')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/signup-form/signup-form.component.ts:17\n \n \n \n \n \n \n \n \n \n invite\n \n \n If set, the invite field will be hidden and the given code will be used for signup \n\n \n Default value : ''\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/signup-form/signup-form.component.ts:21\n \n \n \n \n \n \n \n \n \n invitePlaceholder\n \n \n The Placeholder of the mail Field \n\n \n Default value : this.symbol.resolve('signup.invite.placeholder')\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/signup-form/signup-form.component.ts:19\n \n \n \n \n \n \n \n \n \n buttonClasses\n \n \n Additional Button classes \n\n \n Default value : ''\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:42\n \n \n \n \n \n \n \n \n \n buttonLabel\n \n \n The Label of the submit button. Defaults to Login \n\n \n Default value : this.symbol.resolve('login.button.label')\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:40\n \n \n \n \n \n \n \n \n \n emailLabel\n \n \n The Label of the Mail field \n\n \n Default value : this.symbol.resolve('login.email.label')\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:32\n \n \n \n \n \n \n \n \n \n emailPlaceholder\n \n \n The Placeholder of the mail Field \n\n \n Default value : this.symbol.resolve('login.email.placeholder')\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:34\n \n \n \n \n \n \n \n \n \n loader\n \n \n The loader that should be shown during login \n\n \n Type : LoaderComponent\n\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:28\n \n \n \n \n \n \n \n \n \n passwordLabel\n \n \n The Label of the password field. \n\n \n Default value : this.symbol.resolve('login.password.label')\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:36\n \n \n \n \n \n \n \n \n \n passwordPlaceholder\n \n \n The Placeholder of the password field \n\n \n Default value : this.symbol.resolve('login.password.placeholder')\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:38\n \n \n \n \n \n \n \n \n \n showLabels\n \n \n If true, email and password wont have labels \n\n \n Default value : true\n \n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:30\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n error\n \n \n Event that emits when calling showError. \n\n $event Type: EventEmitter\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:26\n \n \n \n \n \n \n \n \n \n success\n \n \n Event that emits on succesful submit of the form, passing the login credentials. \n\n $event Type: EventEmitter\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:24\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/signup-form/signup-form.component.ts:28\n \n \n\n\n \n \n Initializes the form \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n onSubmit\n \n \n \n \n \n \n \nonSubmit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/signup-form/signup-form.component.ts:37\n \n \n\n\n \n \n Is called when the form has been successfully submitted. Calls login and resets the form after. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n signup\n \n \n \n \n \n \n \nsignup(value)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/signup-form/signup-form.component.ts:23\n \n \n\n\n \n \n Method that is meant to be overwritten by a subclass to communicate with an API. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n login\n \n \n \n \n \n \n \nlogin(value)\n \n \n\n\n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:67\n \n \n\n\n \n \n Method that is meant to be overwritten by a subclass to communicate with an API. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n value\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:51\n \n \n\n\n \n \n Initializes the form \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n onSubmit\n \n \n \n \n \n \n \nonSubmit()\n \n \n\n\n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:72\n \n \n\n\n \n \n Is called when the form has been successfully submitted. Calls login and resets the form after. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n showError\n \n \n \n \n \n \n \nshowError(err)\n \n \n\n\n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:59\n \n \n\n\n \n \n Shows the given error in the form. Clears the password field and emits the error event. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n err\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n errorMessage\n \n \n \n \n \n \n \n errorMessage: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:22\n \n \n\n \n \n Contains possible error messages. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n form\n \n \n \n \n \n \n \n form: FormGroup\n\n \n \n \n \n Type : FormGroup\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:18\n \n \n\n \n \n The login's form group.\n\n \n \n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:44\n \n \n\n \n \n Recent error Notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n Protected\n submitted\n \n \n \n \n \n \n \n submitted: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:20\n \n \n\n \n \n Flips true when submitted. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Inherited from LoginFormComponent\n\n \n \n \n \n Defined in LoginFormComponent:47\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, Input, OnInit } from '@angular/core';\nimport { Validators } from '@angular/forms';\nimport { FieldValidators } from '../../utility/validators/field-validators';\nimport { WithLoader } from '../../loader/with-loader.interface';\nimport { LoginFormComponent } from '../login-form/login-form.component';\n\n/** Login Form Component with validation. Fires success event with credentials on submit.\n * https://components.entrecode.de/ui/login?e=1\n*/\n@Component({\n selector: 'ec-signup-form',\n templateUrl: './signup-form.component.html',\n})\nexport class SignupFormComponent extends LoginFormComponent implements OnInit, WithLoader {\n\n /** The Label of the submit button. Defaults to Login */\n @Input() buttonLabel = this.symbol.resolve('signup.button.label');\n /** The Placeholder of the mail Field */\n @Input() invitePlaceholder = this.symbol.resolve('signup.invite.placeholder');\n /** If set, the invite field will be hidden and the given code will be used for signup */\n @Input() invite = '';\n /** Method that is meant to be overwritten by a subclass to communicate with an API. */\n signup(value) { // meant to be overridden\n return Promise.resolve(value);\n }\n\n /** Initializes the form */\n ngOnInit() {\n this.form = this.fb.group({\n email: ['', [Validators.required, FieldValidators.email]], // emailAvailable?\n password: ['', [Validators.required]],\n invite: [this.invite, [Validators.required]] // FieldValidators.uuid\n });\n }\n\n /** Is called when the form has been successfully submitted. Calls login and resets the form after. */\n onSubmit() {\n this.submitted = true;\n delete this.errorMessage;\n if (!this.form.valid) {\n return;\n }\n const login = this.signup(this.form.value)\n .then((res) => {\n // this.form.reset();\n this.success.emit(res);\n });\n if (this.loader) {\n this.loader.wait(login);\n }\n }\n}\n\n \n\n \n \n \n {{errorMessage}}\n \n \n {{emailLabel}}\n \n \n \n \n Passwort\n \n \n \n \n Invite\n \n \n \n\n \n {{buttonLabel}}\n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{errorMessage}} {{emailLabel}} Passwort Invite {{buttonLabel}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'SignupFormComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"directives/SlotHostDirective.html":{"url":"directives/SlotHostDirective.html","title":"directive - SlotHostDirective","body":"\n \n\n\n\n\n\n\n\n Directives\n SlotHostDirective\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/io/slot-host.directive.ts\n \n\n \n Description\n \n \n The field host is a helper to load components inside its view container.\nsee https://angular.io/guide/dynamic-component-loader\n\n \n\n\n\n \n Metadata\n \n \n\n \n Selector\n [ecSlotHost]\n \n\n \n \n \n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n viewContainerRef\n \n \n \n \n\n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(viewContainerRef: ViewContainerRef)\n \n \n \n \n Defined in packages/ui/src/lib/io/slot-host.directive.ts:9\n \n \n\n \n \n The constructor exposes the viewContainer that is used to load components into from outside.\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n viewContainerRef\n \n \n ViewContainerRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n viewContainerRef\n \n \n \n \n \n \n \n viewContainerRef: ViewContainerRef\n\n \n \n \n \n Type : ViewContainerRef\n\n \n \n \n \n Defined in packages/ui/src/lib/io/slot-host.directive.ts:11\n \n \n\n\n \n \n\n\n\n \n\n\n \n import { Directive, ViewContainerRef } from '@angular/core';\n\n/** The field host is a helper to load components inside its view container.\n * see https://angular.io/guide/dynamic-component-loader\n * */\n@Directive({\n selector: '[ecSlotHost]',\n})\nexport class SlotHostDirective {\n /** The constructor exposes the viewContainer that is used to load components into from outside.*/\n constructor(public viewContainerRef: ViewContainerRef) {\n }\n}\n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"classes/Sorter.html":{"url":"classes/Sorter.html","title":"class - Sorter","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n Classes\n Sorter\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/core/src/lib/sorter/sorter.ts\n \n\n \n Description\n \n \n The Sorter is a singleton that handles all kinds of sorting operations. \n\n \n\n\n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Static\n sortType\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Private\n Static\n getAlgorithm\n \n \n Static\n sort\n \n \n \n \n\n\n\n\n\n \n \n\n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Static\n sortType\n \n \n \n \n \n \n \n sortType: object\n\n \n \n \n \n Type : object\n\n \n \n \n \n Default value : {\n 'string': sortString,\n 'number': sortNumber,\n 'boolean': sortBoolean\n }\n \n \n \n \n Defined in packages/core/src/lib/sorter/sorter.ts:25\n \n \n\n \n \n Contains sorting methods for different value types. \n\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Private\n Static\n getAlgorithm\n \n \n \n \n \n \n \n \n getAlgorithm(items: Array>, property?: string)\n \n \n\n\n \n \n Defined in packages/core/src/lib/sorter/sorter.ts:32\n \n \n\n\n \n \n Returns the sorting algorithm for the given item array. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n items\n \n Array>\n \n \n \n No\n \n \n\n \n \n property\n \n string\n \n \n \n Yes\n \n \n\n \n \n \n \n \n \n \n Returns : number\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n sort\n \n \n \n \n \n \n \n \n sort(items: Array>, property?: string, desc?: boolean)\n \n \n\n\n \n \n Defined in packages/core/src/lib/sorter/sorter.ts:62\n \n \n\n\n \n \n Sorts a given Array of items after a given property.\n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Description\n \n \n \n \n items\n \n Array>\n \n \n \n No\n \n \n\n \n Array of arbitrary content.\n\n \n \n \n property\n \n string\n \n \n \n Yes\n \n \n\n \n Optional property to sort after (For Objects)\n\n \n \n \n desc\n \n boolean\n \n \n \n Yes\n \n \n\n \n Optional Flag that will reverse sort the result (descending).\n\n \n \n \n \n \n \n \n \n Returns : Array\n\n \n \n \n \n \n \n \n \n\n\n\n\n\n\n\n \n\n \n Sorter\nThe Sorter is a static class that acts as a helper to sort different primitive types. See the tests for example usage.\n\n \n\n \n import { Item } from '../item/item';\n\n/** Used for natural sorting of strings */\nconst collator = new Intl.Collator(undefined, { numeric: true, sensitivity: 'base' });\n\n/** Sorts strings (naturally) */\nexport function sortString(a, b) {\n return collator.compare(a, b);\n}\n\n/** Sorts numbers */\nexport function sortNumber(a, b) {\n return a - b;\n}\n\n/** Sorts booleans */\nexport function sortBoolean(a, b) {\n return a ? -1 : 1;\n}\n\n/** The Sorter is a singleton that handles all kinds of sorting operations. */\nexport abstract class Sorter {\n\n /** Contains sorting methods for different value types. */\n static sortType = {\n 'string': sortString,\n 'number': sortNumber,\n 'boolean': sortBoolean\n };\n\n /** Returns the sorting algorithm for the given item array. */\n private static getAlgorithm(items: Array>, property?: string): (a, b) => number {\n if (!items.length) {\n return;\n }\n if (property && !items\n .reduce((has, item) => has && item.sort(property) !== undefined, true)) {\n console.warn('cannot sort property \"' + property + '\" because not all items have that property', items);\n return;\n }\n const types = items\n .map(item => typeof item.sort(property))\n .filter((item, index, _items) => _items.indexOf(item) === index);\n if (types.length > 1) {\n console.warn('cannot sort items because they contain multiple types:', types);\n return;\n }\n if (!this.sortType[types[0]]) {\n console.warn('cannot sort items because no algorithm was found for type', types[0]);\n return;\n }\n return this.sortType[types[0]];\n }\n\n /** Sorts a given Array of items after a given property.\n * @param items Array of arbitrary content.\n * @param property Optional property to sort after (For Objects)\n * @param desc Optional Flag that will reverse sort the result (descending).\n * @param resolve Optional resolve function to expose relevant the part of object that contains\n * the given property. */\n\n static sort(items: Array>, property?: string, desc?: boolean): Array {\n const algorithm = this.getAlgorithm(items, property);\n if (!algorithm) {\n return;\n }\n items.sort((a, b) => {\n if (!property) {\n return algorithm(a.resolve(), b.resolve());\n }\n return algorithm(a.sort(property), b.sort(property));\n });\n if (desc) {\n items.reverse();\n }\n }\n}\n\n \n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Symbol.html":{"url":"interfaces/Symbol.html","title":"interface - Symbol","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Symbol\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/symbol/symbol.interface.ts\n \n\n \n Description\n \n \n A Symbol is specified with a unique name and an optional string content. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n content\n \n \n name\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n content\n \n \n \n \n content: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Text content. If nothing is set, the symbol is expected to have e.g. valid font glyph name. \n\n \n \n \n \n \n \n \n \n \n name\n \n \n \n \n name: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n\n\n\n\n \n \n The name under which the symbol is accessible. \n\n \n \n \n \n \n \n\n\n \n export interface Symbol {\n /** The name under which the symbol is accessible. */\n name: string;\n /** Text content. If nothing is set, the symbol is expected to have e.g. valid font glyph name. */\n content?: string;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/SymbolModule.html":{"url":"modules/SymbolModule.html","title":"module - SymbolModule","body":"\n \n\n\n\n\n Modules\n SymbolModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_SymbolModule\n\n\n\ncluster_SymbolModule_declarations\n\n\n\ncluster_SymbolModule_exports\n\n\n\ncluster_SymbolModule_providers\n\n\n\n\nSymbolPipe\n\nSymbolPipe\n\n\n\nSymbolModule\n\nSymbolModule\n\nSymbolModule -->\n\nSymbolPipe->SymbolModule\n\n\n\n\n\nSymbolPipe \n\nSymbolPipe \n\nSymbolPipe -->\n\nSymbolModule->SymbolPipe \n\n\n\n\n\nSymbolService\n\nSymbolService\n\nSymbolModule -->\n\nSymbolService->SymbolModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/symbol/symbol.module.ts\n \n\n\n \n Description\n \n \n Collects all localization related components and services.\n\n \n\n\n \n \n \n Declarations\n \n \n SymbolPipe\n \n \n \n \n Providers\n \n \n SymbolService\n \n \n \n \n Exports\n \n \n SymbolPipe\n \n \n \n \n \n\n\n \n\n \n Localization\nYou can setup localization via the SymbolService:\nimport en from './en';\n\n@Component({\n templateUrl: './app.component.html',\n})\nexport class AppComponent {\n constructor(private symbols: SymbolService) {\n this.symbols.set(en);\n }\n}It is expected that you pass an array of Symbol's to SymbolService#set\nDate Localization\nIf you are using datepickers, you have to include the following line to your root component:\nmoment.locale(this.symbols.resolve('moment.locale'));Using symbols in templates\nTo translate symbols in a template, use the symbol pipe:\n{{'symbol.language' | symbol}} Overwriting\nThe names of the symbols act as unique identifier, meaning you can overwrite any preexisting symbols. The default preexisting symbols of ec.components can be looked up here, or directly at the source: EN, DE\n\n \n\n \n import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { SymbolService } from './symbol.service';\nimport { SymbolPipe } from './symbol.pipe';\n\n/**\n * Collects all localization related components and services.\n */\n@NgModule({\n imports: [CommonModule],\n declarations: [SymbolPipe],\n exports: [SymbolPipe],\n providers: [SymbolService],\n})\nexport class SymbolModule { }\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/SymbolPipe.html":{"url":"injectables/SymbolPipe.html","title":"injectable - SymbolPipe","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n SymbolPipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/symbol/symbol.pipe.ts\n \n\n \n Description\n \n \n The symbol pipe translates Symbol names to their content.\n * {{ 'entry.saved' | symbol }}\n *See SymbolService for more info about Symbols.\n\n \n\n\n \n Index\n \n \n\n \n \n Methods\n \n \n \n \n \n \n transform\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nObject()\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(name: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.pipe.ts:21\n \n \n\n\n \n \n Calls SymbolService.resolve with the given name \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n\n\n\n \n\n\n \n import { Pipe, Injectable, PipeTransform } from '@angular/core';\nimport { Symbol } from './symbol.interface';\nimport { SymbolService } from './symbol.service';\n\n/** The symbol pipe translates Symbol names to their content.\n *\n * ```html\n * {{ 'entry.saved' | symbol }}\n * ```\n *\n * See SymbolService for more info about Symbols.\n */\n@Pipe({\n name: 'symbol'\n})\n@Injectable()\nexport class SymbolPipe implements PipeTransform {\n /** Depends on the SymbolService */\n constructor(private symbol: SymbolService) { }\n /** Calls SymbolService.resolve with the given name */\n transform(name: string): string {\n if (!name) {\n return '';\n }\n return this.symbol.resolve(name) || '';\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/SymbolService.html":{"url":"injectables/SymbolService.html","title":"injectable - SymbolService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n SymbolService\n\n\n\n \n Info\n \n \n Source\n \n \n Examples\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/symbol/symbol.service.ts\n \n\n \n Description\n \n \n Service to register symbols for localization. The default set is de.\nhttps://components.entrecode.de/ui/symbols?e=1\n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Static\n registry\n \n \n Public\n registry\n \n \n Static\n sets\n \n \n Public\n sets\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n Static\n get\n \n \n get\n \n \n Static\n resolve\n \n \n resolve\n \n \n Static\n set\n \n \n set\n \n \n use\n \n \n useSet\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor()\n \n \n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:46\n \n \n\n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n Static\n get\n \n \n \n \n \n \n \n \n get(name: string, registry)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:23\n \n \n\n\n \n \n finds a symbol in the registry by name \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n name\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n registry\n \n \n \n \n No\n \n \n \n SymbolService.registry\n \n\n \n \n \n \n \n \n \n Returns : Symbol\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n get\n \n \n \n \n \n \n \nget(name: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:66\n \n \n\n\n \n \n finds a symbol in the registry by name \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : Symbol\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n resolve\n \n \n \n \n \n \n \n \n resolve(name: string, registry)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:28\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n name\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n registry\n \n \n \n \n No\n \n \n \n SymbolService.registry\n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n resolve\n \n \n \n \n \n \n \nresolve(name: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:71\n \n \n\n\n \n \n resolves a symbols content by name \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n name\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : string\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n Static\n set\n \n \n \n \n \n \n \n \n set(symbols: Symbol[], registry)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:37\n \n \n\n\n \n \n Uses the given symbol set to enhance the current registry.\nAll duplicates will be overriden. Non specified symbols will stay in the registry. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n symbols\n \n Symbol[]\n \n \n \n No\n \n \n \n []\n \n\n \n \n registry\n \n \n \n \n No\n \n \n \n SymbolService.registry\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \n \nset(symbols: Symbol[])\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:77\n \n \n\n\n \n \n Uses the given symbol set to enhance the current registry.\nAll duplicates will be overriden. Non specified symbols will stay in the registry. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n symbols\n \n Symbol[]\n \n \n \n No\n \n \n \n []\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n use\n \n \n \n \n \n \n \nuse(symbols: Symbol[])\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:53\n \n \n\n\n \n \n Uses the given symbol set. Replaces registry. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbols\n \n Symbol[]\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n useSet\n \n \n \n \n \n \n \nuseSet(key: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:58\n \n \n\n\n \n \n uses the set with the given key \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n key\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Static\n registry\n \n \n \n \n \n \n \n registry: Symbol[]\n\n \n \n \n \n Type : Symbol[]\n\n \n \n \n \n Default value : Object.keys(SymbolService.sets).length ? SymbolService.sets[Object.keys(SymbolService.sets)[0]] : []\n \n \n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:15\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n registry\n \n \n \n \n \n \n \n registry: Symbol[]\n\n \n \n \n \n Type : Symbol[]\n\n \n \n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:17\n \n \n\n\n \n \n \n \n \n \n \n \n \n Static\n sets\n \n \n \n \n \n \n \n sets: literal type\n\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {\n en, de\n }\n \n \n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:12\n \n \n\n \n \n The current symbol set that is registered to the service. It will be used to resolve strings from. \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n sets\n \n \n \n \n \n \n \n sets: literal type\n\n \n \n \n \n Type : literal type\n\n \n \n \n \n Default value : {\n en, de\n }\n \n \n \n \n Defined in packages/ui/src/lib/symbol/symbol.service.ts:18\n \n \n\n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Symbol } from './symbol.interface';\nimport { de } from './de';\nimport { en } from './en';\n/** Service to register symbols for localization. The default set is de.\n * https://components.entrecode.de/ui/symbols?e=1\n*/\n// https://github.com/ng-packagr/ng-packagr/issues/696\n@Injectable()\nexport class SymbolService {\n /** The current symbol set that is registered to the service. It will be used to resolve strings from. */\n public static sets: { [key: string]: Symbol[] } = {\n en, de\n };\n public static registry: Symbol[] = Object.keys(SymbolService.sets).length ? SymbolService.sets[Object.keys(SymbolService.sets)[0]] : [];\n\n public registry: Symbol[];\n public sets: { [key: string]: Symbol[] } = {\n en, de\n };\n\n /** finds a symbol in the registry by name */\n static get(name: string, registry = SymbolService.registry): Symbol {\n const symbol = registry.find(s => s.name === name);\n return symbol;\n }\n\n static resolve(name: string, registry = SymbolService.registry): string {\n const symbol = SymbolService.get(name, registry);\n if (symbol) {\n return symbol.content;\n }\n return null;\n }\n /** Uses the given symbol set to enhance the current registry.\n * All duplicates will be overriden. Non specified symbols will stay in the registry. */\n static set(symbols: Symbol[] = [], registry = SymbolService.registry) {\n symbols.map(symbol => {\n const index = registry.indexOf(this.get(symbol.name));\n if (index === -1) {\n registry.push(symbol);\n } else {\n registry[index] = symbol;\n }\n });\n }\n\n constructor() {\n this.registry = Object.keys(this.sets).length ? this.sets[Object.keys(this.sets)[0]] : [];\n }\n\n /** Uses the given symbol set. Replaces registry. */\n use(symbols: Symbol[]) {\n this.registry = symbols;\n }\n\n /** uses the set with the given key */\n useSet(key: string) {\n if (!this.sets[key]) {\n throw new Error('the symbol set with the key \"' + key + '\" does not exist');\n }\n this.use(this.sets[key]);\n }\n\n /** finds a symbol in the registry by name */\n get(name: string): Symbol {\n return SymbolService.get(name, this.registry);\n }\n\n /** resolves a symbols content by name */\n resolve(name: string): string {\n return SymbolService.resolve(name, this.registry);\n }\n\n /** Uses the given symbol set to enhance the current registry.\n * All duplicates will be overriden. Non specified symbols will stay in the registry. */\n set(symbols: Symbol[] = []) {\n SymbolService.set(symbols, this.registry);\n }\n}\n\n \n\n \n \n no-iframes\n \n \n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TabComponent.html":{"url":"components/TabComponent.html","title":"component - TabComponent","body":"\n \n\n\n\n\n\n Components\n TabComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/utility/tab/tab.component.ts\n\n\n \n Description\n \n \n A Tab is meant to be placed inside TabsComponent \n\n \n\n\n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-tab\n \n\n\n\n\n \n templateUrl\n ./tab.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n el\n \n \n parent\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n activate\n \n \n deactivate\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n label\n \n \n route\n \n \n selected\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n activated\n \n \n deactivated\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(el: ElementRef)\n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:21\n \n \n\n \n \n The constructor adds the tab itself to its TabsComponent parent. \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n el\n \n \n ElementRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n label\n \n \n The tab's label \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:11\n \n \n \n \n \n \n \n \n \n route\n \n \n If set, the tab will be selected when the given (relative) route is active. \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:15\n \n \n \n \n \n \n \n \n \n selected\n \n \n If set to true, the tab will be selected at start. \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:13\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n activated\n \n \n Output that emits when the tab is activated \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:17\n \n \n \n \n \n \n \n \n \n deactivated\n \n \n Output that emits when the tab is deactivated \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:19\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n activate\n \n \n \n \n \n \n \nactivate()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:27\n \n \n\n\n \n \n Selects the tab and nexts activated \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n deactivate\n \n \n \n \n \n \n \ndeactivate()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:32\n \n \n\n\n \n \n Deselects the tab and nexts activated \n\n\n \n Returns : void\n\n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n el\n \n \n \n \n \n \n \n el: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:24\n \n \n\n\n \n \n \n \n \n \n \n \n \n parent\n \n \n \n \n \n \n \n parent: TabsComponent\n\n \n \n \n \n Type : TabsComponent\n\n \n \n \n \n Defined in packages/ui/src/lib/utility/tab/tab.component.ts:21\n \n \n\n \n \n The parent TabsComponent \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, ElementRef, EventEmitter, Input, Output } from '@angular/core';\nimport { TabsComponent } from '../tabs/tabs.component';\n\n/** A Tab is meant to be placed inside TabsComponent */\n@Component({\n selector: 'ec-tab',\n templateUrl: './tab.component.html',\n})\nexport class TabComponent {\n /** The tab's label */\n @Input() label: string;\n /** If set to true, the tab will be selected at start. */\n @Input() selected: boolean;\n /** If set, the tab will be selected when the given (relative) route is active. */\n @Input() route: string;\n /** Output that emits when the tab is activated */\n @Output() activated: EventEmitter = new EventEmitter();\n /** Output that emits when the tab is deactivated */\n @Output() deactivated: EventEmitter = new EventEmitter();\n /** The parent TabsComponent */\n parent: TabsComponent;\n\n /** The constructor adds the tab itself to its TabsComponent parent. */\n constructor(public el: ElementRef) {\n }\n /** Selects the tab and nexts activated */\n activate() {\n this.selected = true;\n this.activated.next();\n }\n /** Deselects the tab and nexts activated */\n deactivate() {\n this.selected = false;\n this.deactivated.next();\n }\n}\n\n \n\n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'TabComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TabsComponent.html":{"url":"components/TabsComponent.html","title":"component - TabsComponent","body":"\n \n\n\n\n\n\n Components\n TabsComponent\n\n\n\n \n Info\n \n \n README\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/utility/tabs/tabs.component.ts\n\n\n \n Description\n \n \n The TabsComponent holds serveral instances of TabComponent.\nhttps://components.entrecode.de/ui/tabs?e=1\n\n \n\n\n \n Implements\n \n \n AfterContentInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-tabs\n \n\n\n\n\n \n templateUrl\n ./tabs.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n tabs\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n initTabs\n \n \n ngAfterContentInit\n \n \n select\n \n \n selectByUrl\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n selected\n \n \n \n \n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(router: Router, route: ActivatedRoute)\n \n \n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:16\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n router\n \n \n Router\n \n \n \n No\n \n \n \n \n route\n \n \n ActivatedRoute\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n selected\n \n \n You can set the initially selected tab by passing a TabComponent in (e.g. via #variable) \n\n \n Type : TabComponent\n\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:16\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n initTabs\n \n \n \n \n \n \n \ninitTabs()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:38\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngAfterContentInit\n \n \n \n \n \n \n \nngAfterContentInit()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:48\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n select\n \n \n \n \n \n \n \nselect(tab: TabComponent, skipRoute)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:53\n \n \n\n\n \n \n Selects the given tab (Component). \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n tab\n \n TabComponent\n \n \n \n No\n \n \n \n \n\n \n \n skipRoute\n \n \n \n \n No\n \n \n \n false\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n selectByUrl\n \n \n \n \n \n \n \nselectByUrl(url: string)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:27\n \n \n\n\n \n \n Selects the tab associated with the route present in the given url \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n url\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n tabs\n \n \n \n \n \n \n \n tabs: QueryList\n\n \n \n \n \n Type : QueryList\n\n \n \n \n \n Decorators : \n \n \n @ContentChildren(TabComponent)\n \n \n \n \n \n Defined in packages/ui/src/lib/utility/tabs/tabs.component.ts:14\n \n \n\n \n \n The nested Tabs \n\n \n \n\n \n \n\n\n\n\n \n Tabs\nThis is how you use Tabs:\n\n \n \n \n \n \n \n \n \n \n \n \n \nTODO:\n\n*ngIf\nSlot for templated Tab Header\n\n\n \n\n \n import { AfterContentInit, Component, ContentChildren, Input, QueryList } from '@angular/core';\nimport { ActivatedRoute, NavigationEnd, Router } from '@angular/router';\nimport { TabComponent } from '../tab/tab.component';\n\n/** The TabsComponent holds serveral instances of TabComponent.\n * https://components.entrecode.de/ui/tabs?e=1\n*/\n@Component({\n selector: 'ec-tabs',\n templateUrl: './tabs.component.html',\n})\nexport class TabsComponent implements AfterContentInit {\n /** The nested Tabs */\n @ContentChildren(TabComponent) tabs: QueryList;\n /** You can set the initially selected tab by passing a TabComponent in (e.g. via #variable) */\n @Input() selected: TabComponent;\n\n constructor(private router: Router, private route: ActivatedRoute) {\n this.router.events.subscribe((event) => {\n if (event instanceof NavigationEnd) {\n this.selectByUrl(event.url);\n }\n });\n }\n\n /** Selects the tab associated with the route present in the given url */\n selectByUrl(url: string) {\n if (!url || !this.tabs) {\n return;\n }\n const paths = url.split('/');\n const match = this.tabs.find((tab) => paths[paths.length - 1].indexOf(tab.route) !== -1);\n if (match) {\n this.select(match, true);\n }\n }\n\n initTabs() {\n this.tabs.forEach((tab) => {\n tab.parent = this;\n if (tab.el.nativeElement.getAttribute('selected') !== null) {\n this.select(tab);\n }\n });\n this.selectByUrl(this.router.url);\n }\n\n ngAfterContentInit() {\n this.initTabs();\n }\n\n /** Selects the given tab (Component). */\n select(tab: TabComponent, skipRoute = false) {\n if (this.selected) {\n this.selected.deactivate();\n }\n this.selected = tab;\n tab.activate();\n if (tab.route && !skipRoute) {\n this.router.navigate(['../' + tab.route], { relativeTo: this.route });\n }\n }\n\n}\n\n \n\n \n \n \n \n \n {{tab.label}}\n \n \n \n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{tab.label}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'TabsComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/TinymceComponent.html":{"url":"components/TinymceComponent.html","title":"component - TinymceComponent","body":"\n \n\n\n\n\n\n Components\n TinymceComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n Styles\n \n \n DOM Tree\n \n \n Examples\n \n\n\n\n \n File\n\n\n packages/tinymce/src/lib/tinymce/tinymce.component.ts\n\n\n \n Description\n \n \n Wraps tinymce as a control input.\nhttps://components.entrecode.de/misc/tinymce?e=1\n\n \n\n\n \n Implements\n \n \n AfterViewInit\n OnDestroy\n ControlValueAccessor\n OnDestroy\n \n\n\n\n Metadata\n \n \n\n\n \n encapsulation\n ViewEncapsulation.None\n \n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => TinymceComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-tinymce\n \n\n \n styleUrls\n ./tinymce.component.scss\n \n\n\n\n \n templateUrl\n ./tinymce.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n container\n \n \n Public\n editor\n \n \n propagateChange\n \n \n ready\n \n \n update\n \n \n Public\n value\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n addImageByUrl\n \n \n destroy\n \n \n init\n \n \n ngAfterViewInit\n \n \n ngOnDestroy\n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n debounce\n \n \n lazy\n \n \n settings\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n changed\n \n \n setup\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(app: ApplicationRef)\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:67\n \n \n\n \n \n Subscribes for changes and propagates them + calling application tick manually :( \n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n app\n \n \n ApplicationRef\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n debounce\n \n \n Debounce time for value change processing \n\n \n Default value : 200\n \n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:56\n \n \n \n \n \n \n \n \n \n lazy\n \n \n If true, the editor wont init by default. This can be useful when using tinymce inside tabs or pops where tiny breaks \n\n \n Default value : false\n \n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:60\n \n \n \n \n \n \n \n \n \n settings\n \n \n TinyMCE Settings. Get Object.assigned to the default settings \n\n \n Type : any\n\n \n \n Default value : {}\n \n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:58\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n changed\n \n \n Output that emits when the value has been changed by the user \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:62\n \n \n \n \n \n \n \n \n \n setup\n \n \n Output that is emitted when the setup is being made.\nPasses the editor instance. Intended to be used for custom controls \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:65\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n addImageByUrl\n \n \n \n \n \n \n \naddImageByUrl(url: string, caption: string, size: number)\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:133\n \n \n\n\n \n \n adds an image by url to the editor \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n Default value\n \n \n \n \n url\n \n string\n \n \n \n No\n \n \n \n \n\n \n \n caption\n \n string\n \n \n \n No\n \n \n \n ''\n \n\n \n \n size\n \n number\n \n \n \n No\n \n \n \n 200\n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n destroy\n \n \n \n \n \n \n \ndestroy()\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:91\n \n \n\n\n \n \n Destroys the editor. \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n init\n \n \n \n \n \n \n \ninit()\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:103\n \n \n\n\n \n \n Initializes the editor \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngAfterViewInit\n \n \n \n \n \n \n \nngAfterViewInit()\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:85\n \n \n\n\n \n \n calls init \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n ngOnDestroy\n \n \n \n \n \n \n \nngOnDestroy()\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:98\n \n \n\n\n \n \n calls destroy \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:147\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:151\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: any)\n \n \n\n\n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:138\n \n \n\n\n \n \n Writes value to editor on outside model change. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n any\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n container\n \n \n \n \n \n \n \n container: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('container')\n \n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:52\n \n \n\n \n \n The container where the editor is rendered \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n editor\n \n \n \n \n \n \n \n editor: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:50\n \n \n\n \n \n The current editor instance \n\n \n \n\n \n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => { }\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:145\n \n \n\n\n \n \n \n \n \n \n \n \n \n ready\n \n \n \n \n \n \n \n ready: Promise\n\n \n \n \n \n Type : Promise\n\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:48\n \n \n\n \n \n Promise that resolves when the editor has been initialized \n\n \n \n\n \n \n \n \n \n \n \n \n \n update\n \n \n \n \n \n \n \n update: Subject\n\n \n \n \n \n Type : Subject\n\n \n \n \n \n Default value : new Subject()\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:54\n \n \n\n \n \n Subject that is nexted on editor change \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n value\n \n \n \n \n \n \n \n value: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in packages/tinymce/src/lib/tinymce/tinymce.component.ts:67\n \n \n\n \n \n Current value \n\n \n \n\n \n \n\n\n\n\n\n \n import {\n AfterViewInit, ApplicationRef,\n Component, ElementRef,\n EventEmitter, forwardRef,\n Input, OnDestroy, Output,\n ViewChild, ViewEncapsulation\n} from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { Subject } from 'rxjs';\nimport tinymce from 'tinymce/tinymce';\nimport 'tinymce/plugins/autolink';\nimport 'tinymce/plugins/autoresize';\nimport 'tinymce/plugins/code';\nimport 'tinymce/plugins/colorpicker';\nimport 'tinymce/plugins/contextmenu';\nimport 'tinymce/plugins/fullscreen';\nimport 'tinymce/plugins/link';\nimport 'tinymce/plugins/lists';\nimport 'tinymce/plugins/paste';\nimport 'tinymce/plugins/table';\nimport 'tinymce/plugins/template';\nimport 'tinymce/plugins/textcolor';\nimport 'tinymce/plugins/visualblocks';\nimport 'tinymce/themes/modern';\n\nimport { editorSettings } from './tinymce-settings';\nimport { debounceTime } from 'rxjs/operators';\n\n/** Wraps tinymce as a control input.\n * https://components.entrecode.de/misc/tinymce?e=1\n*/\n@Component({\n selector: 'ec-tinymce',\n templateUrl: './tinymce.component.html',\n styleUrls: ['./tinymce.component.scss'],\n encapsulation: ViewEncapsulation.None,\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => TinymceComponent),\n multi: true\n }\n ]\n})\nexport class TinymceComponent\n implements AfterViewInit, OnDestroy, ControlValueAccessor, OnDestroy {\n /** Promise that resolves when the editor has been initialized */\n ready: Promise;\n /** The current editor instance */\n public editor: any;\n /** The container where the editor is rendered */\n @ViewChild('container') container: ElementRef;\n /** Subject that is nexted on editor change */\n update: Subject = new Subject();\n /** Debounce time for value change processing */\n @Input() debounce = 200;\n /** TinyMCE Settings. Get Object.assigned to the default settings */\n @Input() settings: any = {};\n /** If true, the editor wont init by default. This can be useful when using tinymce inside tabs or pops where tiny breaks */\n @Input() lazy = false;\n /** Output that emits when the value has been changed by the user */\n @Output() changed: EventEmitter = new EventEmitter();\n /** Output that is emitted when the setup is being made.\n * Passes the editor instance. Intended to be used for custom controls */\n @Output() setup: EventEmitter = new EventEmitter();\n /** Current value */\n public value = '';\n\n /** Subscribes for changes and propagates them + calling application tick manually :( */\n constructor(private app: ApplicationRef) {\n this.update\n .asObservable()\n .pipe(debounceTime(this.debounce))\n .subscribe(editor => {\n if (!this.editor) {\n return;\n }\n this.value = editor.getContent();\n this.propagateChange(this.value);\n this.changed.emit(this.value);\n this.app.tick();\n });\n }\n /** calls init */\n ngAfterViewInit() {\n if (!this.lazy) {\n this.init();\n }\n }\n /** Destroys the editor. */\n destroy() {\n if (this.editor) {\n this.editor.remove();\n delete this.editor;\n }\n }\n /** calls destroy */\n ngOnDestroy() {\n this.destroy();\n }\n\n /** Initializes the editor */\n init() {\n const settings = Object.assign({},\n editorSettings,\n this.settings,\n {\n target: this.container.nativeElement,\n setup: (editor) => {\n editorSettings.setup(editor);\n if (this.settings && this.settings.setup) {\n this.settings.setup(editor);\n }\n this.setup.emit(editor);\n }\n }\n );\n this.ready = new Promise((resolve, reject) => setTimeout(() => resolve(tinymce.init(settings))));\n this.ready.then(editor => {\n this.editor = editor[0];\n this.editor.setContent(this.value || '');\n this.editor.on('dblclick', e => {\n if (e.target.localName === 'img') {\n this.editor.buttons.image.onclick(true, e.toElement);\n }\n });\n this.editor.on('change keyup', res => this.update.next(this.editor));\n return this.editor;\n });\n }\n\n /** adds an image by url to the editor */\n addImageByUrl(url: string, caption = '', size = 200) {\n this.editor.execCommand('mceInsertContent', false,\n ``);\n }\n /** Writes value to editor on outside model change. */\n writeValue(value: any) {\n this.value = value || '';\n if (this.editor) {\n this.editor.setContent(this.value);\n }\n }\n\n propagateChange = (_: any) => { };\n\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n\n registerOnTouched() { }\n}\n\n \n\n \n \n \n\n \n \n ./tinymce.component.scss\n \n \n \n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n \n no-iframes\n \n \n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'TinymceComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/TinymceModule.html":{"url":"modules/TinymceModule.html","title":"module - TinymceModule","body":"\n \n\n\n\n\n Modules\n TinymceModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_TinymceModule\n\n\n\ncluster_TinymceModule_declarations\n\n\n\ncluster_TinymceModule_exports\n\n\n\n\nTinymceComponent\n\nTinymceComponent\n\n\n\nTinymceModule\n\nTinymceModule\n\nTinymceModule -->\n\nTinymceComponent->TinymceModule\n\n\n\n\n\nTinymceComponent \n\nTinymceComponent \n\nTinymceComponent -->\n\nTinymceModule->TinymceComponent \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/tinymce/src/lib/tinymce.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n TinymceComponent\n \n \n \n \n EntryComponents\n \n \n TinymceComponent\n \n \n \n \n Exports\n \n \n TinymceComponent\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { TinymceComponent } from './tinymce/tinymce.component';\n\nexport const tinymceModuleConfig = {\n declarations: [TinymceComponent],\n entryComponents: [TinymceComponent],\n exports: [TinymceComponent]\n};\n\n@NgModule(tinymceModuleConfig)\nexport class TinymceModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/ToggleComponent.html":{"url":"components/ToggleComponent.html","title":"component - ToggleComponent","body":"\n \n\n\n\n\n\n Components\n ToggleComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/ui/src/lib/form/toggle/toggle.component.ts\n\n\n \n Description\n \n \n The toggle component is an alternative to the default boolean checkbox with fancier style.\nIt is used in the default input template for the view 'toggle'. \n\n \n\n\n \n Implements\n \n \n ControlValueAccessor\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n \n providers\n \n {\n provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => ToggleComponent), multi: true\n}\n \n \n\n\n \n selector\n ec-toggle\n \n\n\n\n\n \n templateUrl\n ./toggle.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n propagateChange\n \n \n value\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n registerOnChange\n \n \n registerOnTouched\n \n \n toggle\n \n \n writeValue\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n placeholder\n \n \n \n \n\n\n\n\n \n \n\n\n\n \n Inputs\n \n \n \n \n \n placeholder\n \n \n The toggles placeholder (currently not in use) \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:21\n \n \n \n \n\n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n registerOnChange\n \n \n \n \n \n \n \nregisterOnChange(fn)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:36\n \n \n\n\n \n \n Registers change callback \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n fn\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n registerOnTouched\n \n \n \n \n \n \n \nregisterOnTouched()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:40\n \n \n\n\n \n \n Register Touch \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n toggle\n \n \n \n \n \n \n \ntoggle()\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:24\n \n \n\n\n \n \n Toggles the value \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n writeValue\n \n \n \n \n \n \n \nwriteValue(value: boolean)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:29\n \n \n\n\n \n \n writes incoming value \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n value\n \n boolean\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n propagateChange\n \n \n \n \n \n \n \n propagateChange: \n\n \n \n \n \n Default value : (_: any) => {\n }\n \n \n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:33\n \n \n\n\n \n \n \n \n \n \n \n \n \n value\n \n \n \n \n \n \n \n value: boolean\n\n \n \n \n \n Type : boolean\n\n \n \n \n \n Defined in packages/ui/src/lib/form/toggle/toggle.component.ts:19\n \n \n\n \n \n The current value \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, forwardRef, Input } from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\n\n/** The toggle component is an alternative to the default boolean checkbox with fancier style.\n * It is used in the default input template for the view 'toggle'. */\n@Component({\n selector: 'ec-toggle',\n templateUrl: './toggle.component.html',\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => ToggleComponent),\n multi: true\n }\n ]\n})\nexport class ToggleComponent implements ControlValueAccessor {\n /** The current value */\n value: boolean;\n /** The toggles placeholder (currently not in use) */\n @Input() placeholder: string;\n\n /** Toggles the value */\n toggle() {\n this.value = !this.value;\n this.propagateChange(this.value);\n }\n /** writes incoming value */\n writeValue(value: boolean) {\n this.value = value;\n }\n /* Propagates change*/\n propagateChange = (_: any) => {\n }\n /** Registers change callback */\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n /** Register Touch */\n registerOnTouched() {\n }\n\n}\n\n \n\n \n \n\n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ''\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'ToggleComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"injectables/TypeConfigService.html":{"url":"injectables/TypeConfigService.html","title":"injectable - TypeConfigService","body":"\n \n\n\n\n\n\n\n\n\n Injectables\n TypeConfigService\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/model-config/type-config.service.ts\n \n\n \n Description\n \n \n The TypeConfig holds each field type's specific behaviour in certain situations \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Private\n nestedCrudConfig\n \n \n Private\n types\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n displayAccount\n \n \n displayDate\n \n \n get\n \n \n groupDate\n \n \n set\n \n \n \n \n\n\n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(symbol: SymbolService)\n \n \n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:179\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n displayAccount\n \n \n \n \n \n \n \ndisplayAccount()\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:217\n \n \n\n\n \n \n Returns an account display function \n\n\n \n Returns : (value: any, entry: any, property: any) => any\n\n \n \n \n \n \n \n \n \n \n \n \n \n displayDate\n \n \n \n \n \n \n \ndisplayDate(time)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:209\n \n \n\n\n \n \n Returns a date display function. If time is true, the time will be displayed too.\nUsese 'moment.format.date' and 'moment.format.time' symbols. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n time\n \n \n No\n \n \n \n true\n \n\n \n \n \n \n \n \n \n Returns : (value: any) => any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n get\n \n \n \n \n \n \n \nget(type: string)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:183\n \n \n\n\n \n \n Returns the base FieldConfig for the given type. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n type\n \n string\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : FieldConfigProperty\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n groupDate\n \n \n \n \n \n \n \ngroupDate()\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:223\n \n \n\n\n \n \n Returns a date group function. Uses 'moment.format.month' symbol \n\n\n \n Returns : (value: any) => any\n\n \n \n \n \n \n \n \n \n \n \n \n \n set\n \n \n \n \n \n \n \nset(type: string, config: FieldConfigProperty)\n \n \n\n\n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:199\n \n \n\n\n \n \n Assigns the given config to the type, e.g. to change the default template of a type. \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n type\n \n string\n \n \n \n No\n \n \n\n \n \n config\n \n FieldConfigProperty\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Private\n nestedCrudConfig\n \n \n \n \n \n \n \n nestedCrudConfig: CrudConfig\n\n \n \n \n \n Type : CrudConfig\n\n \n \n \n \n Default value : {\n /* size: 5, */\n // methods: ['get']\n }\n \n \n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:15\n \n \n\n \n \n The default config for nested crud lists, as passed to entry-select \n\n \n \n\n \n \n \n \n \n \n \n \n \n Private\n types\n \n \n \n \n \n \n \n types: FieldConfig\n\n \n \n \n \n Type : FieldConfig\n\n \n \n \n \n Default value : {\n id: {\n view: 'label'\n },\n text: {\n view: 'string',\n filterable: true,\n sortable: true\n },\n boolean: {\n prefill: false,\n filterOperator: 'exact'\n },\n formattedText: {\n view: 'textarea',\n filterable: true\n },\n number: {\n sortable: true,\n filterable: true,\n filterOperator: 'exact'\n },\n decimal: {\n view: 'number',\n sortable: true\n },\n url: {\n sortable: true,\n filterable: true\n },\n asset: {\n view: 'asset',\n inputView: 'asset-select',\n // view: 'avatar',\n input: DefaultEntryInputComponent,\n filterOperator: 'exact',\n filterable: true,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n filterPopClass: ''\n },\n assets: {\n view: 'assets',\n inputView: 'assets-select',\n // view: 'avatars',\n input: DefaultEntryInputComponent,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n prefill: [],\n filterOperator: 'any',\n filterable: true,\n queryFilter: value => value.split(','),\n filterPopClass: ''\n },\n dmAsset: {\n view: 'dmAsset',\n inputView: 'dmAsset-select',\n // view: 'avatar',\n input: DefaultEntryInputComponent,\n filterOperator: 'exact',\n filterable: true,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n filterPopClass: ''\n },\n dmAssets: {\n view: 'dmAssets',\n inputView: 'dmAssets-select',\n // view: 'avatars',\n input: DefaultEntryInputComponent,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n prefill: [],\n filterOperator: 'any',\n filterable: true,\n queryFilter: value => value.split(','),\n filterPopClass: ''\n },\n email: {},\n phone: {\n view: 'string'\n },\n datetime: {\n view: 'date',\n sortable: true,\n display: this.displayDate(true),\n validate: value => {\n if (value && (value === 'invalid' || !moment(value).isValid())) {\n return 'Ungültiges Datum';\n }\n return;\n },\n filterPopClass: 'ec-pop_dialog',\n placeholder: moment(new Date()).format(\n this.symbol.resolve('moment.format.date')\n )\n /*,\n prefill: new Date(0)*/\n },\n entry: {\n view: 'tag',\n inputView: 'entry-select',\n input: DefaultEntryInputComponent,\n output: DefaultOutputComponent,\n display: (value, entry, property) => entry.getTitle(property),\n filterable: true,\n filterOperator: 'exact',\n filterPopClass: 'ec-pop_dialog',\n nestedCrudConfig: this.nestedCrudConfig\n },\n entries: {\n view: 'tags',\n inputView: 'entries-select',\n inputViews: [\n {\n name: 'entries-select'\n },\n {\n name: 'entry-list-select',\n levels: 2\n }\n ],\n input: DefaultEntryInputComponent,\n output: DefaultOutputComponent,\n display: (value, entry, property) => entry.getTitle(property),\n filterable: true,\n filterOperator: 'any',\n prefill: [],\n queryFilter: value => value.split(','),\n filterPopClass: 'ec-pop_dialog',\n nestedCrudConfig: this.nestedCrudConfig\n },\n json: {\n view: 'json',\n input: DefaultEntryInputComponent,\n output: DefaultEntryOutputComponent,\n display: value => (value ? JSON.stringify(value) : '')\n },\n location: {\n input: DefaultEntryInputComponent,\n output: DefaultEntryOutputComponent,\n display: value => (value ? value.longitude + ',' + value.latitude : ''),\n filterPopClass: 'ec-pop_dialog'\n },\n account: {\n display: value => (value ? value.title : ''),\n input: AdminEntryInputComponent,\n output: DefaultEntryOutputComponent,\n filterPopClass: 'ec-pop_dialog'\n },\n role: {\n display: value => (value ? value.name : ''),\n input: AdminEntryInputComponent,\n output: DefaultEntryOutputComponent,\n filterPopClass: 'ec-pop_dialog'\n }\n }\n \n \n \n \n Defined in packages/data/src/lib/model-config/type-config.service.ts:23\n \n \n\n \n \n Defines the base configuration of each type.\n\n \n \n\n \n \n\n\n \n\n\n \n import { Injectable } from '@angular/core';\nimport { FieldConfig, FieldConfigProperty } from '@ec.components/core';\nimport { DefaultInputComponent, DefaultOutputComponent, SymbolService } from '@ec.components/ui';\nimport EntryResource from 'ec.sdk/lib/resources/publicAPI/EntryResource';\nimport moment from 'moment-es6';\nimport { CrudConfig } from '../crud/crud-config.interface';\nimport { AdminEntryInputComponent } from '../entry-form/admin-entry-input.component';\nimport { DefaultEntryInputComponent } from '../entry-form/default-entry-input.component';\nimport { DefaultEntryOutputComponent } from '../entry-form/default-entry-output.component';\n\n/** The TypeConfig holds each field type's specific behaviour in certain situations */\n@Injectable()\nexport class TypeConfigService {\n /** The default config for nested crud lists, as passed to entry-select */\n private nestedCrudConfig: CrudConfig = {\n /* size: 5, */\n // methods: ['get']\n };\n\n // TODO check if filterPopClass: '' is still needed\n\n /** Defines the base configuration of each type.*/\n private types: FieldConfig = {\n id: {\n view: 'label'\n },\n text: {\n view: 'string',\n filterable: true,\n sortable: true\n },\n boolean: {\n prefill: false,\n filterOperator: 'exact'\n },\n formattedText: {\n view: 'textarea',\n filterable: true\n },\n number: {\n sortable: true,\n filterable: true,\n filterOperator: 'exact'\n },\n decimal: {\n view: 'number',\n sortable: true\n },\n url: {\n sortable: true,\n filterable: true\n },\n asset: {\n view: 'asset',\n inputView: 'asset-select',\n // view: 'avatar',\n input: DefaultEntryInputComponent,\n filterOperator: 'exact',\n filterable: true,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n filterPopClass: ''\n },\n assets: {\n view: 'assets',\n inputView: 'assets-select',\n // view: 'avatars',\n input: DefaultEntryInputComponent,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n prefill: [],\n filterOperator: 'any',\n filterable: true,\n queryFilter: value => value.split(','),\n filterPopClass: ''\n },\n dmAsset: {\n view: 'dmAsset',\n inputView: 'dmAsset-select',\n // view: 'avatar',\n input: DefaultEntryInputComponent,\n filterOperator: 'exact',\n filterable: true,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n filterPopClass: ''\n },\n dmAssets: {\n view: 'dmAssets',\n inputView: 'dmAssets-select',\n // view: 'avatars',\n input: DefaultEntryInputComponent,\n display: (value, entry, property) =>\n entry.getImageThumbUrl(property, 100),\n prefill: [],\n filterOperator: 'any',\n filterable: true,\n queryFilter: value => value.split(','),\n filterPopClass: ''\n },\n email: {},\n phone: {\n view: 'string'\n },\n datetime: {\n view: 'date',\n sortable: true,\n display: this.displayDate(true),\n validate: value => {\n if (value && (value === 'invalid' || !moment(value).isValid())) {\n return 'Ungültiges Datum';\n }\n return;\n },\n filterPopClass: 'ec-pop_dialog',\n placeholder: moment(new Date()).format(\n this.symbol.resolve('moment.format.date')\n )\n /*,\n prefill: new Date(0)*/\n },\n entry: {\n view: 'tag',\n inputView: 'entry-select',\n input: DefaultEntryInputComponent,\n output: DefaultOutputComponent,\n display: (value, entry, property) => entry.getTitle(property),\n filterable: true,\n filterOperator: 'exact',\n filterPopClass: 'ec-pop_dialog',\n nestedCrudConfig: this.nestedCrudConfig\n },\n entries: {\n view: 'tags',\n inputView: 'entries-select',\n inputViews: [\n {\n name: 'entries-select'\n },\n {\n name: 'entry-list-select',\n levels: 2\n }\n ],\n input: DefaultEntryInputComponent,\n output: DefaultOutputComponent,\n display: (value, entry, property) => entry.getTitle(property),\n filterable: true,\n filterOperator: 'any',\n prefill: [],\n queryFilter: value => value.split(','),\n filterPopClass: 'ec-pop_dialog',\n nestedCrudConfig: this.nestedCrudConfig\n },\n json: {\n view: 'json',\n input: DefaultEntryInputComponent,\n output: DefaultEntryOutputComponent,\n display: value => (value ? JSON.stringify(value) : '')\n },\n location: {\n input: DefaultEntryInputComponent,\n output: DefaultEntryOutputComponent,\n display: value => (value ? value.longitude + ',' + value.latitude : ''),\n filterPopClass: 'ec-pop_dialog'\n },\n account: {\n display: value => (value ? value.title : ''),\n input: AdminEntryInputComponent,\n output: DefaultEntryOutputComponent,\n filterPopClass: 'ec-pop_dialog'\n },\n role: {\n display: value => (value ? value.name : ''),\n input: AdminEntryInputComponent,\n output: DefaultEntryOutputComponent,\n filterPopClass: 'ec-pop_dialog'\n }\n };\n constructor(private symbol: SymbolService) { }\n\n /** Returns the base FieldConfig for the given type. */\n get(type: string): FieldConfigProperty {\n const config = this.types[type];\n if (!config) {\n console.error('missing config for type', type);\n return {};\n }\n Object.assign(config, {\n type,\n view: config.view || type,\n input: config.input || DefaultInputComponent,\n output: config.output || DefaultOutputComponent\n });\n return config;\n }\n\n /** Assigns the given config to the type, e.g. to change the default template of a type. */\n set(type: string, config: FieldConfigProperty) {\n if (!this.types[type]) {\n console.error('cannot configure non existing type', type);\n return;\n }\n Object.assign(this.types[type], config);\n }\n\n /** Returns a date display function. If time is true, the time will be displayed too.\n * Usese 'moment.format.date' and 'moment.format.time' symbols. */\n displayDate(time = true) {\n const format =\n this.symbol.resolve('moment.format.date') +\n (time ? ' ' + this.symbol.resolve('moment.format.time') : '');\n return value => (value ? moment(value).format(format) : '');\n }\n\n /** Returns an account display function */\n displayAccount() {\n return (value, entry, property) =>\n entry.getTitle(property) || this.symbol.resolve('field.creator.ecuser');\n }\n\n /** Returns a date group function. Uses 'moment.format.month' symbol */\n groupDate() {\n return value =>\n moment(value).format(this.symbol.resolve('moment.format.month'));\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/UiModule.html":{"url":"modules/UiModule.html","title":"module - UiModule","body":"\n \n\n\n\n\n Modules\n UiModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_UiModule\n\n\n\ncluster_UiModule_imports\n\n\n\ncluster_UiModule_exports\n\n\n\n\nFormModule\n\nFormModule\n\n\n\nUiModule\n\nUiModule\n\nUiModule -->\n\nFormModule->UiModule\n\n\n\n\n\nIconModule\n\nIconModule\n\nUiModule -->\n\nIconModule->UiModule\n\n\n\n\n\nListModule\n\nListModule\n\nUiModule -->\n\nListModule->UiModule\n\n\n\n\n\nLoaderModule\n\nLoaderModule\n\nUiModule -->\n\nLoaderModule->UiModule\n\n\n\n\n\nNotificationsModule\n\nNotificationsModule\n\nUiModule -->\n\nNotificationsModule->UiModule\n\n\n\n\n\nPopModule\n\nPopModule\n\nUiModule -->\n\nPopModule->UiModule\n\n\n\n\n\nSelectModule\n\nSelectModule\n\nUiModule -->\n\nSelectModule->UiModule\n\n\n\n\n\nSymbolModule\n\nSymbolModule\n\nUiModule -->\n\nSymbolModule->UiModule\n\n\n\n\n\nUtilityModule\n\nUtilityModule\n\nUiModule -->\n\nUtilityModule->UiModule\n\n\n\n\n\nFormModule \n\nFormModule \n\nFormModule -->\n\nUiModule->FormModule \n\n\n\n\n\nIconModule \n\nIconModule \n\nIconModule -->\n\nUiModule->IconModule \n\n\n\n\n\nListModule \n\nListModule \n\nListModule -->\n\nUiModule->ListModule \n\n\n\n\n\nLoaderModule \n\nLoaderModule \n\nLoaderModule -->\n\nUiModule->LoaderModule \n\n\n\n\n\nNotificationsModule \n\nNotificationsModule \n\nNotificationsModule -->\n\nUiModule->NotificationsModule \n\n\n\n\n\nPopModule \n\nPopModule \n\nPopModule -->\n\nUiModule->PopModule \n\n\n\n\n\nSelectModule \n\nSelectModule \n\nSelectModule -->\n\nUiModule->SelectModule \n\n\n\n\n\nSymbolModule \n\nSymbolModule \n\nSymbolModule -->\n\nUiModule->SymbolModule \n\n\n\n\n\nUtilityModule \n\nUtilityModule \n\nUtilityModule -->\n\nUiModule->UtilityModule \n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/ui.module.ts\n \n\n\n\n\n \n \n \n Imports\n \n \n FormModule\n \n \n IconModule\n \n \n ListModule\n \n \n LoaderModule\n \n \n NotificationsModule\n \n \n PopModule\n \n \n SelectModule\n \n \n SymbolModule\n \n \n UtilityModule\n \n \n \n \n Exports\n \n \n FormModule\n \n \n IconModule\n \n \n ListModule\n \n \n LoaderModule\n \n \n NotificationsModule\n \n \n PopModule\n \n \n SelectModule\n \n \n SymbolModule\n \n \n UtilityModule\n \n \n \n \n \n\n\n \n\n\n \n import { NgModule } from '@angular/core';\nimport { ListModule } from './list/list.module';\nimport { PopModule } from './pop/pop.module';\nimport { LoaderModule } from './loader/loader.module';\nimport { NotificationsModule } from './notifications/notifications.module';\nimport { UtilityModule } from './utility/utility.module';\nimport { SelectModule } from './select/select.module';\nimport { IconModule } from './icon/icon.module';\nimport { SymbolModule } from './symbol/symbol.module';\nimport { FormModule } from './form/form.module';\n\nexport const uiModuleConfig = {\n imports: [\n UtilityModule,\n NotificationsModule,\n PopModule,\n LoaderModule,\n FormModule,\n ListModule,\n SelectModule,\n IconModule,\n SymbolModule\n ],\n exports: [\n UtilityModule,\n PopModule,\n NotificationsModule,\n LoaderModule,\n ListModule,\n FormModule,\n SelectModule,\n IconModule,\n SymbolModule\n ]\n};\n\n@NgModule(uiModuleConfig)\nexport class UiModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Update.html":{"url":"interfaces/Update.html","title":"interface - Update","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Update\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/resource-config/resource.service.ts\n \n\n \n Description\n \n \n Instances of Update are emitted by the changes EventEmitter of the CrudService. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n broadcast\n \n \n Optional\n identifier\n \n \n Optional\n list\n \n \n relation\n \n \n Optional\n resource\n \n \n Optional\n type\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n broadcast\n \n \n \n \n broadcast: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, the Update will reach all subscribers, ignoring all filters. Use with caution (reloads everything) \n\n \n \n \n \n \n \n \n \n \n identifier\n \n \n \n \n identifier: string\n\n \n \n\n\n \n \n Type : string\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n An identifier associated with the update e.g. an entryID \n\n \n \n \n \n \n \n \n \n \n list\n \n \n \n \n list: ResourceList\n\n \n \n\n\n \n \n Type : ResourceList\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The list where it happened. \n\n \n \n \n \n \n \n \n \n \n relation\n \n \n \n \n relation: string | string[]\n\n \n \n\n\n \n \n Type : string | string[]\n\n \n \n\n\n\n\n\n \n \n The relation that has been updated. \n\n \n \n \n \n \n \n \n \n \n resource\n \n \n \n \n resource: Resource\n\n \n \n\n\n \n \n Type : Resource\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The relevant resource. \n\n \n \n \n \n \n \n \n \n \n type\n \n \n \n \n type: \"post\" | \"get\" | \"put\" | \"delete\"\n\n \n \n\n\n \n \n Type : \"post\" | \"get\" | \"put\" | \"delete\"\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The type of update. (create/read/update/delete) \n\n \n \n \n \n \n \n\n\n \n import { Injectable } from '@angular/core';\nimport { Item } from '@ec.components/core';\nimport Core from 'ec.sdk/lib/Core';\nimport Resource from 'ec.sdk/lib/resources/Resource';\nimport { Subject, Observable } from 'rxjs';\nimport { filter as rxFilter } from 'rxjs/operators';\nimport { ResourceList } from '../resource-list/resource-list';\nimport { SdkService } from '../sdk/sdk.service';\nimport { ResourceConfig } from './resource-config.service';\n\n/** Instances of Update are emitted by the changes EventEmitter of the CrudService. */\nexport interface Update {\n /** The relation that has been updated. */\n relation: string | string[];\n /** The relevant resource. */\n resource?: Resource;\n /** The list where it happened. */\n list?: ResourceList;\n /** The type of update. (create/read/update/delete) */\n type?: 'post' | 'get' | 'put' | 'delete';\n /** An identifier associated with the update e.g. an entryID */\n identifier?: string;\n /** If true, the Update will reach all subscribers, ignoring all filters. Use with caution (reloads everything) */\n broadcast?: boolean;\n}\n\n/** The CRUD service is meant to be used when modifying entries.\n * As the letters state it should be used to create update and delete entries.\n * Each action fires up a change that can be subscribed upon in any component to react to relevant\n * changes.\n * */\n@Injectable()\nexport class ResourceService {\n /** The changes event is emitted everytime an resource is created or updated. */\n public changes: Subject = new Subject();\n\n /** Injects sdk */\n constructor(private sdk: SdkService, public config: ResourceConfig) {\n /* this.sdk.changesEnvironment.subscribe(env =>\n this.changes.next({\n relation: 'environment',\n broadcast: true\n })) */\n }\n\n /** Gives true if the given change fits all property values of the filter. */\n matches(change: Update, filter: Update): boolean {\n return change.broadcast || Object.keys(filter)\n .reduce((match, key) => match && change[key] === filter[key], true);\n }\n\n /** Yields an observable that emits for all updates that match the given filter */\n change(filter?: Update): Observable {\n if (!filter) {\n return this.changes.asObservable();\n }\n return this.changes.asObservable().pipe(\n rxFilter((change: Update) => this.matches(change, filter))\n );\n }\n\n /** Saves the given resource with the given value. If the resource is not yet existing,\n * it will be created.Otherwise it will be updated. */\n save(item: Item, value: Object, relation: string, api: Core): Promise {\n const resource = item.getBody();\n if (item.config.onSave) {\n return Promise.resolve(item.config.onSave(item, value));\n }\n item.deleteImmutableProperties(value);\n if (resource && resource.save) {\n return this.update(relation, resource, value);\n }\n return this.create(relation, value, api)\n .then((_resource) => {\n return _resource;\n }).catch((err) => {\n return Promise.reject(err);\n });\n }\n\n /** Updates the given resource with the new value. Fires the \"update\" change. */\n update(relation, resource: Resource, value: Object): Promise {\n const oldValues = {}; // save old values\n Object.keys(value).forEach((key) => oldValues[key] = resource[key]);\n Object.assign(resource, this.clean(value, false, false)); // assign new form values\n return resource.save().then((_resource) => {\n this.changes.next({ relation, resource: _resource, type: 'put' });\n return _resource;\n })\n .catch((err) => {\n Object.assign(resource, this.clean(oldValues, false, false)); // fall back to old values\n return Promise.reject(err);\n });\n }\n\n /** Returns true if the given field key is an immutable system property */\n isImmutableProperty(key: string) {\n return key[0] === '_' ||\n ['id', 'created', 'modified'].indexOf(key) !== -1;\n }\n\n /** Removes all null or undefined values from the given object */\n clean(value: Object, setEmptyStringsToNull = true, deleteNullProperties = true): Object {\n for (const key in value) {\n if (value.hasOwnProperty(key)) {\n if (setEmptyStringsToNull && value[key] === '') { // clear empty strings\n value[key] = null;\n }\n if (deleteNullProperties && value[key] === null) {\n delete value[key];\n }\n if (this.isImmutableProperty(key)) { // filter system properties\n delete value[key];\n }\n }\n }\n return value;\n }\n\n /** Creates a new resource with the given value for the given relation. Fires the \"create\" change. */\n create(relation: string, value: Object, api: Core): Promise {\n return api.create(relation, this.clean(value))\n .then((resource: Resource) => {\n this.changes.next({ relation, resource, type: 'post' });\n return resource;\n }).catch((err) => {\n return Promise.reject(err);\n });\n }\n\n /** deletes the given resource and emits the \"delete\" change. */\n del(relation: string, resource: Resource) {\n return resource.del().then((res) => {\n this.changes.next({ relation, resource, type: 'delete' });\n return res;\n });\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/Upload.html":{"url":"interfaces/Upload.html","title":"interface - Upload","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n Upload\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/data/src/lib/files/file.service.ts\n \n\n \n Description\n \n \n Instances of Update are emitted by the changes EventEmitter of the CrudService. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n asset\n \n \n Optional\n assets\n \n \n Optional\n item\n \n \n Optional\n items\n \n \n Optional\n list\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n asset\n \n \n \n \n asset: PublicAssetResource\n\n \n \n\n\n \n \n Type : PublicAssetResource\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The relevant asset. \n\n \n \n \n \n \n \n \n \n \n assets\n \n \n \n \n assets: PublicAssetResource[]\n\n \n \n\n\n \n \n Type : PublicAssetResource[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The relevant assets (when uploading multiple). \n\n \n \n \n \n \n \n \n \n \n item\n \n \n \n \n item: Item\n\n \n \n\n\n \n \n Type : Item\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The uploaded asset as item \n\n \n \n \n \n \n \n \n \n \n items\n \n \n \n \n items: Array>\n\n \n \n\n\n \n \n Type : Array>\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The uploaded asset as item \n\n \n \n \n \n \n \n \n \n \n list\n \n \n \n \n list: ResourceList\n\n \n \n\n\n \n \n Type : ResourceList\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n The list where it happened. \n\n \n \n \n \n \n \n\n\n \n import { EventEmitter, Injectable } from '@angular/core';\nimport { Item } from '@ec.components/core';\nimport DMAssetList from 'ec.sdk/lib/resources/publicAPI/DMAssetList';\nimport DMAssetResource from 'ec.sdk/lib/resources/publicAPI/DMAssetResource';\nimport PublicAssetList from 'ec.sdk/lib/resources/publicAPI/PublicAssetList';\nimport PublicAssetResource from 'ec.sdk/lib/resources/publicAPI/PublicAssetResource';\nimport { TypeConfigService } from '../model-config/type-config.service';\nimport { ResourceConfig } from '../resource-config/resource-config.service';\nimport { ResourceService } from '../resource-config/resource.service';\nimport { ResourceList } from '../resource-list/resource-list';\nimport { SdkService } from '../sdk/sdk.service';\n\n/** Instances of Update are emitted by the changes EventEmitter of the CrudService. */\nexport interface Upload {\n /** The relevant asset. */\n asset?: PublicAssetResource;\n /** The relevant assets (when uploading multiple). */\n assets?: PublicAssetResource[];\n /** The uploaded asset as item */\n item?: Item;\n /** The uploaded asset as item */\n items?: Array>;\n /** The list where it happened. */\n list?: ResourceList;\n}\n\n/** Interface for file options used by new assets */\nexport interface FileOptions {\n /** Preserves Filenames */\n preserveFilenames?: boolean;\n /** Includes assetID in path */\n includeAssetIDInPath?: boolean;\n /** Ignores duplicates */\n ignoreDuplicates?: boolean;\n /** Optional custom names for assets. Mapped by indices to assets. */\n fileName?: string[];\n /** Custom file form fieldName */\n fieldName?: string;\n /** Deduplicate upload */\n deduplicate?: boolean;\n}\n\n/** The CRUD service is meant to be used when modifying entries.\n * As the letters state it should be used to create update and delete entries.\n * Each action fires up a change that can be subscribed upon in any component to react to relevant\n * changes.\n * */\n@Injectable()\nexport class FileService {\n /** Promise that resolves assetGroupList from sdk */\n assetGroupListPromise: Promise;\n /** The changes event is emitted everytime an entry is created or updated. */\n public uploads: EventEmitter = new EventEmitter();\n /** Default options for file upload */\n public defaultOptions: FileOptions = {\n preserveFilenames: true,\n includeAssetIDInPath: true,\n ignoreDuplicates: false,\n deduplicate: false,\n fileName: []\n };\n /** config for new assets */\n public dmAssetConfig = Object.assign({}, this.resourceConfig.get('dmAsset'));\n /** config for legacy assets */\n public legacyAssetConfig = Object.assign({}, this.resourceConfig.get('legacyAsset'), { forceGroup: true });\n /** All the possible assetGroupIDs that are interpreted as old. Comes from validation of field */\n public oldAssetGroupIDs = ['image', 'video', 'audio', 'plain', 'document', 'spreadsheet', 'legacyAsset'];\n\n /** Injects sdk */\n constructor(private sdk: SdkService,\n private typeConfig: TypeConfigService,\n private resourceService: ResourceService,\n private resourceConfig: ResourceConfig) {\n }\n\n public getAssetConfig(assetGroupID) {\n if (this.isOldAssetGroupID(assetGroupID)) {\n const config = Object.assign({}, this.legacyAssetConfig);\n if (this.oldAssetGroupIDs.includes(assetGroupID) && assetGroupID !== 'legacyAsset') {\n config.filter = Object.assign({}, (config.filter || {}), {\n type: assetGroupID\n });\n }\n return config;\n } else {\n return Object.assign({}, this.dmAssetConfig);\n }\n }\n\n /** returns true if the given asset is a new one (DMAssetResource) */\n public isNewAsset(asset: Array | string | DMAssetResource | PublicAssetResource, only = false) {\n if (Array.isArray(asset)) {\n return asset.reduce(\n (match, a) =>\n ((only && (match && this.isNewAsset(a)) ||\n (!only && (match || this.isNewAsset(a)))))\n , only);\n }\n const id = typeof asset === 'string' ? asset : asset.assetID;\n return /^[a-zA-Z0-9\\-_]{22}$/.test(id);\n }\n\n /** Returns form data for a file list. You have to append options (even if empty) to get formData for new assets! */\n public getFormData(files: FileList, options?: FileOptions): FormData {\n const formData: FormData = new FormData();\n for (let i = 0; i {\n if (key in options) {\n formData.append(key, `${options[key]}`);\n }\n });\n }\n return formData;\n }\n\n /** Upload New Assets */\n public uploadAssets(files, assetGroupID, options: FileOptions = {}, api = this.sdk.api): Promise {\n if (!files.length) {\n return;\n }\n const data = files[0].url ? files.map(f => f.url) : this.getFormData(files, options);\n return api.createDMAssets(assetGroupID, data, options)\n .then((assetList: DMAssetList) => {\n const assets = assetList.getAllItems();\n return {\n asset: assets[0],\n assets,\n item: new Item(assets[0], this.resourceConfig.get('dmAsset')),\n items: assets.map(asset => new Item(asset, this.resourceConfig.get('dmAsset')))\n };\n }).then((upload: Upload) => {\n this.uploads.emit(upload);\n this.resourceService.changes.next({ relation: 'dmAsset', type: 'post' });\n return upload;\n });\n }\n\n /** Upload old assets */\n public uploadFiles(files): Promise {\n if (!files.length) {\n return;\n }\n const data = this.getFormData(files);\n return Promise.resolve().then((): Promise Promise> => {\n if (files.length === 1) {\n return this.sdk.api.createAsset(data, {});\n }\n return this.sdk.api.createAssets(data, {});\n })\n .then(res => res())\n .then((response) => {\n if (response['getAllItems']) {\n return response['getAllItems']();\n }\n return [response];\n }).then((assets) => {\n return {\n asset: assets[0],\n assets,\n item: new Item(assets[0], this.resourceConfig.get('legacyAsset')),\n items: assets.map(asset => new Item(asset, this.resourceConfig.get('legacyAsset')))\n };\n }).then((upload: Upload) => {\n this.uploads.emit(upload);\n this.resourceService.changes.next({ relation: 'legacyAsset', type: 'post' });\n this.resourceService.changes.next({ relation: 'asset', type: 'post' });\n return upload;\n });\n }\n\n /** Resolves all assetIDs to PublicAssetResources */\n public resolveAssets(assets: Array, assetGroupID?: string):\n Promise> {\n console.warn('FileService#resolveAssets is deprecated. I doubt somebody ever used it but if you see this, stop it. please.');\n const unresolved = assets.reduce((ids, asset) => {\n if (typeof asset === 'string') {\n ids.push(asset);\n }\n return ids;\n }, []);\n if (unresolved.length === 0) {\n return Promise.resolve(>assets);\n }\n if (!assetGroupID && this.isNewAsset(unresolved)) {\n console.warn('wont resolve new asset without knowing assetGroupID');\n return Promise.resolve([]);\n }\n if (assetGroupID) { // new assets\n return this.sdk.api.dmAssetList(assetGroupID, { assetID: { any: unresolved }, size: 100 })\n .then(dmAssetList => dmAssetList.getAllItems());\n }\n return Promise.resolve().then((): any => {\n if (unresolved.length === 1) {\n return this.sdk.api.asset(unresolved[0]).then(asset => {\n return [asset];\n });\n }\n return this.sdk.api.assetList({ assetID: { any: unresolved }, page: 1 })\n .then((assetList) => {\n const resolved = assetList.getAllItems();\n return assets.map((asset) =>\n typeof asset === 'string' ?\n resolved.find((resource) => resource.assetID === asset) : asset);\n });\n\n });\n }\n\n public assetGroupList(forceReload = false) {\n return (!forceReload && this.assetGroupListPromise) || this.sdk.api.assetGroupList();\n }\n\n /** Yields true if the given assetGroupID is an old one. Also checks for old validation types */\n public isOldAssetGroupID(assetGroupID) {\n return !assetGroupID || this.oldAssetGroupIDs.includes(assetGroupID);\n }\n /** Yields true if the given assetGroupID is not an old one, meaning it is defined and legacyAsset or an old asset type. */\n public isNewAssetGroupID(assetGroupID) {\n return !this.isOldAssetGroupID(assetGroupID);\n }\n\n /** method that can be called after the upload to select the uploaded item(s). */\n selectUpload(upload: Upload, selection: any) {\n if (!selection) {\n console.warn('no selection');\n return;\n }\n if (selection.config.solo) {\n selection.select(upload.item);\n } else {\n selection.toggleAll(upload.items, false, true);\n }\n }\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/UploadComponent.html":{"url":"components/UploadComponent.html","title":"component - UploadComponent","body":"\n \n\n\n\n\n\n Components\n UploadComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/files/upload/upload.component.ts\n\n\n \n Description\n \n \n This component will render an input field to upload files to the datamanager. TODO: demo \n\n \n\n\n \n Implements\n \n \n WithLoader\n WithNotifications\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-upload\n \n\n\n\n\n \n templateUrl\n ./upload.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n event\n \n \n fileInput\n \n \n Public\n filesToUpload\n \n \n notifications\n \n \n pop\n \n \n uploadPromise\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n change\n \n \n clear\n \n \n setGroup\n \n \n trigger\n \n \n upload\n \n \n uploadFiles\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n api\n \n \n assetGroupID\n \n \n custom\n \n \n loader\n \n \n options\n \n \n placeholder\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n groupChanged\n \n \n success\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(sdk: SdkService, fileService: FileService, loaderService: LoaderService, notificationService: NotificationsService, symbol: SymbolService)\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:40\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n sdk\n \n \n SdkService\n \n \n \n No\n \n \n \n \n fileService\n \n \n FileService\n \n \n \n No\n \n \n \n \n loaderService\n \n \n LoaderService\n \n \n \n No\n \n \n \n \n notificationService\n \n \n NotificationsService\n \n \n \n No\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n api\n \n \n The api to use for the upload. Defaults to sdk.api \n\n \n Type : PublicAPI\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:30\n \n \n \n \n \n \n \n \n \n assetGroupID\n \n \n The asset group to upload into. If not defined, old assets will be used! \n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:24\n \n \n \n \n \n \n \n \n \n custom\n \n \n If true, a pop to rename files + customize flags will appear before uploading. \n\n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:26\n \n \n \n \n \n \n \n \n \n loader\n \n \n The loader that should be used while uploading\n\n \n Type : LoaderComponent\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:22\n \n \n \n \n \n \n \n \n \n options\n \n \n Upload options \n\n \n Type : FileOptions\n\n \n \n Default value : Object.assign({}, this.fileService.defaultOptions)\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:28\n \n \n \n \n \n \n \n \n \n placeholder\n \n \n The input placeholder\n\n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:20\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n groupChanged\n \n \n emits when the group has been set from the upload pop \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:34\n \n \n \n \n \n \n \n \n \n success\n \n \n Emits when an upload is complete. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:32\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n change\n \n \n \n \n \n \n \nchange(e, api)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:65\n \n \n\n\n \n \n Uploads the files from the input event. Handles loader and notifications. \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n e\n \n \n No\n \n \n \n \n\n \n \n api\n \n \n No\n \n \n \n this.sdk.api\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n clear\n \n \n \n \n \n \n \nclear()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:73\n \n \n\n\n \n \n clears the file input \n\n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n setGroup\n \n \n \n \n \n \n \nsetGroup(group)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:59\n \n \n\n\n \n \n Sets the asset group to upload to \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n group\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n trigger\n \n \n \n \n \n \n \ntrigger(e)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:49\n \n \n\n\n \n \n opens the system upload window by triggering the input \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n upload\n \n \n \n \n \n \n \nupload(files, api)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:99\n \n \n\n\n \n \n Triggers upload of current selected files \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n files\n \n \n No\n \n \n \n \n\n \n \n api\n \n \n No\n \n \n \n this.sdk.api\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n uploadFiles\n \n \n \n \n \n \n \nuploadFiles(files, e, api)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:80\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n Default value\n \n \n \n \n files\n \n \n No\n \n \n \n \n\n \n \n e\n \n \n No\n \n \n \n \n\n \n \n api\n \n \n No\n \n \n \n this.sdk.api\n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n event\n \n \n \n \n \n \n \n event: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:16\n \n \n\n\n \n \n \n \n \n \n \n \n \n fileInput\n \n \n \n \n \n \n \n fileInput: ElementRef\n\n \n \n \n \n Type : ElementRef\n\n \n \n \n \n Decorators : \n \n \n @ViewChild('fileInput')\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:36\n \n \n\n \n \n Reference to the input[type=file] element \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n filesToUpload\n \n \n \n \n \n \n \n filesToUpload: any\n\n \n \n \n \n Type : any\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:18\n \n \n\n\n \n \n \n \n \n \n \n \n \n notifications\n \n \n \n \n \n \n \n notifications: Notification[]\n\n \n \n \n \n Type : Notification[]\n\n \n \n \n \n Default value : []\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:40\n \n \n\n \n \n Error Notifications \n\n \n \n\n \n \n \n \n \n \n \n \n \n pop\n \n \n \n \n \n \n \n pop: PopComponent\n\n \n \n \n \n Type : PopComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(PopComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:38\n \n \n\n \n \n Pop child for new asset options. \n\n \n \n\n \n \n \n \n \n \n \n \n \n uploadPromise\n \n \n \n \n \n \n \n uploadPromise: Promise\n\n \n \n \n \n Type : Promise\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload/upload.component.ts:17\n \n \n\n\n \n \n\n\n\n\n\n \n import { Component, ElementRef, EventEmitter, Input, Output, ViewChild } from '@angular/core';\nimport {\n LoaderComponent, LoaderService, Notification, NotificationsService,\n PopComponent, SymbolService, WithLoader, WithNotifications\n} from '@ec.components/ui';\nimport PublicAPI from 'ec.sdk/lib/PublicAPI';\nimport { SdkService } from '../../sdk/sdk.service';\nimport { FileOptions, FileService, Upload } from '../file.service';\n\n/** This component will render an input field to upload files to the datamanager. TODO: demo */\n@Component({\n selector: 'ec-upload',\n templateUrl: './upload.component.html',\n})\nexport class UploadComponent implements WithLoader, WithNotifications {\n event: any;\n uploadPromise: Promise;\n public filesToUpload: any;\n /** The input placeholder*/\n @Input() placeholder: string;\n /** The loader that should be used while uploading*/\n @Input() loader: LoaderComponent;\n /** The asset group to upload into. If not defined, old assets will be used! */\n @Input() assetGroupID: string;\n /** If true, a pop to rename files + customize flags will appear before uploading. */\n @Input() custom: boolean;\n /** Upload options */\n @Input() options: FileOptions = Object.assign({}, this.fileService.defaultOptions);\n /** The api to use for the upload. Defaults to sdk.api */\n @Input() api: PublicAPI;\n /** Emits when an upload is complete. */\n @Output() success: EventEmitter = new EventEmitter();\n /** emits when the group has been set from the upload pop */\n @Output() groupChanged: EventEmitter = new EventEmitter();\n /** Reference to the input[type=file] element */\n @ViewChild('fileInput') fileInput: ElementRef;\n /** Pop child for new asset options. */\n @ViewChild(PopComponent) pop: PopComponent;\n /** Error Notifications */\n notifications: Notification[] = [];\n\n constructor(private sdk: SdkService,\n private fileService: FileService,\n private loaderService: LoaderService,\n private notificationService: NotificationsService,\n private symbol: SymbolService) {\n }\n /** opens the system upload window by triggering the input */\n trigger(e) {\n if (!this.fileInput) {\n console.error('cannot trigger upload: file input element not found!');\n return;\n }\n /* this.clear(); */\n this.fileInput.nativeElement.click();\n }\n\n /** Sets the asset group to upload to */\n setGroup(group) {\n this.assetGroupID = group;\n this.groupChanged.emit(group);\n }\n\n /** Uploads the files from the input event. Handles loader and notifications. */\n change(e, api = this.sdk.api) {\n if (!e || !e.target || !e.target.files || !e.target.files.length) {\n return;\n }\n return this.uploadFiles(e.target.files, e, api);\n }\n\n /** clears the file input */\n clear() {\n if (!this.fileInput) {\n return;\n }\n this.fileInput.nativeElement.value = ''; // clear input to eventually trigger change on same file\n }\n\n uploadFiles(files, e, api = this.sdk.api) {\n files = typeof files === 'string'\n ? files.split('\\n').map(url => ({ name: url, url }))\n : files;\n if (files[0].url && this.fileService.isOldAssetGroupID(this.assetGroupID)) {\n delete this.assetGroupID;\n }\n this.filesToUpload = files;\n e.preventDefault();\n e.stopPropagation();\n if (this.custom || !this.assetGroupID) {\n this.event = e;\n this.pop.show();\n return Promise.resolve();\n }\n return this.upload(files, api);\n }\n\n /** Triggers upload of current selected files */\n upload(files, api = this.sdk.api) {\n this.uploadPromise = (this.fileService.isNewAssetGroupID(this.assetGroupID) ?\n this.fileService.uploadAssets(files, this.assetGroupID, this.options, api) :\n this.fileService.uploadFiles(files))\n .then((_upload) => {\n this.success.emit(_upload);\n this.notificationService.emit({\n title: this.symbol.resolve('success.upload'),\n type: 'success',\n hide: this.notifications\n });\n this.pop.hide();\n return _upload;\n }).catch((err) => {\n console.error(err);\n this.notificationService.emit({\n title: this.symbol.resolve('error.upload'),\n error: err,\n sticky: true,\n hide: this.notifications,\n append: this.notifications\n });\n });\n this.loaderService.wait(this.uploadPromise, this.loader);\n this.uploadPromise.then(() => {\n delete this.uploadPromise;\n });\n return this.uploadPromise;\n }\n}\n\n \n\n \n \n\n \n \n \n \n \n \n \n {{'upload.assetGroup' | symbol}}\n \n \n \n \n \n \n \n {{'upload.preserveFilenames' | symbol}}\n \n \n \n \n \n \n {{'upload.includeAssetIDInPath' | symbol}}\n \n \n \n \n \n \n {{'upload.ignoreDuplicates' | symbol}}\n \n \n \n \n \n \n {{'upload.deduplicate' | symbol}}\n \n \n \n {{ f.name }}\n \n \n \n \n \n Upload\n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' {{\\'upload.assetGroup\\' | symbol}} {{\\'upload.preserveFilenames\\' | symbol}} {{\\'upload.includeAssetIDInPath\\' | symbol}} {{\\'upload.ignoreDuplicates\\' | symbol}} {{\\'upload.deduplicate\\' | symbol}} {{ f.name }} Upload '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'UploadComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"components/UploadSelectComponent.html":{"url":"components/UploadSelectComponent.html","title":"component - UploadSelectComponent","body":"\n \n\n\n\n\n\n Components\n UploadSelectComponent\n\n\n\n \n Info\n \n \n Source\n \n \n Template\n \n \n DOM Tree\n \n\n\n\n \n File\n\n\n packages/data/src/lib/files/upload-select/upload-select.component.ts\n\n\n\n\n \n Implements\n \n \n OnInit\n \n\n\n\n Metadata\n \n \n\n\n\n\n\n\n\n\n\n\n\n \n selector\n ec-upload-select\n \n\n\n\n\n \n templateUrl\n ./upload-select.component.html\n \n\n\n\n\n\n\n\n\n \n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Public\n fileService\n \n \n Public\n focusEvent\n \n \n showUrlInput\n \n \n Public\n symbol\n \n \n uploader\n \n \n urlsToUpload\n \n \n \n \n\n \n \n Methods\n \n \n \n \n \n \n ngOnInit\n \n \n setGroup\n \n \n toggleUrlInput\n \n \n triggerUpload\n \n \n uploadFromUrls\n \n \n \n \n\n \n \n Inputs\n \n \n \n \n \n \n assetGroupID\n \n \n config\n \n \n custom\n \n \n disableDrop\n \n \n loader\n \n \n options\n \n \n readOnly\n \n \n \n \n\n \n \n Outputs\n \n \n \n \n \n \n browse\n \n \n groupChanged\n \n \n uploaded\n \n \n \n \n\n\n\n \n \n\n\n \n Constructor\n \n \n \n \nconstructor(symbol: SymbolService, fileService: FileService)\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:35\n \n \n\n \n \n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n symbol\n \n \n SymbolService\n \n \n \n No\n \n \n \n \n fileService\n \n \n FileService\n \n \n \n No\n \n \n \n \n \n \n \n \n \n \n\n\n \n Inputs\n \n \n \n \n \n assetGroupID\n \n \n \n Type : string\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:19\n \n \n \n \n \n \n \n \n \n config\n \n \n \n Type : CrudConfig\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:27\n \n \n \n \n \n \n \n \n \n custom\n \n \n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:17\n \n \n \n \n \n \n \n \n \n disableDrop\n \n \n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:18\n \n \n \n \n \n \n \n \n \n loader\n \n \n \n Type : LoaderComponent\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:20\n \n \n \n \n \n \n \n \n \n options\n \n \n \n Type : FileOptions\n\n \n \n Default value : Object.assign({}, this.fileService.defaultOptions)\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:21\n \n \n \n \n \n \n \n \n \n readOnly\n \n \n \n Type : boolean\n\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:16\n \n \n \n \n\n \n Outputs\n \n \n \n \n \n browse\n \n \n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:26\n \n \n \n \n \n \n \n \n \n groupChanged\n \n \n emits when the group has been set from the upload pop \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:23\n \n \n \n \n \n \n \n \n \n uploaded\n \n \n Emits when an upload is complete. \n\n $event Type: EventEmitter\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:25\n \n \n \n \n\n\n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n ngOnInit\n \n \n \n \n \n \n \nngOnInit()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:39\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n setGroup\n \n \n \n \n \n \n \nsetGroup(group)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:42\n \n \n\n\n \n \n Sets the asset group to upload to \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n group\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n toggleUrlInput\n \n \n \n \n \n \n \ntoggleUrlInput()\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:47\n \n \n\n\n \n \n\n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n triggerUpload\n \n \n \n \n \n \n \ntriggerUpload(e)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:60\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n e\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n uploadFromUrls\n \n \n \n \n \n \n \nuploadFromUrls(urls, e)\n \n \n\n\n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:54\n \n \n\n\n \n \n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n urls\n \n \n No\n \n \n\n \n \n e\n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : void\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n fileService\n \n \n \n \n \n \n \n fileService: FileService\n\n \n \n \n \n Type : FileService\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n \n Public\n focusEvent\n \n \n \n \n \n \n \n focusEvent: EventEmitter\n\n \n \n \n \n Type : EventEmitter\n\n \n \n \n \n Default value : new EventEmitter()\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:35\n \n \n\n \n \n The event that focuses the url input \n\n \n \n\n \n \n \n \n \n \n \n \n \n showUrlInput\n \n \n \n \n \n \n \n showUrlInput: \n\n \n \n \n \n Default value : false\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:33\n \n \n\n \n \n Wether or not the url input should be visible \n\n \n \n\n \n \n \n \n \n \n \n \n \n Public\n symbol\n \n \n \n \n \n \n \n symbol: SymbolService\n\n \n \n \n \n Type : SymbolService\n\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:37\n \n \n\n\n \n \n \n \n \n \n \n \n \n uploader\n \n \n \n \n \n \n \n uploader: UploadComponent\n\n \n \n \n \n Type : UploadComponent\n\n \n \n \n \n Decorators : \n \n \n @ViewChild(UploadComponent)\n \n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:29\n \n \n\n \n \n The nested upload component \n\n \n \n\n \n \n \n \n \n \n \n \n \n urlsToUpload\n \n \n \n \n \n \n \n urlsToUpload: string\n\n \n \n \n \n Type : string\n\n \n \n \n \n Default value : ''\n \n \n \n \n Defined in packages/data/src/lib/files/upload-select/upload-select.component.ts:31\n \n \n\n \n \n The Url to upload from \n\n \n \n\n \n \n\n\n\n\n\n \n import { Component, OnInit, Input, EventEmitter, Output, ViewChild } from '@angular/core';\nimport { LoaderComponent } from '@ec.components/ui';\nimport { CrudConfig } from '../../crud/crud-config.interface';\nimport DMAssetResource from 'ec.sdk/lib/resources/publicAPI/DMAssetResource';\nimport PublicAssetResource from 'ec.sdk/lib/resources/publicAPI/PublicAssetResource';\nimport { SymbolService } from '@ec.components/ui';\nimport { UploadComponent } from '../upload/upload.component';\nimport { Upload, FileOptions, FileService } from '../file.service';\n\n@Component({\n selector: 'ec-upload-select',\n templateUrl: './upload-select.component.html'\n})\n\nexport class UploadSelectComponent implements OnInit {\n @Input() readOnly: boolean;\n @Input() custom: boolean;\n @Input() disableDrop: boolean;\n @Input() assetGroupID: string;\n @Input() loader: LoaderComponent;\n @Input() options: FileOptions = Object.assign({}, this.fileService.defaultOptions);\n /** emits when the group has been set from the upload pop */\n @Output() groupChanged: EventEmitter = new EventEmitter();\n /** Emits when an upload is complete. */\n @Output() uploaded: EventEmitter = new EventEmitter();\n @Output() browse: EventEmitter = new EventEmitter();\n @Input() config: CrudConfig;\n /** The nested upload component */\n @ViewChild(UploadComponent) uploader: UploadComponent;\n /** The Url to upload from */\n urlsToUpload = '';\n /** Wether or not the url input should be visible */\n showUrlInput = false;\n /** The event that focuses the url input */\n public focusEvent: EventEmitter = new EventEmitter();\n\n constructor(public symbol: SymbolService, public fileService: FileService) { }\n\n ngOnInit() { }\n\n /** Sets the asset group to upload to */\n setGroup(group) {\n this.assetGroupID = group;\n this.groupChanged.emit(group);\n }\n\n toggleUrlInput() {\n this.showUrlInput = !this.showUrlInput;\n setTimeout(() => {\n this.focusEvent.emit(true);\n });\n }\n\n uploadFromUrls(urls, e) {\n this.uploader.uploadFiles(urls, e).then(() => {\n this.urlsToUpload = '';\n this.showUrlInput = false;\n });\n }\n triggerUpload(e) {\n this.uploader.trigger(e);\n }\n}\n\n \n\n \n \n Drop to upload\n \n {{'upload.link' | symbol}}\n {{'upload.or' | symbol}}\n {{'upload.url' | symbol}}\n \n {{'upload.or' | symbol}}\n {{'upload.browse' | symbol}}\n \n \n \n {{'upload.url.start' | symbol}}\n \n\n \n\n\n \n \n \n \n Legend\n \n \n Html element\n \n \n Component\n \n \n Html element with directive\n \n \n \n\n \n\n\n\n\n\n\n var COMPONENT_TEMPLATE = ' Drop to upload {{\\'upload.link\\' | symbol}} {{\\'upload.or\\' | symbol}} {{\\'upload.url\\' | symbol}} {{\\'upload.or\\' | symbol}} {{\\'upload.browse\\' | symbol}} {{\\'upload.url.start\\' | symbol}} '\n var COMPONENTS = [{'name': 'AceComponent', 'selector': 'ec-ace'},{'name': 'ActionbarComponent', 'selector': 'ec-actionbar'},{'name': 'AdminEntryInputComponent', 'selector': ''},{'name': 'ApiActionbarComponent', 'selector': 'ec-api-actionbar'},{'name': 'AssetgroupSelectComponent', 'selector': 'ec-assetgroup-select'},{'name': 'AssetListComponent', 'selector': 'ec-asset-list'},{'name': 'AssetListPopComponent', 'selector': 'ec-asset-list-pop'},{'name': 'AssetSelectComponent', 'selector': 'ec-asset-select'},{'name': 'CalendarComponent', 'selector': 'ec-calendar'},{'name': 'CrudComponent', 'selector': 'ec-crud'},{'name': 'DaterangeComponent', 'selector': 'ec-daterange'},{'name': 'DatetimeComponent', 'selector': 'ec-datetime'},{'name': 'DefaultEntryInputComponent', 'selector': ''},{'name': 'DefaultEntryOutputComponent', 'selector': 'ec-default-entry-output'},{'name': 'DefaultInputComponent', 'selector': ''},{'name': 'DefaultOutputComponent', 'selector': 'ec-default-output'},{'name': 'DynamicRackComponent', 'selector': ''},{'name': 'DynamicSlotComponent', 'selector': 'ec-dynamic-slot'},{'name': 'EntryFormComponent', 'selector': 'ec-entry-form'},{'name': 'EntryListComponent', 'selector': 'ec-entry-list'},{'name': 'EntryListPopComponent', 'selector': 'ec-entry-list-pop'},{'name': 'EntryListSelectComponent', 'selector': 'ec-entry-list-select'},{'name': 'EntryPopComponent', 'selector': 'ec-entry-pop'},{'name': 'EntrySelectComponent', 'selector': 'ec-entry-select'},{'name': 'ErrorComponent', 'selector': 'ec-error'},{'name': 'FormComponent', 'selector': 'ec-form'},{'name': 'HeatmapComponent', 'selector': 'ec-heatmap'},{'name': 'IconComponent', 'selector': 'ec-icon'},{'name': 'ImageSelectPopComponent', 'selector': 'ec-image-select-pop'},{'name': 'InputComponent', 'selector': 'ec-input'},{'name': 'InputErrorsComponent', 'selector': 'ec-input-errors'},{'name': 'ListComponent', 'selector': 'ec-list'},{'name': 'ListHeaderComponent', 'selector': 'ec-list-header'},{'name': 'ListItemsComponent', 'selector': 'ec-list-items'},{'name': 'LoaderComponent', 'selector': 'ec-loader'},{'name': 'LocationMapComponent', 'selector': 'ec-location-map'},{'name': 'LocationPickerComponent', 'selector': 'ec-location-picker'},{'name': 'LocationSearchComponent', 'selector': 'ec-location-search'},{'name': 'LoginComponent', 'selector': 'ec-login'},{'name': 'LoginFormComponent', 'selector': 'ec-login-form'},{'name': 'MediumEditorComponent', 'selector': 'ec-medium-editor'},{'name': 'MenuComponent', 'selector': 'ec-menu,[ec-menu]'},{'name': 'ModalComponent', 'selector': 'ec-modal'},{'name': 'MonthComponent', 'selector': 'ec-month'},{'name': 'NotificationsComponent', 'selector': 'ec-notifications'},{'name': 'OutputComponent', 'selector': 'ec-output'},{'name': 'PaginationComponent', 'selector': 'ec-pagination'},{'name': 'PasswordResetComponent', 'selector': 'ec-password-reset'},{'name': 'PopComponent', 'selector': 'ec-pop'},{'name': 'ResourceActionbarComponent', 'selector': 'ec-resource-actionbar'},{'name': 'ResourceCrudComponent', 'selector': 'ec-resource-crud'},{'name': 'ResourceDeletePopComponent', 'selector': 'ec-resource-delete-pop'},{'name': 'ResourceFormComponent', 'selector': 'ec-resource-form'},{'name': 'ResourceListComponent', 'selector': 'ec-resource-list'},{'name': 'ResourceListPopComponent', 'selector': 'ec-resource-list-pop'},{'name': 'ResourcePopComponent', 'selector': 'ec-resource-pop'},{'name': 'ResourceSelectComponent', 'selector': 'ec-resource-select'},{'name': 'SearchbarComponent', 'selector': 'ec-searchbar'},{'name': 'SelectComponent', 'selector': 'ec-select'},{'name': 'SignupComponent', 'selector': 'ec-signup'},{'name': 'SignupFormComponent', 'selector': 'ec-signup-form'},{'name': 'TabComponent', 'selector': 'ec-tab'},{'name': 'TabsComponent', 'selector': 'ec-tabs'},{'name': 'TagSelectComponent', 'selector': 'ec-tag-select'},{'name': 'TinymceComponent', 'selector': 'ec-tinymce'},{'name': 'ToggleComponent', 'selector': 'ec-toggle'},{'name': 'UploadComponent', 'selector': 'ec-upload'},{'name': 'UploadSelectComponent', 'selector': 'ec-upload-select'}];\n var DIRECTIVES = [{'name': 'AssetDirective', 'selector': '[ecAsset]'},{'name': 'DropzoneDirective', 'selector': '[ecDropzone]'},{'name': 'EntriesDirective', 'selector': '[ecEntries]'},{'name': 'EntryDirective', 'selector': '[ecEntry]'},{'name': 'FocusDirective', 'selector': '[ecFocus]'},{'name': 'ImageDirective', 'selector': 'img [ecImage]'},{'name': 'SlotHostDirective', 'selector': '[ecSlotHost]'}];\n var ACTUAL_COMPONENT = {'name': 'UploadSelectComponent'};\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules/UtilityModule.html":{"url":"modules/UtilityModule.html","title":"module - UtilityModule","body":"\n \n\n\n\n\n Modules\n UtilityModule\n\n\n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_UtilityModule\n\n\n\ncluster_UtilityModule_declarations\n\n\n\ncluster_UtilityModule_imports\n\n\n\ncluster_UtilityModule_exports\n\n\n\n\nFocusDirective\n\nFocusDirective\n\n\n\nUtilityModule\n\nUtilityModule\n\nUtilityModule -->\n\nFocusDirective->UtilityModule\n\n\n\n\n\nLoginFormComponent\n\nLoginFormComponent\n\nUtilityModule -->\n\nLoginFormComponent->UtilityModule\n\n\n\n\n\nMenuComponent\n\nMenuComponent\n\nUtilityModule -->\n\nMenuComponent->UtilityModule\n\n\n\n\n\nSignupFormComponent\n\nSignupFormComponent\n\nUtilityModule -->\n\nSignupFormComponent->UtilityModule\n\n\n\n\n\nTabComponent\n\nTabComponent\n\nUtilityModule -->\n\nTabComponent->UtilityModule\n\n\n\n\n\nTabsComponent\n\nTabsComponent\n\nUtilityModule -->\n\nTabsComponent->UtilityModule\n\n\n\n\n\nFocusDirective \n\nFocusDirective \n\nFocusDirective -->\n\nUtilityModule->FocusDirective \n\n\n\n\n\nLoginFormComponent \n\nLoginFormComponent \n\nLoginFormComponent -->\n\nUtilityModule->LoginFormComponent \n\n\n\n\n\nMenuComponent \n\nMenuComponent \n\nMenuComponent -->\n\nUtilityModule->MenuComponent \n\n\n\n\n\nSignupFormComponent \n\nSignupFormComponent \n\nSignupFormComponent -->\n\nUtilityModule->SignupFormComponent \n\n\n\n\n\nTabComponent \n\nTabComponent \n\nTabComponent -->\n\nUtilityModule->TabComponent \n\n\n\n\n\nTabsComponent \n\nTabsComponent \n\nTabsComponent -->\n\nUtilityModule->TabsComponent \n\n\n\n\n\nIoModule\n\nIoModule\n\nUtilityModule -->\n\nIoModule->UtilityModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/utility/utility.module.ts\n \n\n\n\n\n \n \n \n Declarations\n \n \n FocusDirective\n \n \n LoginFormComponent\n \n \n MenuComponent\n \n \n SignupFormComponent\n \n \n TabComponent\n \n \n TabsComponent\n \n \n \n \n Imports\n \n \n IoModule\n \n \n \n \n Exports\n \n \n FocusDirective\n \n \n LoginFormComponent\n \n \n MenuComponent\n \n \n SignupFormComponent\n \n \n TabComponent\n \n \n TabsComponent\n \n \n \n \n \n\n\n \n\n\n \n import { CommonModule } from '@angular/common';\nimport { NgModule } from '@angular/core';\nimport { FormsModule, ReactiveFormsModule } from '@angular/forms';\nimport { RouterModule } from '@angular/router';\nimport { IoModule } from '../io/io.module';\nimport { FocusDirective } from './focus/focus.directive';\nimport { LoginFormComponent } from './login-form/login-form.component';\nimport { MenuComponent } from './menu/menu.component';\nimport { SignupFormComponent } from './signup-form/signup-form.component';\nimport { TabComponent } from './tab/tab.component';\nimport { TabsComponent } from './tabs/tabs.component';\n\nexport const utilityModuleConfig = {\n entryComponents: [],\n declarations: [\n TabsComponent,\n TabComponent,\n MenuComponent,\n LoginFormComponent,\n SignupFormComponent,\n FocusDirective,\n ],\n imports: [\n FormsModule,\n ReactiveFormsModule,\n IoModule,\n CommonModule,\n RouterModule,\n ],\n exports: [\n /* FormsModule,\n ReactiveFormsModule,\n IoModule,\n */\n TabsComponent,\n TabComponent,\n MenuComponent,\n LoginFormComponent,\n SignupFormComponent,\n FocusDirective,\n RouterModule,\n ],\n providers: [],\n};\n\n@NgModule(utilityModuleConfig)\nexport class UtilityModule {\n}\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"pipes/VisibleFieldsPipe.html":{"url":"pipes/VisibleFieldsPipe.html","title":"pipe - VisibleFieldsPipe","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n Pipes\n VisibleFieldsPipe\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n\n \n File\n \n \n packages/ui/src/lib/form/visible-fields.pipe.ts\n \n\n \n Description\n \n \n The VisibleFieldsPipe filters an array of Fields to only give back the ones that have form NOT set to false. \n\n \n\n\n \n Metadata\n \n \n \n Name\n visibleFields\n \n \n \n \n\n \n \n \n Methods\n \n \n \n \n \n \n \n \n transform\n \n \n \n \n \n \n \ntransform(fields: Array, form: Form)\n \n \n\n\n \n \n Defined in packages/ui/src/lib/form/visible-fields.pipe.ts:12\n \n \n\n\n \n \n Filters out all fields that should not be displayed in a regular form \n\n\n \n Parameters :\n \n \n \n Name\n Type\n Optional\n \n \n \n \n fields\n \n Array\n \n \n \n No\n \n \n\n \n \n form\n \n Form\n \n \n \n No\n \n \n\n \n \n \n \n \n \n \n Returns : any\n\n \n \n \n \n \n \n \n \n\n\n \n \n \n Properties\n \n \n \n \n \n \n \n \n Public\n formService\n \n \n \n \n \n \n \n formService: FormService\n\n \n \n \n \n Type : FormService\n\n \n \n \n \n Defined in packages/ui/src/lib/form/visible-fields.pipe.ts:10\n \n \n\n\n \n \n\n\n \n\n\n \n import { Pipe, PipeTransform } from '@angular/core';\nimport { Field, Form } from '@ec.components/core';\nimport { FormService } from './form.service';\n\n/** The VisibleFieldsPipe filters an array of Fields to only give back the ones that have form NOT set to false. */\n@Pipe({\n name: 'visibleFields'\n})\nexport class VisibleFieldsPipe implements PipeTransform {\n constructor(public formService: FormService) { }\n /** Filters out all fields that should not be displayed in a regular form */\n transform(fields: Array, form: Form): any {\n return fields.filter((field) =>\n this.formService.shouldBePartOfForm(field, form)\n && !field.hideInForm\n );\n }\n}\n\n \n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/WithLoader.html":{"url":"interfaces/WithLoader.html","title":"interface - WithLoader","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n WithLoader\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/loader/with-loader.interface.ts\n \n\n \n Description\n \n \n This interface can be used on a component that uses a loader. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n loader\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n loader\n \n \n \n \n loader: LoaderComponent\n\n \n \n\n\n \n \n Type : LoaderComponent\n\n \n \n\n\n\n\n\n \n \n The loader that is contacted on any kind of loading operation. \n\n \n \n \n \n \n \n\n\n \n import { LoaderComponent } from './loader.component';\n/** This interface can be used on a component that uses a loader. */\nexport interface WithLoader {\n /** The loader that is contacted on any kind of loading operation. */\n loader: LoaderComponent;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"interfaces/WithNotifications.html":{"url":"interfaces/WithNotifications.html","title":"interface - WithNotifications","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n Interfaces\n WithNotifications\n\n\n\n \n Info\n \n \n Source\n \n\n\n\n \n \n File\n \n \n packages/ui/src/lib/notifications/with-notifications.interface.ts\n \n\n \n Description\n \n \n This interface can be used on a component that uses notifications. \n\n \n\n\n \n Index\n \n \n \n \n Properties\n \n \n \n \n \n \n Optional\n notifications\n \n \n Optional\n silent\n \n \n \n \n \n \n \n\n\n\n \n Properties\n \n \n \n \n \n notifications\n \n \n \n \n notifications: Notification[]\n\n \n \n\n\n \n \n Type : Notification[]\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n Stores notification history for later access. E.g. stores errors that should be hidden later. \n\n \n \n \n \n \n \n \n \n \n silent\n \n \n \n \n silent: boolean\n\n \n \n\n\n \n \n Type : boolean\n\n \n \n\n \n \n Optional\n \n \n\n\n\n\n \n \n If true, no notifications will be emitted \n\n \n \n \n \n \n \n\n\n \n import { Notification } from './notification';\n\n\n/** This interface can be used on a component that uses notifications. */\nexport interface WithNotifications {\n /** Stores notification history for later access. E.g. stores errors that should be hidden later. */\n notifications?: Notification[];\n /** If true, no notifications will be emitted */\n silent?: boolean;\n}\n\n \n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"changelog.html":{"url":"changelog.html","title":"getting-started - changelog","body":"\n \n\nChange Log\nEach package has its own changelog:\n\n@ec.components/data\n@ec.components/ui\n@ec.components/core\n@ec.components/calendar\n@ec.components/style\n@ec.components/ace\n@ec.components/location\n@ec.components/medium-editor\n@ec.components/tinymce\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"dependencies.html":{"url":"dependencies.html","title":"package-dependencies - dependencies","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n Dependencies\n \n \n \n @agm/core : 1.0.0-beta.3\n \n @angular/animations : ~7.2.0\n \n @angular/common : ~7.2.0\n \n @angular/compiler : ~7.2.0\n \n @angular/core : ~7.2.0\n \n @angular/forms : ~7.2.0\n \n @angular/platform-browser : ~7.2.0\n \n @angular/platform-browser-dynamic : ~7.2.0\n \n @angular/router : ~7.2.0\n \n @ec.components/ace : ^0.6.5\n \n @ec.components/calendar : ^0.2.6\n \n @ec.components/core : ^0.19.8\n \n @ec.components/data : ^0.42.12\n \n @ec.components/location : ^0.18.5\n \n @ec.components/medium-editor : ^0.4.5\n \n @ec.components/style : ^0.21.2\n \n @ec.components/tinymce : ^0.5.6\n \n @ec.components/ui : ^0.36.11\n \n ace-builds : ^1.4.2\n \n core-js : ^2.5.4\n \n ec.sdk : ^0.17.18\n \n googlemaps : ^1.12.0\n \n lerna : ^3.10.5\n \n medium-editor : ^5.23.2\n \n moment-es6 : ^1.0.0\n \n ngx-cookie : ^2.0.1\n \n ngx-drag-drop : ^1.1.0\n \n rxjs : ~6.3.3\n \n tinymce : ^4.9.2\n \n tslib : ^1.9.0\n \n zone.js : ~0.8.26\n \n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/functions.html":{"url":"miscellaneous/functions.html","title":"miscellaneous-functions - functions","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Functions\n\n\n\n Index\n \n \n \n \n \n \n cookieFactory   (packages/.../auth.module.ts)\n \n \n sortBoolean   (packages/.../sorter.ts)\n \n \n sortNumber   (packages/.../sorter.ts)\n \n \n sortString   (packages/.../sorter.ts)\n \n \n \n \n \n \n\n\n packages/data/src/lib/auth/auth.module.ts\n \n \n \n \n \n \n \n \n cookieFactory\n \n \n \n \n \n \n \ncookieFactory()\n \n \n\n\n\n\n \n \n loads CookieModule \n\n\n \n \n \n \n\n packages/core/src/lib/sorter/sorter.ts\n \n \n \n \n \n \n \n \n sortBoolean\n \n \n \n \n \n \n \nsortBoolean(a, b)\n \n \n\n\n\n\n \n \n Sorts booleans \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n a\n \n \n No\n \n \n\n \n \n b\n \n \n No\n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sortNumber\n \n \n \n \n \n \n \nsortNumber(a, b)\n \n \n\n\n\n\n \n \n Sorts numbers \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n a\n \n \n No\n \n \n\n \n \n b\n \n \n No\n \n \n\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n sortString\n \n \n \n \n \n \n \nsortString(a, b)\n \n \n\n\n\n\n \n \n Sorts strings (naturally) \n\n\n \n Parameters :\n \n \n \n Name\n Optional\n \n \n \n \n a\n \n \n No\n \n \n\n \n \n b\n \n \n No\n \n \n\n \n \n \n \n \n \n \n \n \n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"index.html":{"url":"index.html","title":"getting-started - index","body":"\n \n\nec.components\nThis project contains all sorts of angular components for creating data driven applications.\nIt is mainly used for entrecode admin applications in combination with the entrecode using ec.sdk.\nPackages\nMain Packages\n\n@ec.components/core: contains core typescript classes (no angular/datamanager)\n@ec.components/ui: contains core ui components (not datamanager specific)\n@ec.components/data: contains ui components for datamanager.\n@ec.components/style: contains styles for all components, built on x.ui.\n\nThe dependencies stack up from core to data (data > ui > core). You could also omit data, using just the ui components.\nOptional Packages\n\n@ec.components/calendar: contains calendar components, uses moment.\n@ec.components/location: wraps angular-google-maps.\n@ec.components/tinymce: wraps tinymce wysiwyg editor.\n@ec.components/medium-editor: wraps medium wysiwyg editor.\n@ec.components/ace: wraps ace code editor.\n\nDocumentation\nThe main documentation is located at entrecode.github.io/ec.components. You can find a getting started guide there.\nDemo\nA Demo is available at components.entrecode.de.\nDeveloping with Lerna + Yarn Workspaces\nThe repository is a monorepo, managed by lerna and yarn workspaces.\nAll folders inside dist + packages/style will be used as symlinks in node_modules/@ec.components/*.\nYou can update the symlinks by running yarn (e.g. after adding a new package).\nDev Setup\nAfter a fresh clone of the repo, run this:\nyarn install\nnpm run dev-setup\nnpm run startThe dev-setup script builds all packages and symlinks them to the node_modules.\nReleasing\nRun release task and select versions:\nnpm run releaseTo publish a new package for the first time, make sure you run npm publish --access=public before running lerna. See add-new-package for more info on creating a new package.\nAlso make sure to use Conventional Commits for proper changelogging.\nDefault README\nThis project was generated with Angular CLI version 7.2.1.\nDevelopment server\nRun ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.\nCode scaffolding\nRun ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.\nBuild\nRun ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod flag for a production build.\nRunning unit tests\nRun ng test to execute the unit tests via Karma.\nRunning end-to-end tests\nRun ng e2e to execute the end-to-end tests via Protractor.\nFurther help\nTo get more help on the Angular CLI use ng help or go check out the Angular CLI README.\nImpressum & Datenschutz\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"modules.html":{"url":"modules.html","title":"modules - modules","body":"\n \n\n\n\n\n Modules\n\n\n \n \n \n \n AceModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n AuthModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n CalendarModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n DataModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n FilesModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n FormModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n IconModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n IoModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n ListModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n LoaderModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n LocationModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n MediumEditorModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n NotificationsModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n PopModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n ResourceModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n SdkModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n SelectModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n SymbolModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n TinymceModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n UiModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n \n \n UtilityModule\n \n \n \n \n Your browser does not support SVG\n \n \n \n Browse\n \n \n \n \n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"overview.html":{"url":"overview.html","title":"overview - overview","body":"\n \n\n\n\n Overview\n\n \n\n \n \n\n\n\n\n\ndependencies\n\nLegend\n\n  Declarations\n\n  Module\n\n  Bootstrap\n\n  Providers\n\n  Exports\n\ncluster_AceModule\n\n\n\ncluster_AceModule_declarations\n\n\n\ncluster_AceModule_AceComponent_providers\n\n\n\ncluster_AceModule_exports\n\n\n\ncluster_AuthModule\n\n\n\ncluster_AuthModule_declarations\n\n\n\ncluster_AuthModule_imports\n\n\n\ncluster_AuthModule_exports\n\n\n\ncluster_AuthModule_providers\n\n\n\ncluster_CalendarModule\n\n\n\ncluster_CalendarModule_declarations\n\n\n\ncluster_CalendarModule_exports\n\n\n\ncluster_DataModule\n\n\n\ncluster_DataModule_declarations\n\n\n\ncluster_DataModule_imports\n\n\n\ncluster_DataModule_exports\n\n\n\ncluster_DataModule_providers\n\n\n\ncluster_FilesModule\n\n\n\ncluster_FilesModule_declarations\n\n\n\ncluster_FilesModule_exports\n\n\n\ncluster_FilesModule_providers\n\n\n\ncluster_FormModule\n\n\n\ncluster_FormModule_declarations\n\n\n\ncluster_FormModule_imports\n\n\n\ncluster_FormModule_exports\n\n\n\ncluster_FormModule_providers\n\n\n\ncluster_IconModule\n\n\n\ncluster_IconModule_declarations\n\n\n\ncluster_IconModule_exports\n\n\n\ncluster_IconModule_providers\n\n\n\ncluster_IoModule\n\n\n\ncluster_IoModule_declarations\n\n\n\ncluster_IoModule_exports\n\n\n\ncluster_ListModule\n\n\n\ncluster_ListModule_declarations\n\n\n\ncluster_ListModule_imports\n\n\n\ncluster_ListModule_exports\n\n\n\ncluster_ListModule_providers\n\n\n\ncluster_LoaderModule\n\n\n\ncluster_LoaderModule_declarations\n\n\n\ncluster_LoaderModule_exports\n\n\n\ncluster_LoaderModule_providers\n\n\n\ncluster_LocationModule\n\n\n\ncluster_LocationModule_declarations\n\n\n\ncluster_LocationModule_exports\n\n\n\ncluster_LocationModule_providers\n\n\n\ncluster_MediumEditorModule\n\n\n\ncluster_MediumEditorModule_declarations\n\n\n\ncluster_MediumEditorModule_MediumEditorComponent_providers\n\n\n\ncluster_MediumEditorModule_exports\n\n\n\ncluster_NotificationsModule\n\n\n\ncluster_NotificationsModule_declarations\n\n\n\ncluster_NotificationsModule_exports\n\n\n\ncluster_NotificationsModule_providers\n\n\n\ncluster_PopModule\n\n\n\ncluster_PopModule_declarations\n\n\n\ncluster_PopModule_exports\n\n\n\ncluster_PopModule_providers\n\n\n\ncluster_ResourceModule\n\n\n\ncluster_ResourceModule_declarations\n\n\n\ncluster_ResourceModule_exports\n\n\n\ncluster_ResourceModule_providers\n\n\n\ncluster_SdkModule\n\n\n\ncluster_SdkModule_providers\n\n\n\ncluster_SelectModule\n\n\n\ncluster_SelectModule_declarations\n\n\n\ncluster_SelectModule_SelectComponent_providers\n\n\n\ncluster_SelectModule_exports\n\n\n\ncluster_SymbolModule\n\n\n\ncluster_SymbolModule_declarations\n\n\n\ncluster_SymbolModule_exports\n\n\n\ncluster_SymbolModule_providers\n\n\n\ncluster_TinymceModule\n\n\n\ncluster_TinymceModule_declarations\n\n\n\ncluster_TinymceModule_exports\n\n\n\ncluster_UiModule\n\n\n\ncluster_UiModule_exports\n\n\n\ncluster_UtilityModule\n\n\n\ncluster_UtilityModule_declarations\n\n\n\ncluster_UtilityModule_exports\n\n\n\n\nAceComponent\n\nAceComponent\n\n\n\nAceModule\n\nAceModule\n\nAceModule -->\n\nAceComponent->AceModule\n\n\n\n\n\nAceComponent \n\nAceComponent \n\nAceComponent -->\n\nAceModule->AceComponent \n\n\n\n AceComponent), multi: true\n} -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true\n}\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true\n}\n\n AceComponent), multi: true\n}->AceComponent -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true\n}->AceComponent\n\n\n\n\n\nLoginComponent\n\nLoginComponent\n\n\n\nAuthModule\n\nAuthModule\n\nAuthModule -->\n\nLoginComponent->AuthModule\n\n\n\n\n\nPasswordResetComponent\n\nPasswordResetComponent\n\nAuthModule -->\n\nPasswordResetComponent->AuthModule\n\n\n\n\n\nSignupComponent\n\nSignupComponent\n\nAuthModule -->\n\nSignupComponent->AuthModule\n\n\n\n\n\nLoginComponent \n\nLoginComponent \n\nLoginComponent -->\n\nAuthModule->LoginComponent \n\n\n\n\n\nPasswordResetComponent \n\nPasswordResetComponent \n\nPasswordResetComponent -->\n\nAuthModule->PasswordResetComponent \n\n\n\n\n\nSignupComponent \n\nSignupComponent \n\nSignupComponent -->\n\nAuthModule->SignupComponent \n\n\n\n\n\nDataModule\n\nDataModule\n\nDataModule -->\n\nAuthModule->DataModule\n\n\n\n\n\nUiModule\n\nUiModule\n\nAuthModule -->\n\nUiModule->AuthModule\n\n\n\nDataModule -->\n\nUiModule->DataModule\n\n\n\n\n\nFilesModule\n\nFilesModule\n\nFilesModule -->\n\nUiModule->FilesModule\n\n\n\n\n\nResourceModule\n\nResourceModule\n\nResourceModule -->\n\nUiModule->ResourceModule\n\n\n\n\n\nPopModule \n\nPopModule \n\nPopModule -->\n\nUiModule->PopModule \n\n\n\n\n\nFormModule \n\nFormModule \n\nFormModule -->\n\nUiModule->FormModule \n\n\n\n\n\nLocationModule\n\nLocationModule\n\nLocationModule -->\n\nUiModule->LocationModule\n\n\n\n\n\nListModule \n\nListModule \n\nListModule -->\n\nUiModule->ListModule \n\n\n\n\n\nIconModule \n\nIconModule \n\nIconModule -->\n\nUiModule->IconModule \n\n\n\n\n\nLoaderModule \n\nLoaderModule \n\nLoaderModule -->\n\nUiModule->LoaderModule \n\n\n\n\n\nNotificationsModule \n\nNotificationsModule \n\nNotificationsModule -->\n\nUiModule->NotificationsModule \n\n\n\n\n\nSelectModule \n\nSelectModule \n\nSelectModule -->\n\nUiModule->SelectModule \n\n\n\n\n\nSymbolModule \n\nSymbolModule \n\nSymbolModule -->\n\nUiModule->SymbolModule \n\n\n\n\n\nUtilityModule \n\nUtilityModule \n\nUtilityModule -->\n\nUiModule->UtilityModule \n\n\n\n\n\ncookieFactory()\n\ncookieFactory()\n\nAuthModule -->\n\ncookieFactory()->AuthModule\n\n\n\n\n\nAuthService\n\nAuthService\n\nAuthModule -->\n\nAuthService->AuthModule\n\n\n\n\n\nCalendarComponent\n\nCalendarComponent\n\n\n\nCalendarModule\n\nCalendarModule\n\nCalendarModule -->\n\nCalendarComponent->CalendarModule\n\n\n\n\n\nDaterangeComponent\n\nDaterangeComponent\n\nCalendarModule -->\n\nDaterangeComponent->CalendarModule\n\n\n\n\n\nDatetimePipe\n\nDatetimePipe\n\nCalendarModule -->\n\nDatetimePipe->CalendarModule\n\n\n\n\n\nHeatmapComponent\n\nHeatmapComponent\n\nCalendarModule -->\n\nHeatmapComponent->CalendarModule\n\n\n\n\n\nMonthComponent\n\nMonthComponent\n\nCalendarModule -->\n\nMonthComponent->CalendarModule\n\n\n\n\n\nCalendarComponent \n\nCalendarComponent \n\nCalendarComponent -->\n\nCalendarModule->CalendarComponent \n\n\n\n\n\nDaterangeComponent \n\nDaterangeComponent \n\nDaterangeComponent -->\n\nCalendarModule->DaterangeComponent \n\n\n\n\n\nDatetimePipe \n\nDatetimePipe \n\nDatetimePipe -->\n\nCalendarModule->DatetimePipe \n\n\n\n\n\nHeatmapComponent \n\nHeatmapComponent \n\nHeatmapComponent -->\n\nCalendarModule->HeatmapComponent \n\n\n\n\n\nMonthComponent \n\nMonthComponent \n\nMonthComponent -->\n\nCalendarModule->MonthComponent \n\n\n\n\n\nFormModule\n\nFormModule\n\nFormModule -->\n\nCalendarModule->FormModule\n\n\n\n\n\nAdminEntryInputComponent\n\nAdminEntryInputComponent\n\nDataModule -->\n\nAdminEntryInputComponent->DataModule\n\n\n\n\n\nCrudComponent\n\nCrudComponent\n\nDataModule -->\n\nCrudComponent->DataModule\n\n\n\n\n\nDefaultEntryInputComponent\n\nDefaultEntryInputComponent\n\nDataModule -->\n\nDefaultEntryInputComponent->DataModule\n\n\n\n\n\nDefaultEntryOutputComponent\n\nDefaultEntryOutputComponent\n\nDataModule -->\n\nDefaultEntryOutputComponent->DataModule\n\n\n\n\n\nEntriesDirective\n\nEntriesDirective\n\nDataModule -->\n\nEntriesDirective->DataModule\n\n\n\n\n\nEntryDirective\n\nEntryDirective\n\nDataModule -->\n\nEntryDirective->DataModule\n\n\n\n\n\nEntryFormComponent\n\nEntryFormComponent\n\nDataModule -->\n\nEntryFormComponent->DataModule\n\n\n\n\n\nEntryListComponent\n\nEntryListComponent\n\nDataModule -->\n\nEntryListComponent->DataModule\n\n\n\n\n\nEntryListPopComponent\n\nEntryListPopComponent\n\nDataModule -->\n\nEntryListPopComponent->DataModule\n\n\n\n\n\nEntryListSelectComponent\n\nEntryListSelectComponent\n\nDataModule -->\n\nEntryListSelectComponent->DataModule\n\n\n\n\n\nEntryPopComponent\n\nEntryPopComponent\n\nDataModule -->\n\nEntryPopComponent->DataModule\n\n\n\n\n\nEntrySelectComponent\n\nEntrySelectComponent\n\nDataModule -->\n\nEntrySelectComponent->DataModule\n\n\n\n\n\nAuthModule \n\nAuthModule \n\nAuthModule -->\n\nDataModule->AuthModule \n\n\n\n\n\nCrudComponent \n\nCrudComponent \n\nCrudComponent -->\n\nDataModule->CrudComponent \n\n\n\n\n\nEntriesDirective \n\nEntriesDirective \n\nEntriesDirective -->\n\nDataModule->EntriesDirective \n\n\n\n\n\nEntryDirective \n\nEntryDirective \n\nEntryDirective -->\n\nDataModule->EntryDirective \n\n\n\n\n\nEntryFormComponent \n\nEntryFormComponent \n\nEntryFormComponent -->\n\nDataModule->EntryFormComponent \n\n\n\n\n\nEntryListComponent \n\nEntryListComponent \n\nEntryListComponent -->\n\nDataModule->EntryListComponent \n\n\n\n\n\nEntryListPopComponent \n\nEntryListPopComponent \n\nEntryListPopComponent -->\n\nDataModule->EntryListPopComponent \n\n\n\n\n\nEntryListSelectComponent \n\nEntryListSelectComponent \n\nEntryListSelectComponent -->\n\nDataModule->EntryListSelectComponent \n\n\n\n\n\nEntryPopComponent \n\nEntryPopComponent \n\nEntryPopComponent -->\n\nDataModule->EntryPopComponent \n\n\n\n\n\nEntrySelectComponent \n\nEntrySelectComponent \n\nEntrySelectComponent -->\n\nDataModule->EntrySelectComponent \n\n\n\n\n\nFilesModule \n\nFilesModule \n\nFilesModule -->\n\nDataModule->FilesModule \n\n\n\n\n\nResourceModule \n\nResourceModule \n\nResourceModule -->\n\nDataModule->ResourceModule \n\n\n\n\n\nSdkModule \n\nSdkModule \n\nSdkModule -->\n\nDataModule->SdkModule \n\n\n\n\n\nUiModule \n\nUiModule \n\nUiModule -->\n\nDataModule->UiModule \n\n\n\nDataModule -->\n\nFilesModule->DataModule\n\n\n\nSdkModule -->\n\nFilesModule->SdkModule \n\n\n\n\n\nAssetDirective \n\nAssetDirective \n\nAssetDirective -->\n\nFilesModule->AssetDirective \n\n\n\n\n\nAssetListComponent \n\nAssetListComponent \n\nAssetListComponent -->\n\nFilesModule->AssetListComponent \n\n\n\n\n\nAssetListPopComponent \n\nAssetListPopComponent \n\nAssetListPopComponent -->\n\nFilesModule->AssetListPopComponent \n\n\n\n\n\nAssetSelectComponent \n\nAssetSelectComponent \n\nAssetSelectComponent -->\n\nFilesModule->AssetSelectComponent \n\n\n\n\n\nAssetgroupSelectComponent \n\nAssetgroupSelectComponent \n\nAssetgroupSelectComponent -->\n\nFilesModule->AssetgroupSelectComponent \n\n\n\n\n\nDropzoneDirective \n\nDropzoneDirective \n\nDropzoneDirective -->\n\nFilesModule->DropzoneDirective \n\n\n\n\n\nImageDirective \n\nImageDirective \n\nImageDirective -->\n\nFilesModule->ImageDirective \n\n\n\n\n\nImageSelectPopComponent \n\nImageSelectPopComponent \n\nImageSelectPopComponent -->\n\nFilesModule->ImageSelectPopComponent \n\n\n\n\n\nTagSelectComponent \n\nTagSelectComponent \n\nTagSelectComponent -->\n\nFilesModule->TagSelectComponent \n\n\n\n\n\nUploadComponent \n\nUploadComponent \n\nUploadComponent -->\n\nFilesModule->UploadComponent \n\n\n\n\n\nUploadSelectComponent \n\nUploadSelectComponent \n\nUploadSelectComponent -->\n\nFilesModule->UploadSelectComponent \n\n\n\nDataModule -->\n\nResourceModule->DataModule\n\n\n\nFilesModule -->\n\nResourceModule->FilesModule\n\n\n\nSdkModule -->\n\nResourceModule->SdkModule \n\n\n\nUiModule -->\n\nResourceModule->UiModule \n\n\n\n\n\nApiActionbarComponent \n\nApiActionbarComponent \n\nApiActionbarComponent -->\n\nResourceModule->ApiActionbarComponent \n\n\n\n\n\nResourceActionbarComponent \n\nResourceActionbarComponent \n\nResourceActionbarComponent -->\n\nResourceModule->ResourceActionbarComponent \n\n\n\n\n\nResourceCrudComponent \n\nResourceCrudComponent \n\nResourceCrudComponent -->\n\nResourceModule->ResourceCrudComponent \n\n\n\n\n\nResourceDeletePopComponent \n\nResourceDeletePopComponent \n\nResourceDeletePopComponent -->\n\nResourceModule->ResourceDeletePopComponent \n\n\n\n\n\nResourceFormComponent \n\nResourceFormComponent \n\nResourceFormComponent -->\n\nResourceModule->ResourceFormComponent \n\n\n\n\n\nResourceListComponent \n\nResourceListComponent \n\nResourceListComponent -->\n\nResourceModule->ResourceListComponent \n\n\n\n\n\nResourceListPopComponent \n\nResourceListPopComponent \n\nResourceListPopComponent -->\n\nResourceModule->ResourceListPopComponent \n\n\n\n\n\nResourcePopComponent \n\nResourcePopComponent \n\nResourcePopComponent -->\n\nResourceModule->ResourcePopComponent \n\n\n\n\n\nResourceSelectComponent \n\nResourceSelectComponent \n\nResourceSelectComponent -->\n\nResourceModule->ResourceSelectComponent \n\n\n\n\n\nSdkModule\n\nSdkModule\n\nDataModule -->\n\nSdkModule->DataModule\n\n\n\nFilesModule -->\n\nSdkModule->FilesModule\n\n\n\nResourceModule -->\n\nSdkModule->ResourceModule\n\n\n\n\n\nCrudService\n\nCrudService\n\nDataModule -->\n\nCrudService->DataModule\n\n\n\n\n\nHistoryService\n\nHistoryService\n\nDataModule -->\n\nHistoryService->DataModule\n\n\n\n\n\nModelConfigService\n\nModelConfigService\n\nDataModule -->\n\nModelConfigService->DataModule\n\n\n\n\n\nTypeConfigService\n\nTypeConfigService\n\nDataModule -->\n\nTypeConfigService->DataModule\n\n\n\n\n\nAssetDirective\n\nAssetDirective\n\nFilesModule -->\n\nAssetDirective->FilesModule\n\n\n\n\n\nAssetListComponent\n\nAssetListComponent\n\nFilesModule -->\n\nAssetListComponent->FilesModule\n\n\n\n\n\nAssetListPopComponent\n\nAssetListPopComponent\n\nFilesModule -->\n\nAssetListPopComponent->FilesModule\n\n\n\n\n\nAssetSelectComponent\n\nAssetSelectComponent\n\nFilesModule -->\n\nAssetSelectComponent->FilesModule\n\n\n\n\n\nAssetgroupSelectComponent\n\nAssetgroupSelectComponent\n\nFilesModule -->\n\nAssetgroupSelectComponent->FilesModule\n\n\n\n\n\nDropzoneDirective\n\nDropzoneDirective\n\nFilesModule -->\n\nDropzoneDirective->FilesModule\n\n\n\n\n\nImageDirective\n\nImageDirective\n\nFilesModule -->\n\nImageDirective->FilesModule\n\n\n\n\n\nImageSelectPopComponent\n\nImageSelectPopComponent\n\nFilesModule -->\n\nImageSelectPopComponent->FilesModule\n\n\n\n\n\nTagSelectComponent\n\nTagSelectComponent\n\nFilesModule -->\n\nTagSelectComponent->FilesModule\n\n\n\n\n\nUploadComponent\n\nUploadComponent\n\nFilesModule -->\n\nUploadComponent->FilesModule\n\n\n\n\n\nUploadSelectComponent\n\nUploadSelectComponent\n\nFilesModule -->\n\nUploadSelectComponent->FilesModule\n\n\n\n\n\nFileService\n\nFileService\n\nFilesModule -->\n\nFileService->FilesModule\n\n\n\n\n\nDatetimeComponent\n\nDatetimeComponent\n\nFormModule -->\n\nDatetimeComponent->FormModule\n\n\n\n\n\nDefaultInputComponent\n\nDefaultInputComponent\n\nFormModule -->\n\nDefaultInputComponent->FormModule\n\n\n\n\n\nDefaultOutputComponent\n\nDefaultOutputComponent\n\nFormModule -->\n\nDefaultOutputComponent->FormModule\n\n\n\n\n\nFormComponent\n\nFormComponent\n\nFormModule -->\n\nFormComponent->FormModule\n\n\n\n\n\nMaxItemsPipe\n\nMaxItemsPipe\n\nFormModule -->\n\nMaxItemsPipe->FormModule\n\n\n\n\n\nToggleComponent\n\nToggleComponent\n\nFormModule -->\n\nToggleComponent->FormModule\n\n\n\n\n\nVisibleFieldsPipe\n\nVisibleFieldsPipe\n\nFormModule -->\n\nVisibleFieldsPipe->FormModule\n\n\n\nUiModule -->\n\nFormModule->UiModule\n\n\n\n\n\nDatetimeComponent \n\nDatetimeComponent \n\nDatetimeComponent -->\n\nFormModule->DatetimeComponent \n\n\n\n\n\nFormComponent \n\nFormComponent \n\nFormComponent -->\n\nFormModule->FormComponent \n\n\n\n\n\nIoModule \n\nIoModule \n\nIoModule -->\n\nFormModule->IoModule \n\n\n\n\n\nMaxItemsPipe \n\nMaxItemsPipe \n\nMaxItemsPipe -->\n\nFormModule->MaxItemsPipe \n\n\n\nPopModule -->\n\nFormModule->PopModule \n\n\n\n\n\nToggleComponent \n\nToggleComponent \n\nToggleComponent -->\n\nFormModule->ToggleComponent \n\n\n\n\n\nVisibleFieldsPipe \n\nVisibleFieldsPipe \n\nVisibleFieldsPipe -->\n\nFormModule->VisibleFieldsPipe \n\n\n\n\n\nListModule\n\nListModule\n\nListModule -->\n\nFormModule->ListModule\n\n\n\n\n\nIconModule\n\nIconModule\n\nUiModule -->\n\nIconModule->UiModule\n\n\n\nFormModule -->\n\nIconModule->FormModule\n\n\n\n\n\nPopModule\n\nPopModule\n\nPopModule -->\n\nIconModule->PopModule\n\n\n\n\n\nIconComponent \n\nIconComponent \n\nIconComponent -->\n\nIconModule->IconComponent \n\n\n\nListModule -->\n\nIconModule->ListModule\n\n\n\n\n\nNotificationsModule\n\nNotificationsModule\n\nNotificationsModule -->\n\nIconModule->NotificationsModule\n\n\n\n\n\nIoModule\n\nIoModule\n\nFormModule -->\n\nIoModule->FormModule\n\n\n\n\n\nDynamicRackComponent \n\nDynamicRackComponent \n\nDynamicRackComponent -->\n\nIoModule->DynamicRackComponent \n\n\n\n\n\nDynamicSlotComponent \n\nDynamicSlotComponent \n\nDynamicSlotComponent -->\n\nIoModule->DynamicSlotComponent \n\n\n\n\n\nInputComponent \n\nInputComponent \n\nInputComponent -->\n\nIoModule->InputComponent \n\n\n\n\n\nInputErrorsComponent \n\nInputErrorsComponent \n\nInputErrorsComponent -->\n\nIoModule->InputErrorsComponent \n\n\n\n\n\nOutputComponent \n\nOutputComponent \n\nOutputComponent -->\n\nIoModule->OutputComponent \n\n\n\n\n\nSlotHostDirective \n\nSlotHostDirective \n\nSlotHostDirective -->\n\nIoModule->SlotHostDirective \n\n\n\n\n\nUtilityModule\n\nUtilityModule\n\nUtilityModule -->\n\nIoModule->UtilityModule\n\n\n\n\n\nLoaderModule\n\nLoaderModule\n\nUiModule -->\n\nLoaderModule->UiModule\n\n\n\nFormModule -->\n\nLoaderModule->FormModule\n\n\n\n\n\nLoaderComponent \n\nLoaderComponent \n\nLoaderComponent -->\n\nLoaderModule->LoaderComponent \n\n\n\n\n\nSelectModule\n\nSelectModule\n\nSelectModule -->\n\nLoaderModule->SelectModule\n\n\n\nUiModule -->\n\nPopModule->UiModule\n\n\n\nFormModule -->\n\nPopModule->FormModule\n\n\n\nNotificationsModule -->\n\nPopModule->NotificationsModule\n\n\n\n\n\nModalComponent \n\nModalComponent \n\nModalComponent -->\n\nPopModule->ModalComponent \n\n\n\n\n\nPopComponent \n\nPopComponent \n\nPopComponent -->\n\nPopModule->PopComponent \n\n\n\n\n\nSymbolModule\n\nSymbolModule\n\nUiModule -->\n\nSymbolModule->UiModule\n\n\n\nFormModule -->\n\nSymbolModule->FormModule\n\n\n\nListModule -->\n\nSymbolModule->ListModule\n\n\n\n\n\nSymbolPipe \n\nSymbolPipe \n\nSymbolPipe -->\n\nSymbolModule->SymbolPipe \n\n\n\n\n\nFormService\n\nFormService\n\nFormModule -->\n\nFormService->FormModule\n\n\n\n\n\nIconComponent\n\nIconComponent\n\nIconModule -->\n\nIconComponent->IconModule\n\n\n\n\n\nIconService\n\nIconService\n\nIconModule -->\n\nIconService->IconModule\n\n\n\n\n\nDynamicRackComponent\n\nDynamicRackComponent\n\nIoModule -->\n\nDynamicRackComponent->IoModule\n\n\n\n\n\nDynamicSlotComponent\n\nDynamicSlotComponent\n\nIoModule -->\n\nDynamicSlotComponent->IoModule\n\n\n\n\n\nInputComponent\n\nInputComponent\n\nIoModule -->\n\nInputComponent->IoModule\n\n\n\n\n\nInputErrorsComponent\n\nInputErrorsComponent\n\nIoModule -->\n\nInputErrorsComponent->IoModule\n\n\n\n\n\nOutputComponent\n\nOutputComponent\n\nIoModule -->\n\nOutputComponent->IoModule\n\n\n\n\n\nSlotHostDirective\n\nSlotHostDirective\n\nIoModule -->\n\nSlotHostDirective->IoModule\n\n\n\n\n\nGroupPipe\n\nGroupPipe\n\nListModule -->\n\nGroupPipe->ListModule\n\n\n\n\n\nListComponent\n\nListComponent\n\nListModule -->\n\nListComponent->ListModule\n\n\n\n\n\nListHeaderComponent\n\nListHeaderComponent\n\nListModule -->\n\nListHeaderComponent->ListModule\n\n\n\n\n\nListItemsComponent\n\nListItemsComponent\n\nListModule -->\n\nListItemsComponent->ListModule\n\n\n\n\n\nPaginationComponent\n\nPaginationComponent\n\nListModule -->\n\nPaginationComponent->ListModule\n\n\n\n\n\nSearchbarComponent\n\nSearchbarComponent\n\nListModule -->\n\nSearchbarComponent->ListModule\n\n\n\nUiModule -->\n\nListModule->UiModule\n\n\n\nFormModule -->\n\nListModule->FormModule \n\n\n\n\n\nGroupPipe \n\nGroupPipe \n\nGroupPipe -->\n\nListModule->GroupPipe \n\n\n\n\n\nListComponent \n\nListComponent \n\nListComponent -->\n\nListModule->ListComponent \n\n\n\n\n\nListHeaderComponent \n\nListHeaderComponent \n\nListHeaderComponent -->\n\nListModule->ListHeaderComponent \n\n\n\n\n\nListItemsComponent \n\nListItemsComponent \n\nListItemsComponent -->\n\nListModule->ListItemsComponent \n\n\n\n\n\nPaginationComponent \n\nPaginationComponent \n\nPaginationComponent -->\n\nListModule->PaginationComponent \n\n\n\n\n\nSearchbarComponent \n\nSearchbarComponent \n\nSearchbarComponent -->\n\nListModule->SearchbarComponent \n\n\n\nSelectModule -->\n\nListModule->SelectModule\n\n\n\nUiModule -->\n\nUtilityModule->UiModule\n\n\n\nListModule -->\n\nUtilityModule->ListModule\n\n\n\n\n\nFocusDirective \n\nFocusDirective \n\nFocusDirective -->\n\nUtilityModule->FocusDirective \n\n\n\n\n\nLoginFormComponent \n\nLoginFormComponent \n\nLoginFormComponent -->\n\nUtilityModule->LoginFormComponent \n\n\n\n\n\nMenuComponent \n\nMenuComponent \n\nMenuComponent -->\n\nUtilityModule->MenuComponent \n\n\n\n\n\nSignupFormComponent \n\nSignupFormComponent \n\nSignupFormComponent -->\n\nUtilityModule->SignupFormComponent \n\n\n\n\n\nTabComponent \n\nTabComponent \n\nTabComponent -->\n\nUtilityModule->TabComponent \n\n\n\n\n\nTabsComponent \n\nTabsComponent \n\nTabsComponent -->\n\nUtilityModule->TabsComponent \n\n\n\n\n\nListConfigService\n\nListConfigService\n\nListModule -->\n\nListConfigService->ListModule\n\n\n\n\n\nLoaderComponent\n\nLoaderComponent\n\nLoaderModule -->\n\nLoaderComponent->LoaderModule\n\n\n\n\n\nLoaderService\n\nLoaderService\n\nLoaderModule -->\n\nLoaderService->LoaderModule\n\n\n\n\n\nLocationMapComponent\n\nLocationMapComponent\n\nLocationModule -->\n\nLocationMapComponent->LocationModule\n\n\n\n\n\nLocationPickerComponent\n\nLocationPickerComponent\n\nLocationModule -->\n\nLocationPickerComponent->LocationModule\n\n\n\n\n\nLocationSearchComponent\n\nLocationSearchComponent\n\nLocationModule -->\n\nLocationSearchComponent->LocationModule\n\n\n\n\n\nLocationMapComponent \n\nLocationMapComponent \n\nLocationMapComponent -->\n\nLocationModule->LocationMapComponent \n\n\n\n\n\nLocationPickerComponent \n\nLocationPickerComponent \n\nLocationPickerComponent -->\n\nLocationModule->LocationPickerComponent \n\n\n\n\n\nLocationSearchComponent \n\nLocationSearchComponent \n\nLocationSearchComponent -->\n\nLocationModule->LocationSearchComponent \n\n\n\n\n\nGeocodeService\n\nGeocodeService\n\nLocationModule -->\n\nGeocodeService->LocationModule\n\n\n\n\n\nMediumEditorComponent\n\nMediumEditorComponent\n\n\n\nMediumEditorModule\n\nMediumEditorModule\n\nMediumEditorModule -->\n\nMediumEditorComponent->MediumEditorModule\n\n\n\n\n\nMediumEditorComponent \n\nMediumEditorComponent \n\nMediumEditorComponent -->\n\nMediumEditorModule->MediumEditorComponent \n\n\n\n MediumEditorComponent), multi: true\n} -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}\n\n MediumEditorComponent), multi: true\n}->MediumEditorComponent -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true\n}->MediumEditorComponent\n\n\n\n\n\nErrorComponent\n\nErrorComponent\n\nNotificationsModule -->\n\nErrorComponent->NotificationsModule\n\n\n\n\n\nNotificationsComponent\n\nNotificationsComponent\n\nNotificationsModule -->\n\nNotificationsComponent->NotificationsModule\n\n\n\nUiModule -->\n\nNotificationsModule->UiModule\n\n\n\n\n\nErrorComponent \n\nErrorComponent \n\nErrorComponent -->\n\nNotificationsModule->ErrorComponent \n\n\n\n\n\nNotificationsComponent \n\nNotificationsComponent \n\nNotificationsComponent -->\n\nNotificationsModule->NotificationsComponent \n\n\n\n\n\nNotificationsService\n\nNotificationsService\n\nNotificationsModule -->\n\nNotificationsService->NotificationsModule\n\n\n\n\n\nModalComponent\n\nModalComponent\n\nPopModule -->\n\nModalComponent->PopModule\n\n\n\n\n\nPopComponent\n\nPopComponent\n\nPopModule -->\n\nPopComponent->PopModule\n\n\n\n\n\nPopService\n\nPopService\n\nPopModule -->\n\nPopService->PopModule\n\n\n\n\n\nApiActionbarComponent\n\nApiActionbarComponent\n\nResourceModule -->\n\nApiActionbarComponent->ResourceModule\n\n\n\n\n\nResourceActionbarComponent\n\nResourceActionbarComponent\n\nResourceModule -->\n\nResourceActionbarComponent->ResourceModule\n\n\n\n\n\nResourceCrudComponent\n\nResourceCrudComponent\n\nResourceModule -->\n\nResourceCrudComponent->ResourceModule\n\n\n\n\n\nResourceDeletePopComponent\n\nResourceDeletePopComponent\n\nResourceModule -->\n\nResourceDeletePopComponent->ResourceModule\n\n\n\n\n\nResourceFormComponent\n\nResourceFormComponent\n\nResourceModule -->\n\nResourceFormComponent->ResourceModule\n\n\n\n\n\nResourceListComponent\n\nResourceListComponent\n\nResourceModule -->\n\nResourceListComponent->ResourceModule\n\n\n\n\n\nResourceListPopComponent\n\nResourceListPopComponent\n\nResourceModule -->\n\nResourceListPopComponent->ResourceModule\n\n\n\n\n\nResourcePopComponent\n\nResourcePopComponent\n\nResourceModule -->\n\nResourcePopComponent->ResourceModule\n\n\n\n\n\nResourceSelectComponent\n\nResourceSelectComponent\n\nResourceModule -->\n\nResourceSelectComponent->ResourceModule\n\n\n\n\n\nResourceConfig\n\nResourceConfig\n\nResourceModule -->\n\nResourceConfig->ResourceModule\n\n\n\n\n\nResourceService\n\nResourceService\n\nResourceModule -->\n\nResourceService->ResourceModule\n\n\n\n\n\nSdkService\n\nSdkService\n\nSdkModule -->\n\nSdkService->SdkModule\n\n\n\n\n\nActionbarComponent\n\nActionbarComponent\n\nSelectModule -->\n\nActionbarComponent->SelectModule\n\n\n\n\n\nSelectComponent\n\nSelectComponent\n\nSelectModule -->\n\nSelectComponent->SelectModule\n\n\n\nUiModule -->\n\nSelectModule->UiModule\n\n\n\n\n\nActionbarComponent \n\nActionbarComponent \n\nActionbarComponent -->\n\nSelectModule->ActionbarComponent \n\n\n\nListModule -->\n\nSelectModule->ListModule \n\n\n\n\n\nSelectComponent \n\nSelectComponent \n\nSelectComponent -->\n\nSelectModule->SelectComponent \n\n\n\n SelectComponent), multi: true\n} -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true\n}\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true\n}\n\n SelectComponent), multi: true\n}->SelectComponent -->\n\n{\n    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true\n}->SelectComponent\n\n\n\n\n\nSymbolPipe\n\nSymbolPipe\n\nSymbolModule -->\n\nSymbolPipe->SymbolModule\n\n\n\n\n\nSymbolService\n\nSymbolService\n\nSymbolModule -->\n\nSymbolService->SymbolModule\n\n\n\n\n\nTinymceComponent\n\nTinymceComponent\n\n\n\nTinymceModule\n\nTinymceModule\n\nTinymceModule -->\n\nTinymceComponent->TinymceModule\n\n\n\n\n\nTinymceComponent \n\nTinymceComponent \n\nTinymceComponent -->\n\nTinymceModule->TinymceComponent \n\n\n\n\n\nFocusDirective\n\nFocusDirective\n\nUtilityModule -->\n\nFocusDirective->UtilityModule\n\n\n\n\n\nLoginFormComponent\n\nLoginFormComponent\n\nUtilityModule -->\n\nLoginFormComponent->UtilityModule\n\n\n\n\n\nMenuComponent\n\nMenuComponent\n\nUtilityModule -->\n\nMenuComponent->UtilityModule\n\n\n\n\n\nSignupFormComponent\n\nSignupFormComponent\n\nUtilityModule -->\n\nSignupFormComponent->UtilityModule\n\n\n\n\n\nTabComponent\n\nTabComponent\n\nUtilityModule -->\n\nTabComponent->UtilityModule\n\n\n\n\n\nTabsComponent\n\nTabsComponent\n\nUtilityModule -->\n\nTabsComponent->UtilityModule\n\n\n\n\n\n\n \n \n \n Zoom in\n Reset\n Zoom out\n \n\n \n\n \n \n \n \n \n \n 21 Modules\n \n \n \n \n \n \n \n \n 68 Components\n \n \n \n \n \n \n \n 7 Directives\n \n \n \n \n \n \n \n 18 Injectables\n \n \n \n \n \n \n \n 5 Pipes\n \n \n \n \n \n \n \n 14 Classes\n \n \n \n \n \n \n \n 1 Guard\n \n \n \n \n \n \n \n 20 Interfaces\n \n \n \n \n\n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"miscellaneous/typealiases.html":{"url":"miscellaneous/typealiases.html","title":"miscellaneous-typealiases - typealiases","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n Miscellaneous\n Type aliases\n\n\n\n Index\n \n \n \n \n \n \n ActionFunction   (packages/.../actionbar.component.ts)\n \n \n \n \n \n \n\n\n packages/ui/src/lib/actionbar/actionbar.component.ts\n \n \n \n \n \n \n ActionFunction\n \n \n \n \n ActionFunction: function\n\n \n \n \n \n\n\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/angular-7-upgrade-guide.html":{"url":"additional-documentation/angular-7-upgrade-guide.html","title":"additional-page - Angular 7 Upgrade Guide","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAngular7 update: BREAKING changes\nThe following breaking changes need to be considered when updating the components with angular 7. This update guide is just for @ec.components and angular 7. A whole angular 7 update guide can be found here.\nAngular 7 is used since the following versions:\n\n@ec.components/ace@0.6.0\n@ec.components/calendar@0.2.0\n@ec.components/core@0.19.0\n@ec.components/data@0.42.0\n@ec.components/location@0.18.0\n@ec.components/medium-editor@0.4.0\n@ec.components/style@0.21.0\n@ec.components/tinymce@0.5.0\n@ec.components/ui@0.36.0\n\nIt is recommended you use the most recent versions. Also add @ec.components/calendar to your package.json if you use datetime pipe or calendars / date pickers.\n1. All imports now go from the packages roots\nold:\nimport { EntryForm } from '@ec.components/data/src/entry-form/entry-form.component'new:\nimport { EntryForm } from '@ec.components/data'=> make sure you never import anything from src, since this folder no longer exists in the package\nPRO TIP\nUse VSCode \"Search: Replace in Files\" with the following Regex:\n\nSearch: _'@ec.components/(\\w+).*'_\nReplace: _'@ec.components/$1'_\n\n2. SCSS import changes\nold:\n@import '~@ec.components/style/components';new:\n@import '~@ec.components/style/scss/components';3. MediumModule has been renamed to MediumEditorModule\n4. Build Errors\nIf you are getting this:\nERROR in ./node_modules/eventsource/lib/eventsource.js\nModule not found: Error: Can't resolve 'http' in '/your-project/node_modules/eventsource/lib'\nERROR in ./node_modules/eventsource/lib/eventsource.js\nModule not found: Error: Can't resolve 'https' in 'your-project/node_modules/eventsource/lib'\nERROR in ./node_modules/jsonpath-plus/lib/jsonpath.js\nModule not found: Error: Can't resolve 'vm' in 'your-project/node_modules/jsonpath-plus/lib'To fix it, you need a custom webpack config. Eject is not available any more so we need to use angular-builders:\nnpm i @angular-builders/custom-webpack @angular-builders/dev-server @angular-devkit/build-angular --save-devThe following versions were used in this guide:\n\"@angular-builders/custom-webpack\": \"^7.2.0\",\n\"@angular-builders/dev-server\": \"^7.2.1\",\n\"@angular-devkit/build-angular\": \"^0.12.3\",In angular.json make following changes -\n\"architect\": {\n \"build\": {\n \"builder\": \"@angular-builders/custom-webpack:browser\",\n \"options\": {\n \"customWebpackConfig\": {\"path\": \"./custom-webpack.config.js\"},Notice change in builder and new option customWebpackConfig. Also change\n\"serve\": {\n \"builder\": \"@angular-builders/dev-server:generic\",Now create a custom-webpack.config.js file in the root directory, containing:\nconst path = require(\"path\");\nmodule.exports = {\n node: {\n crypto: 'empty',\n fs: 'empty',\n http: 'empty',\n https: 'empty',\n }\n};Check this for more info.\nOther Problems you might run into\n\nCan't bind to 'ngModel' since it isn't a known property of 'input'\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial.html":{"url":"additional-documentation/project-setup-tutorial.html","title":"additional-page - Project Setup Tutorial","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSetting up a new project with ec.components\nThis tutorial will show you how to set up a new project with the ec.components.\n1. Prequisites\nInstall angular-cli globally:\nnpm install -g @angular/cliThe following versions have been used for this tutorial:\n\n@angular/cli: 1.3.2\n@angular/animations: 4.3.6\n@angular/common: 4.3.6\n@angular/compiler: 4.3.6\n@angular/core: 4.3.6\n@angular/forms: 4.3.6\n@angular/http: 4.3.6\n@angular/platform-browser: 4.3.6\n@angular/platform-browser-dynamic: 4.3.6\n@angular/router: 4.3.6\n@angular/cli: 1.3.2\n@angular/compiler-cli: 4.3.6\n@angular/language-service: 4.3.6\ntypescript: 2.4.2\n\nYou can lookup your versions with ng --version\n2. Generate new Project\nng new ec-project --prefix ec-admin --routing true --style scssMake sure you replace ec-project with your project name and the prefix ec-admin with a project related shorthand symbol.\nMore info on the options for new.\n3. Install @ec.components/data\ncd ec-project\nyarn add @ec.components/data --save\nyarn add @ec.components/style --saveThis will install the data package which depends on ui and core packages.\nThe style package contains styles for ui and data.\n4. Import Styles\nInto your styles.scss, import the following styles:\n@import \"~xlcss/sass/xlcss.scss\";\n@import \"~x.ui/src/_config\";\n@import \"~x.ui/src/x.ui-sandbox.scss\";\n@import \"~@ec.components/style/components.scss\";5. Setup environment\nIn src/environments, you can find the different environment files.\nBy Default, there is a dev and a prod environment. For this tutorial, those two should be enough. We will use the dev environment for dev and staging and the prod environment for live. You could also add more environments, for more information, look here. \nsrc/environments/environment.ts:\nexport const environment = {\n production: false,\n environment: 'stage', // https://entrecode.github.io/ec.sdk/#environment\n datamanagerID: 'XXXXXXXX', // datamanager shortID\n clientID: 'my-dev-client' // your clientID\n};src/environments/environment.prod.ts:\nexport const environment = {\n production: true,\n environment: 'live', // https://entrecode.github.io/ec.sdk/#environment\n datamanagerID: 'XXXXXXXX', // datamanager shortID\n clientID: 'my-live-client' // your clientID\n};The .prod environment will be used when running ng build for production.\nThe client should use token method body. The callback URL does not matter.\n6. Add DataModule\nGo to src/app/app.module and add DataModule to your imports:\nimport { DataModule } from '@ec.components/data';\nimport { environment } from '../environments/environment';\n\n@NgModule({\n declarations: [\n AppComponent\n ],\n imports: [\n BrowserModule,\n AppRoutingModule,\n DataModule.forEnvironment(environment),\n ],\n providers: [],\n bootstrap: [AppComponent]\n})\nexport class AppModule { }Here we are importing the DataModule along with the environment to then import it into our AppModule with the forEnvironment method.\n7. Add --ssl flag\nin your package.json, edit your start script to look like this:\n\"start\": \"ng serve --ssl\",Without the --ssl flag, the authorization won't work, because it enforces https.\n8. Add a component\ne.g. add to src/app/app.component.html:\nThis assumes that the model muffin exists inside the datamanager provided through your environment.\n9. Run the fun\nThats it! Now you can run the app using:\nnpm run startnow navigate to https://localhost:4200\n10. Add Notifications\nTo your app.component, you can add a global notification component, outside of your routing:\nThis will display all messages sent by the components or your own modules.\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial/routes.html":{"url":"additional-documentation/project-setup-tutorial/routes.html","title":"additional-page - Routes","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAdding Routes\nThis short tutorial demonstrates how to quickly generate routes with components.\nIn the following tutorials, refer to this when you are called to create a new route.\n1. Create Component\nGenerate a new component\nng generate component muffinsAdd template to src/app/muffins/muffins.component.html\n2. Add a Route\nsrc/app/app-routing.module.ts:\nimport { MuffinsComponent } from './muffins/muffins.component';\n\nconst routes: Routes = [\n {\n path: '',\n children: []\n },\n {\n path: 'muffins',\n component: MuffinsComponent\n }\n];3. Run the Route\nNow you can access the muffin crud at https://localhost:4200/muffins\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial/authorization.html":{"url":"additional-documentation/project-setup-tutorial/authorization.html","title":"additional-page - Authorization","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAuthorization Flow\nThis Tutorial will show how to properly set up authorization with ec.components.\nMake sure you have a project running that follows the Setup Tutorial.\nLogin\n1. Create a new Route\nRefer to the routes tutorial. We create a route called login with a LoginComponent.\n2. Add route redirect to login.component.ts:\n constructor(public router: Router) {\n }\n\n redirect() {\n this.router.navigate(['profile'])\n }3. Add Login Component to template\nUse this in your login.component.html template:\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial/localization.html":{"url":"additional-documentation/project-setup-tutorial/localization.html","title":"additional-page - Localization","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nLocalization\nYou can setup localization via the SymbolService:\nimport en from './en';\n\n@Component({\n templateUrl: './app.component.html',\n})\nexport class AppComponent {\n constructor(private symbols: SymbolService) {\n this.symbols.set(en);\n }\n}It is expected that you pass an array of Symbol's to SymbolService#set\nDate Localization\nIf you are using datepickers, you have to include the following line to your root component:\nmoment.locale(this.symbols.resolve('moment.locale'));Using symbols in templates\nTo translate symbols in a template, use the symbol pipe:\n{{'symbol.language' | symbol}} Overwriting\nThe names of the symbols act as unique identifier, meaning you can overwrite any preexisting symbols. The default preexisting symbols of ec.components can be looked up here, or directly at the source: EN, DE\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial/custom-fields-config.html":{"url":"additional-documentation/project-setup-tutorial/custom-fields-config.html","title":"additional-page - Custom Fields Config","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCustom Field Configuration\nRelated Doc:\n\nAll Possible field config properties\nDefault Type Config\nListConfig (also see ItemConfig parent)\nItem Doc\n\nExample\nYou can configure a models behaviour over the ModelConfigService.\nIt is recommended to configure a model in a parent component of all possible ec-crud lists or nested forms.\nSee the related doc links for default values / possible config values.\nexport class MuffinsComponent {\n constructor(private modelConfig: ModelConfigService) {\n moment.locale('de'); //set moment locale\n\n this.modelConfig.set('muffin', {\n fields: {\n pictures: {\n label: 'Bilder' //this label is shown above the form field and in the table header\n },\n name: {\n label: 'Muffin Name',\n group: (name) => {\n return name[0].toUpperCase() //the return value is used to show group headers in a sorted list\n },\n required: true //when required, a new entry form cannot be saved without a value set for the field\n },\n _created: { //you can also access the system properties\n label: 'Erstellt',\n form: false, //this will hide the field inside the form\n group: (value) => moment(value).format('YYYY')\n },\n amazement_factor: {\n label: 'Amazement Faktor',\n display: (value) => { //this will transform the value for output e.g. in a list cell\n return (value * 10) + '%'\n },\n group: (value) => {\n return value > 5 ? 'Größer als 50%' : 'Kleiner als 50%';\n },\n validate: (value) => { //this function will run when validating the value inside a form\n if (typeof value !== 'number') {\n return; //value is valid\n }\n if (value 10) {\n return 'Darf maximal 10 sein';\n }\n }\n },\n }\n });\n}\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial/custom-entry-list.html":{"url":"additional-documentation/project-setup-tutorial/custom-entry-list.html","title":"additional-page - Custom Entry List","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nec-entry-list\nRelated Doc:\n\nAll Possible field config properties\nDefault Type Config\nListConfig (also see ItemConfig parent)\nItem Doc\n\nEntry Lists load multiple entries from a model and display them in a paginated list. It supports load error notifications, loader, filtering, sorting and automatic reloading + many customizations.\nDefault Usage\nThe above snippet will either consume the config for muffin in ModelConfigService, or if no config is found, generate one from the model schema.\nPassing a Config\nThe following snippet will assign the given config to the model/schema config:\ncolumnClicked output\nYou can react to column clicks via the columnClicked output:\nselect(item) {\n console.log('entry',item.getBody(),item.id());\n}Seperated header/items/pagination markup\nIf you need a seperation of the list-header -items and -pagination, you can use the sub components of list.component:\n\n\n\n\nCreate Custom Cells via transform methods\nIf you want to custom cell values that do not require a custom markup, you can use transforms\ndisplay\nThe display transform method is used to display the value (say what?).\nIt is called from inside ec-output, which is used in list-cells and form readOnly fields.\nYou can change the display behaviour like this:\nthis.modelConfig.set('muffin', {\n fields: {\n amazement_factor: {\n display: (value, item) => {\n if(value===10) {\n return 'AMAZING!';\n } else if(value > 7) {\n return 'amazing';\n }\n return 'not so amazing';\n }\n }\n }\n});group\nYou can use grouping to get a clearer outline over sorted data:\nthis.modelConfig.set('muffin', {\n fields: {\n amazement_factor: {\n group: (value, item) => {\n if(value===10) {\n return 'AMAZING!';\n } else if(value > 7) {\n return 'amazing';\n }\n return 'not so amazing';\n }\n }\n }\n});The syntax is the same as for display but the result is used as a group label when the property is sorted.\nresolve\nThe value that is passed to the transform methods like display, group etc. can be changed beforehand with the resolve method. NOTE: the params are different than for the transform methods:\nthis.modelConfig.set('muffin', {\n fields: {\n amazement_factor: {\n resolve: (body, item) => {\n if(body.amazement_factor === -1) {\n return 0;\n }\n return body.amazement_factor;\n }\n }\n }\n});this will also affect your forms!\npseudo properties via resolve\nYou can also define pseudo properties, meaning properties that do not exist on the original object:\nthis.modelConfig.set('muffin', {\n fields: {\n ranking: {\n resolve: (body, item) => body.amazement_factor*body.flavour/body.price\n }\n }\n});This comes in handy when you want to display a often combined value out of multiple values.\nNOTE: pseudo properties should not be passed to the backend...\nCustom Cells via custom output component\nIf you want to custom cell values that do require a custom markup, you can use a custom output component:\nthis.modelConfig.set('muffin', {\n fields: {\n amazement_factor: {\n output: StrongComponent\n }\n }\n});In your strong.component.ts, you can inherit OutputComponent, giving you access to the field and item of your cell:\n@Component({\n selector: 'app-strong',\n template: `{{item.resolve(field.property)}}`\n})\nexport class StrongComponent extends OutputComponent {}NOTE: customizing the output component will also change the look of forms using that config, if the property is set readOnly.\nFiltering Lists\nBy default, each column that hosts a filterable property contains a search icon in its header. If the property is filterable is defined either by the field config (filterable) or falls back to the backend types that support filters. The search icon will open a pop with a field type specific filter input inside.\nCustom Filtering\nIf you do not want that (currently pretty clunky) pop filters, you can set filterable to false and manually call list.load with the desired filter:\n\n show amazing muffins\n\nClicking the link will now show all muffins with exactly amazement_factor 10.\nCustom filter operators\nBy default, the entry-list will filter the property by its default filterOperator (see type config). If you want to change the default operator you can set it in the config:\nthis.modelConfig.set('muffin', {\n fields: {\n amazement_factor: {\n filterOperator: 'from'\n }\n }\n});\n show amazing muffins\n\nIf you now click the link, all muffins with amazement_factor>=5 will be loaded.\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/project-setup-tutorial/custom-entry-forms.html":{"url":"additional-documentation/project-setup-tutorial/custom-entry-forms.html","title":"additional-page - Custom Entry Forms","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nEntry Forms\nRelated Doc:\n\nAll Possible field config properties\nDefault Type Config\nListConfig (also see ItemConfig parent)\nItem Doc\n\nEntry forms can edit and create entries. They support notifications, loader, validation error handling and dynamic config generation out of the box.\nNOTE: it is expected you have placed a ec-notifications tag somewhere in your root component.\nDefault Behaviour\nCreate\nsubmitting the form will create a new entry and then switch to edit mode.\nEdit\nDynamic Edit/Create from template\nYou can also access the form from the template and call edit or create:\n\n\n \n {{muffin.name}}\n \n \nCreate new MuffinConfiguration\nIf nothing else is configured, the form will parse the schema of muffin and generate a generic field config.\nIf you configured the model via ModelConfigService (see Custom Fields), the form will use that config.\nAlternatively, you can also pass a config directly:\nThe given config will be Object.assigned to the possible preexisting modelConfig.\nCustom Markup with ec-input/ec-output\nMost times, you'll want more freedom over your forms markup etc. This is where ec-input and ec-output come into play:\n \n \n Title\n \n \n \n Amazement Factor\n \n Submit\n As soon as the ec-entry-form contains elements (or you pass empty=true, as meantioned below), the contents will be rendered instead of the default form.\nFeatures you have to add manually (if needed)\n\nsubmit button\nfield.readOnly handling (show ec-output instead of ec-input)\nlocal ec-loader\n\nNOTE: dont wrap labels around complex input components, because they fire ghost clicks!\nCustom input/output markup\nOf course you can remove another layer of abstraction to further customize the form:\n \n \n Title\n \n \n \n Amazement Factor\n {{form.display('amazement_factor')}}\n\n Submit\n Features you have to add manually:\n\nhandling of input errors (ec-input-errors)\nmaking sure your markup handles the field type correctly\nmaking sure your markup handles the field value correctly\n\nIt is generally recommended to use ec-input over hard coded forms.\nThe empty flag\nYou can also place the ec-input elements somewhere else and just tell the ec-entry-form that it shouldn't render the default form with the empty flag:\n\nNOTE: Always make sure the property accessed by ec-input is also present in your config (or you dont use a config at all). Otherwise, the input wont know what to render.\nCreating custom inputs\n1. Create Custom Input Component\nng g c custom-inputThis component will serve as a container for all possible custom input fields.\n2. Extend InputComponent (custom-input.component.ts)\nTo make the current field information available to the template, you need to extend InputComponent from @ec.components/ui:\nimport { Component } from '@angular/core';\nimport { InputComponent } from '@ec.components/ui';\n\n@Component({\n selector: 'clubapp-custom-input',\n templateUrl: './custom-input.component.html',\n styleUrls: ['./custom-input.component.scss']\n})\nexport class CustomInputComponent extends InputComponent {\n}CMD+Click on InputComponent to see which properties you can now use!\n3. Add Markup (custom-input.component.html)\nNow we can decide which custom input should be used, based on e.g. the fields view value:\n\n \n \n \n \n \n -->\n \nOf course you could also switch based on property name or type, depending on your application.\nThe id property of field is referenced in the label of the form. By adding it to the input makes sure your label click enters the input.\n4. Add CustomInputComponent to entryComponents:\nBecause the custom component will be loaded dynamically, your module needs to declare it as entryComponent:\n@NgModule({\n entryComponents: [\n CustomInputComponent\n ]\n /** more stuff **/\n})\nexport class AppModule {\n}5. Add CustomInputComponent to field config:\nNow you can add the Component as input to your field config:\nthis.modelConfig.set('muffin', {\n fields: {\n url: {\n label: 'URL',\n view: 'speakingurl',\n input: CustomInputComponent\n },\n openingHours: {\n label: 'Öffnungszeiten',\n view: 'openingHours',\n input: CustomInputComponent\n }\n})By changing the view option, we can now decide which case will be met!\nCustom Form Controls\nNow what if you want to use a custom form control that does not rely on primitve inputs like number or text?\nIn the above custom-input.component template, we use with a formControl input.\nTo have access to the form control's value, you need to provide a ControlValueAccessor:\nimport { Component, forwardRef } from '@angular/core';\nimport { ControlValueAccessor, NG_VALUE_ACCESSOR } from '@angular/forms';\nimport { InputComponent } from '@ec.components/ui';\n\n@Component({\n selector: 'ec-opening-hours',\n templateUrl: './opening-hours.component.html',\n styleUrls: ['./opening-hours.component.scss'],\n providers: [\n {\n provide: NG_VALUE_ACCESSOR,\n useExisting: forwardRef(() => OpeningHoursComponent),\n multi: true\n }\n ]\n})Now you can implement your own logic and call propagateChange when you change the value from your component, and react to change via the writeValue method!\nYou now could also use your component with ngModel or formControl in another context!\nMore information on this pattern: https://blog.thoughtram.io/angular/2016/07/27/custom-form-controls-in-angular-2.html\nCustom Fields without wrapper\nYou can also use custom components as input directly without needing to wrap them in \"CustomFieldsComponent\".\nJust make sure you implement ControlValueAccessor like above. When changes occur from the template, call propagateChange. You can react to outside model changes in writeValue.\nimport { Component, OnInit, Input } from '@angular/core';\nimport { InputComponent } from '../../../packages/ui';\nimport { ControlValueAccessor } from '@angular/forms';\n\n@Component({\n selector: 'ec-counter',\n templateUrl: './counter.component.html'\n})\n\nexport class CounterComponent extends InputComponent implements ControlValueAccessor {\n\n value = 0;\n\n increment() {\n this.propagateChange(++this.value);\n }\n\n decrement() {\n this.propagateChange(--this.value);\n }\n\n writeValue(value: any) {\n this.value = value;\n console.log('received value', value);\n }\n\n propagateChange = (_: any) => {\n };\n\n registerOnChange(fn) {\n this.propagateChange = fn;\n }\n\n registerOnTouched() {\n }\n\n}\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme.html":{"url":"additional-documentation/readme.html","title":"additional-page - README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nec.components\nThis project contains all sorts of angular components for creating data driven applications.\nIt is mainly used for entrecode admin applications in combination with the entrecode using ec.sdk.\nPackages\nMain Packages\n\n@ec.components/core: contains core typescript classes (no angular/datamanager)\n@ec.components/ui: contains core ui components (not datamanager specific)\n@ec.components/data: contains ui components for datamanager.\n@ec.components/style: contains styles for all components, built on x.ui.\n\nThe dependencies stack up from core to data (data > ui > core). You could also omit data, using just the ui components.\nOptional Packages\n\n@ec.components/calendar: contains calendar components, uses moment.\n@ec.components/location: wraps angular-google-maps.\n@ec.components/tinymce: wraps tinymce wysiwyg editor.\n@ec.components/medium-editor: wraps medium wysiwyg editor.\n@ec.components/ace: wraps ace code editor.\n\nDocumentation\nThe main documentation is located at entrecode.github.io/ec.components. You can find a getting started guide there.\nDemo\nA Demo is available at components.entrecode.de.\nDeveloping with Lerna + Yarn Workspaces\nThe repository is a monorepo, managed by lerna and yarn workspaces.\nAll folders inside dist + packages/style will be used as symlinks in node_modules/@ec.components/*.\nYou can update the symlinks by running yarn (e.g. after adding a new package).\nDev Setup\nAfter a fresh clone of the repo, run this:\nyarn install\nnpm run dev-setup\nnpm run startThe dev-setup script builds all packages and symlinks them to the node_modules.\nReleasing\nRun release task and select versions:\nnpm run releaseTo publish a new package for the first time, make sure you run npm publish --access=public before running lerna. See add-new-package for more info on creating a new package.\nAlso make sure to use Conventional Commits for proper changelogging.\nDefault README\nThis project was generated with Angular CLI version 7.2.1.\nDevelopment server\nRun ng serve for a dev server. Navigate to http://localhost:4200/. The app will automatically reload if you change any of the source files.\nCode scaffolding\nRun ng generate component component-name to generate a new component. You can also use ng generate directive|pipe|service|class|guard|interface|enum|module.\nBuild\nRun ng build to build the project. The build artifacts will be stored in the dist/ directory. Use the --prod flag for a production build.\nRunning unit tests\nRun ng test to execute the unit tests via Karma.\nRunning end-to-end tests\nRun ng e2e to execute the end-to-end tests via Protractor.\nFurther help\nTo get more help on the Angular CLI use ng help or go check out the Angular CLI README.\nImpressum & Datenschutz\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/data-readme.html":{"url":"additional-documentation/readme/data-readme.html","title":"additional-page - data README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/data\nThis package contains all ec.datamanager related components.\nBeing wether framework agnostic nor backend agnostic, it is lowest fruit on the abstraction tree.\nIt extends the classes of the core module to create datamanager specific classes that are then used in the components.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/data --save2. Add Module\nimport { DataModule } from '@ec.components/data';\n\n@NgModule({\n imports: [\n DataModule\n ]\n})\nexport class AppModule {\n}\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/ui-readme.html":{"url":"additional-documentation/readme/ui-readme.html","title":"additional-page - ui README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/ui\nThis package contains all angular components that have no ec.datamanager references.\nIt utilizes the classes of the @ec.components/core package.\nBeing the middle layer in the abstraction tree, it is still backend agnostic but not framework agnostic.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/ui --save2. Add Module\nimport { UiModule } from '@ec.components/ui';\n\n@NgModule({\n imports: [\n UiModule\n ]\n})\nexport class AppModule {\n}\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/core-readme.html":{"url":"additional-documentation/readme/core-readme.html","title":"additional-page - core README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/core\nThis package contains all the core typescript classes.\nIt is the highest abstraction layer and is therefor framework and backend agnostic.\nThis means it contains no angular or ec.datamanager references.\nOverview\n\nCHANGELOG\nAvailable Classes\n\nInstallation\nnpm i @ec.components/coreimport { Item } from '@ec.components/core';\nconst primitive = new Item('a');\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/style-readme.html":{"url":"additional-documentation/readme/style-readme.html","title":"additional-page - style README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/style\nThis package contains all scss styles for the ec.components packages.\nOverview\n\nCHANGELOG\nx.ui\n\nInstallation\nMethod A: With prebuilt CSS styles\nIf you are not using scss or you just want to add styles without hassle, just add this css to your index.html:\nMethod B: Custom Styles with SCSS\nIf you want to use your own styles, you can use scss to import and build the styles with x.ui:\n1. Install package\nnpm install @ec.components/style --saveThis will also install x.ui.\n3. Add styles\nDetails on how to setup your config can be found in the x.ui README.\n@import 'config';\n@import '~x.ui/src/x.ui.scss';\n@import '~@ec.components/style/scss/components';\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/calendar-readme.html":{"url":"additional-documentation/readme/calendar-readme.html","title":"additional-page - calendar README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/calendar\nThis package provides calendar and date components as part of ec.components.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/calendar --save2. Add Module\nimport { CalendarModule } from '@ec.components/calendar';\n\n@NgModule({\n imports: [\n CalendarModule\n ]\n})\nexport class AppModule {\n}3. Use it\n \n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/location-readme.html":{"url":"additional-documentation/readme/location-readme.html","title":"additional-page - location README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/location\nThis package wraps the angular-google-maps to be suitable for forms.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/location --save2. Add Module\nimport { LocationModule } from '@ec.components/location';\n\n@NgModule({\n imports: [\n LocationModule\n ]\n})\nexport class AppModule {\n}3. Use it as default input for location fields\n constructor(private typeConfig: TypeConfigService) {\n this.typeConfig.set('location', {\n input: LocationPickerComponent\n });\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/ace-readme.html":{"url":"additional-documentation/readme/ace-readme.html","title":"additional-page - ace README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/ace\nThis package wraps the ace editor as an Angular Component.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/ace --save2. Add Module\nimport { AceModule } from '@ec.components/ace';\n\n@NgModule({\n imports: [\n AceModule\n ]\n})\nexport class AppModule {\n}3. Add CDN\nEither add the cdn src to your index.html:\n \n`Or import from ace-builds (in app.module):\nimport 'ace-builds/src-noconflict/ace.js';When importing, you also need to import all extensions/modes/themes that you want to use manually.\n4. Use it\n \n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/medium-editor-readme.html":{"url":"additional-documentation/readme/medium-editor-readme.html","title":"additional-page - medium-editor README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/medium-editor\nThis package wraps the medium-editor as an Angular Directive.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/medium-editor --save2. Add Module\nimport { MediumModule } from '@ec.components/medium-editor';\n\n@NgModule({\n imports: [\n MediumModule\n ]\n})\nexport class AppModule {\n}3. Use it\n \n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/readme/tinymce-readme.html":{"url":"additional-documentation/readme/tinymce-readme.html","title":"additional-page - tinymce README","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n@ec.components/tinymce\nThis package wraps the tinymce editor as an Angular Component.\nOverview\n\nModule Overview Page\nCHANGELOG\n\nInstallation\n1. Install package\nnpm install @ec.components/tinymce --save2. Add Module\nimport { TinymceModule } from '@ec.components/tinymce';\n\n@NgModule({\n imports: [\n TinymceModule\n ]\n})\nexport class AppModule {\n}3. Add styles files to angular.json\n\"styles\": [\n \"node_modules/tinymce/skins/lightgray/skin.min.css\",\n \"node_modules/tinymce/skins/lightgray/content.min.css\"\n],4. Use it\n \n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog.html":{"url":"additional-documentation/changelog.html","title":"additional-page - CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nEach package has its own changelog:\n\n@ec.components/data\n@ec.components/ui\n@ec.components/core\n@ec.components/calendar\n@ec.components/style\n@ec.components/ace\n@ec.components/location\n@ec.components/medium-editor\n@ec.components/tinymce\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/data-changelog.html":{"url":"additional-documentation/changelog/data-changelog.html","title":"additional-page - data CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.42.16 (2019-01-28)\nNote: Version bump only for package @ec.components/data\n0.42.15 (2019-01-28)\nNote: Version bump only for package @ec.components/data\n0.42.14 (2019-01-28)\nNote: Version bump only for package @ec.components/data\n0.42.13 (2019-01-28)\nNote: Version bump only for package @ec.components/data\n0.42.12 (2019-01-28)\nBug Fixes\n\nadd missing exports (d7fa72b)\n\n0.42.11 (2019-01-25)\nBug Fixes\n\nlanguage imports (6e961b8)\n\n0.42.10 (2019-01-25)\nNote: Version bump only for package @ec.components/data\n0.42.9 (2019-01-25)\nNote: Version bump only for package @ec.components/data\n0.42.8 (2019-01-25)\nNote: Version bump only for package @ec.components/data\n0.42.7 (2019-01-25)\nNote: Version bump only for package @ec.components/data\n0.42.6 (2019-01-21)\nNote: Version bump only for package @ec.components/data\n0.42.5 (2019-01-21)\nNote: Version bump only for package @ec.components/data\n0.42.4 (2019-01-21)\nBug Fixes\n\nauth.service clientID check + removed broadcast load on env switch (def9084)\ncalling entry-pop create twice would edit the first entry (d5dc292)\nclear searchbar when changing asset group (1cfc328)\nclientID if statement (43c7da5)\nconfig generation for empty forms was bugged since last commit (789e7ca)\ncould not define custom components for entry field types (0b433be)\ncould not pass config to entry-list seperately (4a14246)\ncould not set custom asset list config (06b615c)\ndndDraggable stringify error (a992381)\nEDITOR-187 (de51159)\nendless ecEntries could concat same page multiple times (fed2c52)\nentry-list.component (431e3fd)\nfiles index (bcbefd1)\nfilterOperators of entry and asset + default filterPopClass of nested types is now modal (9e671b9)\nfocus asset list pop searchbar when changing group (24868b9)\nform without config would bug (5892365)\ngroup resource-config (020e689)\nlinter bug (b4d03eb)\nModelConfigService now using CrudConfig instead of ItemConfig (eb506da)\nnew assets on entry create + removed hacks from input.component (04fffbd)\nparseType would not recognize relations with \"-\" (a08a9d6)\nquery could be overwritten while typing + fixed asset select (1c382d1)\nrelative path in data.module (fcfdf32)\nremoveItem still activated entry-select + entry-select demo (364482b)\nresource-list.component (2826ac4)\nselect assetGroup if legacyAsset and url upload (7580583)\nselection was broken for ec-entry-select list (121566c)\nstop select pop event bubbling + selectMode in select component (47a7930)\ntodos (9bf067d)\nwhen using objects as prefill, the next prefilled value would return the reference of the one before (c89591a)\nwrong method reference (f3590a7)\n\nFeatures\n\nsdk changesEnvironment + resource service env update broadcast (ad58c68)\nsearchbar, ecFocus + added searchbar to asset-list-pop (8236caf)\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/ui-changelog.html":{"url":"additional-documentation/changelog/ui-changelog.html","title":"additional-page - ui CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.36.15 (2019-01-28)\nNote: Version bump only for package @ec.components/ui\n0.36.14 (2019-01-28)\nNote: Version bump only for package @ec.components/ui\n0.36.13 (2019-01-28)\nNote: Version bump only for package @ec.components/ui\n0.36.12 (2019-01-28)\nNote: Version bump only for package @ec.components/ui\n0.36.11 (2019-01-28)\nBug Fixes\n\nadd missing exports (d7fa72b)\n\n0.36.10 (2019-01-25)\nBug Fixes\n\nlanguage imports (6e961b8)\n\n0.36.9 (2019-01-25)\nBug Fixes\n\nnow exporting languages by name (7733151)\n\n0.36.8 (2019-01-25)\nBug Fixes\n\nexport de + en from ui package barrel (c950461)\n\n0.36.7 (2019-01-25)\nNote: Version bump only for package @ec.components/ui\n0.36.6 (2019-01-21)\nNote: Version bump only for package @ec.components/ui\n0.36.5 (2019-01-21)\nNote: Version bump only for package @ec.components/ui\n0.36.4 (2019-01-21)\nBug Fixes\n\nclear searchbar when changing asset group (1cfc328)\ncontrol binding (fd41ccc)\ndndDraggable stringify error (a992381)\ndynamic-slot make inject public to be able to call super (b7460e6)\nec-input bug (1d9e231)\nfilterOperators of entry and asset + default filterPopClass of nested types is now modal (9e671b9)\nfirst tab selection was throwing an error (50e2d98)\nfocus asset list pop searchbar when changing group (24868b9)\nform.create would not reinstantiate with config being undefined (f7b65f4)\ninit control in input.component (3fb8f47)\nlint errors (1cb8b1c)\nlinter errors (70d5e24)\nnew assets on entry create + removed hacks from input.component (04fffbd)\nonly show size select if total>0 (7a88da8)\nquery could be overwritten while typing + fixed asset select (1c382d1)\nstop select pop event bubbling + selectMode in select component (47a7930)\ntodos (9bf067d)\nwrong import (b760780)\n\nFeatures\n\nsearchbar, ecFocus + added searchbar to asset-list-pop (8236caf)\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/core-changelog.html":{"url":"additional-documentation/changelog/core-changelog.html","title":"additional-page - core CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.19.12 (2019-01-28)\nNote: Version bump only for package @ec.components/core\n0.19.11 (2019-01-28)\nNote: Version bump only for package @ec.components/core\n0.19.10 (2019-01-28)\nNote: Version bump only for package @ec.components/core\n0.19.9 (2019-01-28)\nNote: Version bump only for package @ec.components/core\n0.19.8 (2019-01-25)\nNote: Version bump only for package @ec.components/core\n0.19.7 (2019-01-21)\nNote: Version bump only for package @ec.components/core\n0.19.6 (2019-01-21)\nBug Fixes\n\nlinter errors (70d5e24)\nselection has + docs (e8b0e49)\nselection.toggle would emit change twice sometimes (b3e8115)\ntodos (9bf067d)\nwhen using objects as prefill, the next prefilled value would return the reference of the one before (c89591a)\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/style-changelog.html":{"url":"additional-documentation/changelog/style-changelog.html","title":"additional-page - style CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.21.6 (2019-01-28)\nNote: Version bump only for package @ec.components/style\n0.21.5 (2019-01-28)\nNote: Version bump only for package @ec.components/style\n0.21.4 (2019-01-28)\nNote: Version bump only for package @ec.components/style\n0.21.3 (2019-01-28)\nNote: Version bump only for package @ec.components/style\n0.21.2 (2019-01-25)\nNote: Version bump only for package @ec.components/style\n0.21.1 (2019-01-21)\nNote: Version bump only for package @ec.components/style\n0.21.0 (2019-01-21)\nBug Fixes\n\nadded optional to btn._clear extension (373bebf)\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/calendar-changelog.html":{"url":"additional-documentation/changelog/calendar-changelog.html","title":"additional-page - calendar CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.2.10 (2019-01-28)\nNote: Version bump only for package @ec.components/calendar\n0.2.9 (2019-01-28)\nNote: Version bump only for package @ec.components/calendar\n0.2.8 (2019-01-28)\nNote: Version bump only for package @ec.components/calendar\n0.2.7 (2019-01-28)\nNote: Version bump only for package @ec.components/calendar\n0.2.6 (2019-01-25)\nNote: Version bump only for package @ec.components/calendar\n0.2.5 (2019-01-21)\nNote: Version bump only for package @ec.components/calendar\n0.2.4 (2019-01-21)\nNote: Version bump only for package @ec.components/calendar\n0.2.3 (2019-01-21)\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/location-changelog.html":{"url":"additional-documentation/changelog/location-changelog.html","title":"additional-page - location CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.18.9 (2019-01-28)\nNote: Version bump only for package @ec.components/location\n0.18.8 (2019-01-28)\nNote: Version bump only for package @ec.components/location\n0.18.7 (2019-01-28)\nNote: Version bump only for package @ec.components/location\n0.18.6 (2019-01-28)\nNote: Version bump only for package @ec.components/location\n0.18.5 (2019-01-25)\nNote: Version bump only for package @ec.components/location\n0.18.4 (2019-01-21)\nNote: Version bump only for package @ec.components/location\n0.18.3 (2019-01-21)\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/ace-changelog.html":{"url":"additional-documentation/changelog/ace-changelog.html","title":"additional-page - ace CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.6.9 (2019-01-28)\nNote: Version bump only for package @ec.components/ace\n0.6.8 (2019-01-28)\nNote: Version bump only for package @ec.components/ace\n0.6.7 (2019-01-28)\nNote: Version bump only for package @ec.components/ace\n0.6.6 (2019-01-28)\nNote: Version bump only for package @ec.components/ace\n0.6.5 (2019-01-25)\nNote: Version bump only for package @ec.components/ace\n0.6.4 (2019-01-21)\nNote: Version bump only for package @ec.components/ace\n0.6.3 (2019-01-21)\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/medium-editor-changelog.html":{"url":"additional-documentation/changelog/medium-editor-changelog.html","title":"additional-page - medium-editor CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.4.9 (2019-01-28)\nNote: Version bump only for package @ec.components/medium-editor\n0.4.8 (2019-01-28)\nNote: Version bump only for package @ec.components/medium-editor\n0.4.7 (2019-01-28)\nNote: Version bump only for package @ec.components/medium-editor\n0.4.6 (2019-01-28)\nNote: Version bump only for package @ec.components/medium-editor\n0.4.5 (2019-01-25)\nNote: Version bump only for package @ec.components/medium-editor\n0.4.4 (2019-01-21)\nNote: Version bump only for package @ec.components/medium-editor\n0.4.3 (2019-01-21)\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/changelog/tinymce-changelog.html":{"url":"additional-documentation/changelog/tinymce-changelog.html","title":"additional-page - tinymce CHANGELOG","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nChange Log\nAll notable changes to this project will be documented in this file.\nSee Conventional Commits for commit guidelines.\n0.5.10 (2019-01-28)\nNote: Version bump only for package @ec.components/tinymce\n0.5.9 (2019-01-28)\nNote: Version bump only for package @ec.components/tinymce\n0.5.8 (2019-01-28)\nNote: Version bump only for package @ec.components/tinymce\n0.5.7 (2019-01-28)\nBug Fixes\n\ntinymce fix version 4.7.4 due to angular-cli/issues/11041 (b365847)\n\n0.5.6 (2019-01-25)\nNote: Version bump only for package @ec.components/tinymce\n0.5.5 (2019-01-25)\nNote: Version bump only for package @ec.components/tinymce\n0.5.4 (2019-01-21)\nNote: Version bump only for package @ec.components/tinymce\n0.5.3 (2019-01-21)\nBug Fixes\n\ncould not writeValue before init component (00a2e2e)\ntinyMCE promise error (8fab72f)\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/adding-new-packages.html":{"url":"additional-documentation/adding-new-packages.html","title":"additional-page - Adding New Packages","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAdding a new Package in 10 easy steps\nThe following steps need to be done to generate a new library that is standards compliant.\nJust replace the example name \"data\" with the new package name.\n1. Run CLI command to generate a new library\nng generate library data -p ecThis will create a new folder under packages/ (see newProjectRoot in angular.json).\n2. Prefix packages/data/package.json#name with @ec.components\nalso make sure the version is correct\n3. Prefix root tsconfig.json paths \"data\" and \"data/*\" with @ec.components\nalso change value to \"packages/data/dist/*\"\n4. Move src files to packages/data/lib\n5. add dependencies (e.g. ec.sdk) to both root and lib package.json\n6. add whitelistedNonPeerDependencies and dest to ng-package.json\n \"dest\": \"./dist\",\n \"whitelistedNonPeerDependencies\": [\n \".\"\n ]7. fix relative imports\nimport { Notification } from '../../../../ui/src/notifications/notification';\nimport { WithNotifications } from '../../../../ui/src/notifications/with-notifications.interface';\n// replace with\nimport { WithNotifications, Notification } from '@ec.components/ui';8. fix rxjs imports\nimport { Subject } from 'rxjs/Subject';\n// to\nimport { Subject } from 'rxjs';9. fix other lint errors like semicolon stuff\nbuild it\nng build datarun yarn to link dist/data to node_modules\n10. add dependency to root package.json\n11. add CHANGELOG.md of package to summary.json (like others)\n11. add link to package changelog page to CHANGELOG.md (like others)\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/stackblitz.html":{"url":"additional-documentation/stackblitz.html","title":"additional-page - Stackblitz","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nStackblitz Demos\n\nCreate Angular Stackblitz\nimport styles to index.html:\n\n\n\nAdd @ec.components package(s):\n\n\"@ec.components/calendar\": \"^0.2.6\",\n/** any other components module */\nimport module(s):\n\nimport { CalendarModule } from '@ec.components/calendar';\n@NgModule({\n imports: [ /* .. */ CalendarModule ],\n /* ... */\n})\nexport class AppModule { }\nuse component(s) in app.component.html:\n\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"},"additional-documentation/publishing.html":{"url":"additional-documentation/publishing.html","title":"additional-page - Publishing","body":"\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nAuthorization Flow\nThis Tutorial will show how to properly set up authorization with ec.components.\nMake sure you have a project running that follows the Setup Tutorial.\nLogin\n1. Create a new Route\nRefer to the routes tutorial. We create a route called login with a LoginComponent.\n2. Add route redirect to login.component.ts:\n constructor(public router: Router) {\n }\n\n redirect() {\n this.router.navigate(['profile'])\n }3. Add Login Component to template\nUse this in your login.component.html template:\n\n \n \n result-matching \"\"\n \n \n \n No results matching \"\"\n \n\n"}} } diff --git a/docs/miscellaneous/variables.html b/docs/miscellaneous/variables.html index 5ab48b2e0..b2d917ae8 100644 --- a/docs/miscellaneous/variables.html +++ b/docs/miscellaneous/variables.html @@ -72,28 +72,28 @@

    Index

    collator   (packages/.../sorter.ts)
  • - context   (packages/.../test.ts) + context   (packages/.../test.ts)
  • - context   (packages/.../test.ts) + context   (packages/.../test.ts)
  • - context   (packages/.../test.ts) + context   (packages/.../test.ts)
  • - context   (packages/.../test.ts) + context   (packages/.../test.ts)
  • - context   (packages/.../test.ts) + context   (packages/.../test.ts)
  • - context   (packages/.../test.ts) + context   (packages/.../test.ts)
  • - context   (packages/.../test.ts) + context   (packages/.../test.ts)
  • - context   (packages/.../test.ts) + context   (packages/.../test.ts)
  • dataModuleConfig   (packages/.../data.module.ts) @@ -159,25 +159,25 @@

    Index

    require   (packages/.../test.ts)
  • - require   (packages/.../test.ts) + require   (packages/.../test.ts)
  • - require   (packages/.../test.ts) + require   (packages/.../test.ts)
  • - require   (packages/.../test.ts) + require   (packages/.../test.ts)
  • require   (packages/.../test.ts)
  • - require   (packages/.../test.ts) + require   (packages/.../test.ts)
  • - require   (packages/.../test.ts) + require   (packages/.../test.ts)
  • - require   (packages/.../test.ts) + require   (packages/.../test.ts)
  • selectModuleConfig   (packages/.../select.module.ts) @@ -483,7 +483,7 @@

    -

    packages/ace/src/test.ts

    +

    packages/data/src/test.ts

    @@ -543,7 +543,7 @@

    -

    packages/medium-editor/src/test.ts

    +

    packages/ace/src/test.ts

    @@ -603,7 +603,7 @@

    -

    packages/data/src/test.ts

    +

    packages/location/src/test.ts

    @@ -663,7 +663,7 @@

    -

    packages/core/src/test.ts

    +

    packages/calendar/src/test.ts

    @@ -723,7 +723,7 @@

    -

    packages/tinymce/src/test.ts

    +

    packages/core/src/test.ts

    @@ -783,7 +783,7 @@

    -

    packages/location/src/test.ts

    +

    packages/ui/src/test.ts

    @@ -843,7 +843,7 @@

    -

    packages/calendar/src/test.ts

    +

    packages/tinymce/src/test.ts

    @@ -903,7 +903,7 @@

    -

    packages/ui/src/test.ts

    +

    packages/medium-editor/src/test.ts

    diff --git a/docs/modules/AceModule.html b/docs/modules/AceModule.html index 790237305..2c4951c8a 100644 --- a/docs/modules/AceModule.html +++ b/docs/modules/AceModule.html @@ -45,63 +45,89 @@ - - + + dependencies - -Legend - -  Declarations - -  Module - -  Bootstrap - -  Providers - -  Exports + +Legend + +  Declarations + +  Module + +  Bootstrap + +  Providers + +  Exports cluster_AceModule - + cluster_AceModule_declarations - + + + +cluster_AceModule_AceComponent_providers + cluster_AceModule_exports - + AceComponent - -AceComponent + +AceComponent AceModule - -AceModule + +AceModule AceComponent->AceModule - - + + - + AceComponent - -AceComponent + +AceComponent - + AceModule->AceComponent - - + + + + + +{ +    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true +} + +{ +    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true +} + + + +{ +    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true +}->AceComponent + + diff --git a/docs/modules/AceModule/dependencies.svg b/docs/modules/AceModule/dependencies.svg index 9a9bc5d0f..3eb869d78 100644 --- a/docs/modules/AceModule/dependencies.svg +++ b/docs/modules/AceModule/dependencies.svg @@ -4,63 +4,89 @@ - - + + dependencies - -Legend - -  Declarations - -  Module - -  Bootstrap - -  Providers - -  Exports + +Legend + +  Declarations + +  Module + +  Bootstrap + +  Providers + +  Exports cluster_AceModule - + cluster_AceModule_declarations - + + + +cluster_AceModule_AceComponent_providers + cluster_AceModule_exports - + AceComponent - -AceComponent + +AceComponent AceModule - -AceModule + +AceModule AceComponent->AceModule - - + + - + AceComponent - -AceComponent + +AceComponent - + AceModule->AceComponent - - + + + + + +{ +    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true +} + +{ +    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true +} + + + +{ +    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true +}->AceComponent + + diff --git a/docs/overview.html b/docs/overview.html index 8316d9a42..3ad727c81 100644 --- a/docs/overview.html +++ b/docs/overview.html @@ -61,15 +61,19 @@  Exports cluster_AceModule - + cluster_AceModule_declarations - + + + +cluster_AceModule_AceComponent_providers + cluster_AceModule_exports - + cluster_AuthModule @@ -378,2207 +382,2229 @@ AceComponent - -AceComponent + +AceComponent AceModule - -AceModule + +AceModule AceComponent->AceModule - - + + - + AceComponent - -AceComponent + +AceComponent - + AceModule->AceComponent - - + + + + + +{ +    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true +} + +{ +    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true +} + + + +{ +    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => AceComponent), multi: true +}->AceComponent + + - + LoginComponent LoginComponent - + AuthModule AuthModule - + LoginComponent->AuthModule - + PasswordResetComponent PasswordResetComponent - + PasswordResetComponent->AuthModule - + SignupComponent SignupComponent - + SignupComponent->AuthModule - + LoginComponent LoginComponent - + AuthModule->LoginComponent - + PasswordResetComponent PasswordResetComponent - + AuthModule->PasswordResetComponent - + SignupComponent SignupComponent - + AuthModule->SignupComponent - + DataModule DataModule - + AuthModule->DataModule - + UiModule UiModule - + UiModule->AuthModule - + UiModule->DataModule - + FilesModule FilesModule - + UiModule->FilesModule - + ResourceModule ResourceModule - + UiModule->ResourceModule - + PopModule PopModule - + UiModule->PopModule - + FormModule FormModule - + UiModule->FormModule - + LocationModule LocationModule - + UiModule->LocationModule - + ListModule ListModule - + UiModule->ListModule - + IconModule IconModule - + UiModule->IconModule - + LoaderModule LoaderModule - + UiModule->LoaderModule - + NotificationsModule NotificationsModule - + UiModule->NotificationsModule - + SelectModule SelectModule - + UiModule->SelectModule - + SymbolModule SymbolModule - + UiModule->SymbolModule - + UtilityModule UtilityModule - + UiModule->UtilityModule - + cookieFactory() cookieFactory() - + cookieFactory()->AuthModule - + AuthService AuthService - + AuthService->AuthModule - + CalendarComponent CalendarComponent - + CalendarModule CalendarModule - + CalendarComponent->CalendarModule - - + + - + DaterangeComponent DaterangeComponent - + DaterangeComponent->CalendarModule - - + + - + DatetimePipe DatetimePipe - + DatetimePipe->CalendarModule - - + + - + HeatmapComponent HeatmapComponent - + HeatmapComponent->CalendarModule - - + + - + MonthComponent MonthComponent - + MonthComponent->CalendarModule - + CalendarComponent - -CalendarComponent + +CalendarComponent - + CalendarModule->CalendarComponent - - + + - + DaterangeComponent - -DaterangeComponent + +DaterangeComponent - + CalendarModule->DaterangeComponent - - + + - + DatetimePipe - -DatetimePipe + +DatetimePipe - + CalendarModule->DatetimePipe - - + + - + HeatmapComponent - -HeatmapComponent + +HeatmapComponent - + CalendarModule->HeatmapComponent - - + + - + MonthComponent - -MonthComponent + +MonthComponent - + CalendarModule->MonthComponent - - + + - + FormModule FormModule - + CalendarModule->FormModule - - + + - + AdminEntryInputComponent AdminEntryInputComponent - + AdminEntryInputComponent->DataModule - + CrudComponent CrudComponent - + CrudComponent->DataModule - + DefaultEntryInputComponent DefaultEntryInputComponent - + DefaultEntryInputComponent->DataModule - + DefaultEntryOutputComponent DefaultEntryOutputComponent - + DefaultEntryOutputComponent->DataModule - + EntriesDirective EntriesDirective - + EntriesDirective->DataModule - + EntryDirective EntryDirective - + EntryDirective->DataModule - + EntryFormComponent EntryFormComponent - + EntryFormComponent->DataModule - + EntryListComponent EntryListComponent - + EntryListComponent->DataModule - + EntryListPopComponent EntryListPopComponent - + EntryListPopComponent->DataModule - + EntryListSelectComponent EntryListSelectComponent - + EntryListSelectComponent->DataModule - + EntryPopComponent EntryPopComponent - + EntryPopComponent->DataModule - + EntrySelectComponent EntrySelectComponent - + EntrySelectComponent->DataModule - + AuthModule AuthModule - + DataModule->AuthModule - + CrudComponent CrudComponent - + DataModule->CrudComponent - + EntriesDirective EntriesDirective - + DataModule->EntriesDirective - + EntryDirective EntryDirective - + DataModule->EntryDirective - + EntryFormComponent EntryFormComponent - + DataModule->EntryFormComponent - + EntryListComponent EntryListComponent - + DataModule->EntryListComponent - + EntryListPopComponent EntryListPopComponent - + DataModule->EntryListPopComponent - + EntryListSelectComponent EntryListSelectComponent - + DataModule->EntryListSelectComponent - + EntryPopComponent EntryPopComponent - + DataModule->EntryPopComponent - + EntrySelectComponent EntrySelectComponent - + DataModule->EntrySelectComponent - + FilesModule FilesModule - + DataModule->FilesModule - + ResourceModule ResourceModule - + DataModule->ResourceModule - + SdkModule SdkModule - + DataModule->SdkModule - + UiModule UiModule - + DataModule->UiModule - + FilesModule->DataModule - + FilesModule->SdkModule - + AssetDirective AssetDirective - + FilesModule->AssetDirective - + AssetListComponent AssetListComponent - + FilesModule->AssetListComponent - + AssetListPopComponent AssetListPopComponent - + FilesModule->AssetListPopComponent - + AssetSelectComponent AssetSelectComponent - + FilesModule->AssetSelectComponent - + AssetgroupSelectComponent AssetgroupSelectComponent - + FilesModule->AssetgroupSelectComponent - + DropzoneDirective DropzoneDirective - + FilesModule->DropzoneDirective - + ImageDirective ImageDirective - + FilesModule->ImageDirective - + ImageSelectPopComponent ImageSelectPopComponent - + FilesModule->ImageSelectPopComponent - + TagSelectComponent TagSelectComponent - + FilesModule->TagSelectComponent - + UploadComponent UploadComponent - + FilesModule->UploadComponent - + UploadSelectComponent UploadSelectComponent - + FilesModule->UploadSelectComponent - + ResourceModule->DataModule - + ResourceModule->FilesModule - + ResourceModule->SdkModule - + ResourceModule->UiModule - + ApiActionbarComponent ApiActionbarComponent - + ResourceModule->ApiActionbarComponent - + ResourceActionbarComponent ResourceActionbarComponent - + ResourceModule->ResourceActionbarComponent - + ResourceCrudComponent ResourceCrudComponent - + ResourceModule->ResourceCrudComponent - + ResourceDeletePopComponent ResourceDeletePopComponent - + ResourceModule->ResourceDeletePopComponent - + ResourceFormComponent ResourceFormComponent - + ResourceModule->ResourceFormComponent - + ResourceListComponent ResourceListComponent - + ResourceModule->ResourceListComponent - + ResourceListPopComponent ResourceListPopComponent - + ResourceModule->ResourceListPopComponent - + ResourcePopComponent ResourcePopComponent - + ResourceModule->ResourcePopComponent - + ResourceSelectComponent ResourceSelectComponent - + ResourceModule->ResourceSelectComponent - + SdkModule SdkModule - + SdkModule->DataModule - + SdkModule->FilesModule - + SdkModule->ResourceModule - + CrudService CrudService - + CrudService->DataModule - + HistoryService HistoryService - + HistoryService->DataModule - + ModelConfigService ModelConfigService - + ModelConfigService->DataModule - + TypeConfigService TypeConfigService - + TypeConfigService->DataModule - + AssetDirective AssetDirective - + AssetDirective->FilesModule - + AssetListComponent AssetListComponent - + AssetListComponent->FilesModule - + AssetListPopComponent AssetListPopComponent - + AssetListPopComponent->FilesModule - + AssetSelectComponent AssetSelectComponent - + AssetSelectComponent->FilesModule - + AssetgroupSelectComponent AssetgroupSelectComponent - + AssetgroupSelectComponent->FilesModule - + DropzoneDirective DropzoneDirective - + DropzoneDirective->FilesModule - + ImageDirective ImageDirective - + ImageDirective->FilesModule - + ImageSelectPopComponent ImageSelectPopComponent - + ImageSelectPopComponent->FilesModule - + TagSelectComponent TagSelectComponent - + TagSelectComponent->FilesModule - + UploadComponent UploadComponent - + UploadComponent->FilesModule - + UploadSelectComponent UploadSelectComponent - + UploadSelectComponent->FilesModule - + FileService FileService - + FileService->FilesModule - + DatetimeComponent DatetimeComponent - + DatetimeComponent->FormModule - + DefaultInputComponent DefaultInputComponent - + DefaultInputComponent->FormModule - + DefaultOutputComponent DefaultOutputComponent - + DefaultOutputComponent->FormModule - + FormComponent FormComponent - + FormComponent->FormModule - + MaxItemsPipe MaxItemsPipe - + MaxItemsPipe->FormModule - + ToggleComponent ToggleComponent - + ToggleComponent->FormModule - + VisibleFieldsPipe VisibleFieldsPipe - + VisibleFieldsPipe->FormModule - + FormModule->UiModule - + DatetimeComponent DatetimeComponent - + FormModule->DatetimeComponent - + FormComponent FormComponent - + FormModule->FormComponent - + IoModule IoModule - + FormModule->IoModule - + MaxItemsPipe MaxItemsPipe - + FormModule->MaxItemsPipe - + FormModule->PopModule - + ToggleComponent ToggleComponent - + FormModule->ToggleComponent - + VisibleFieldsPipe VisibleFieldsPipe - + FormModule->VisibleFieldsPipe - + ListModule ListModule - + FormModule->ListModule - + IconModule IconModule - + IconModule->UiModule - + IconModule->FormModule - + PopModule PopModule - + IconModule->PopModule - + IconComponent IconComponent - + IconModule->IconComponent - - + + - + IconModule->ListModule - - + + - + NotificationsModule NotificationsModule - + IconModule->NotificationsModule - + IoModule IoModule - + IoModule->FormModule - + DynamicRackComponent DynamicRackComponent - + IoModule->DynamicRackComponent - + DynamicSlotComponent DynamicSlotComponent - + IoModule->DynamicSlotComponent - + InputComponent InputComponent - + IoModule->InputComponent - + InputErrorsComponent InputErrorsComponent - + IoModule->InputErrorsComponent - + OutputComponent OutputComponent - + IoModule->OutputComponent - + SlotHostDirective SlotHostDirective - + IoModule->SlotHostDirective - + UtilityModule UtilityModule - + IoModule->UtilityModule - + LoaderModule LoaderModule - + LoaderModule->UiModule - + LoaderModule->FormModule - + LoaderComponent LoaderComponent - + LoaderModule->LoaderComponent - + SelectModule SelectModule - + LoaderModule->SelectModule - + PopModule->UiModule - + PopModule->FormModule - + PopModule->NotificationsModule - + ModalComponent ModalComponent - + PopModule->ModalComponent - + PopComponent PopComponent - + PopModule->PopComponent - + SymbolModule SymbolModule - + SymbolModule->UiModule - + SymbolModule->FormModule - + SymbolModule->ListModule - - + + - + SymbolPipe SymbolPipe - + SymbolModule->SymbolPipe - - + + - + FormService FormService - + FormService->FormModule - + IconComponent IconComponent - + IconComponent->IconModule - + IconService IconService - + IconService->IconModule - + DynamicRackComponent DynamicRackComponent - + DynamicRackComponent->IoModule - + DynamicSlotComponent DynamicSlotComponent - + DynamicSlotComponent->IoModule - + InputComponent InputComponent - + InputComponent->IoModule - + InputErrorsComponent InputErrorsComponent - + InputErrorsComponent->IoModule - + OutputComponent OutputComponent - + OutputComponent->IoModule - + SlotHostDirective SlotHostDirective - + SlotHostDirective->IoModule - + GroupPipe GroupPipe - + GroupPipe->ListModule - + ListComponent ListComponent - + ListComponent->ListModule - + ListHeaderComponent ListHeaderComponent - + ListHeaderComponent->ListModule - + ListItemsComponent ListItemsComponent - + ListItemsComponent->ListModule - + PaginationComponent PaginationComponent - + PaginationComponent->ListModule - + SearchbarComponent SearchbarComponent - + SearchbarComponent->ListModule - + ListModule->UiModule - + ListModule->FormModule - + GroupPipe GroupPipe - + ListModule->GroupPipe - + ListComponent ListComponent - + ListModule->ListComponent - + ListHeaderComponent ListHeaderComponent - + ListModule->ListHeaderComponent - + ListItemsComponent ListItemsComponent - + ListModule->ListItemsComponent - + PaginationComponent PaginationComponent - + ListModule->PaginationComponent - + SearchbarComponent SearchbarComponent - + ListModule->SearchbarComponent - + ListModule->SelectModule - + UtilityModule->UiModule - - + + - + UtilityModule->ListModule - + FocusDirective FocusDirective - + UtilityModule->FocusDirective - + LoginFormComponent LoginFormComponent - + UtilityModule->LoginFormComponent - + MenuComponent MenuComponent - + UtilityModule->MenuComponent - + SignupFormComponent SignupFormComponent - + UtilityModule->SignupFormComponent - + TabComponent TabComponent - + UtilityModule->TabComponent - + TabsComponent TabsComponent - + UtilityModule->TabsComponent - + ListConfigService ListConfigService - + ListConfigService->ListModule - + LoaderComponent LoaderComponent - + LoaderComponent->LoaderModule - + LoaderService LoaderService - + LoaderService->LoaderModule - + LocationMapComponent LocationMapComponent - + LocationMapComponent->LocationModule - + LocationPickerComponent LocationPickerComponent - + LocationPickerComponent->LocationModule - + LocationSearchComponent LocationSearchComponent - + LocationSearchComponent->LocationModule - + LocationMapComponent LocationMapComponent - + LocationModule->LocationMapComponent - + LocationPickerComponent LocationPickerComponent - + LocationModule->LocationPickerComponent - + LocationSearchComponent LocationSearchComponent - + LocationModule->LocationSearchComponent - + GeocodeService GeocodeService - + GeocodeService->LocationModule - + MediumEditorComponent MediumEditorComponent - + MediumEditorModule MediumEditorModule - + MediumEditorComponent->MediumEditorModule - + MediumEditorComponent MediumEditorComponent - + MediumEditorModule->MediumEditorComponent @@ -2586,7 +2612,7 @@ - + {    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true } @@ -2598,7 +2624,7 @@ - + {    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => MediumEditorComponent), multi: true }->MediumEditorComponent @@ -2606,307 +2632,307 @@ - + ErrorComponent ErrorComponent - + ErrorComponent->NotificationsModule - + NotificationsComponent NotificationsComponent - + NotificationsComponent->NotificationsModule - + NotificationsModule->UiModule - + ErrorComponent ErrorComponent - + NotificationsModule->ErrorComponent - + NotificationsComponent NotificationsComponent - + NotificationsModule->NotificationsComponent - + NotificationsService NotificationsService - + NotificationsService->NotificationsModule - + ModalComponent ModalComponent - + ModalComponent->PopModule - + PopComponent PopComponent - + PopComponent->PopModule - + PopService PopService - + PopService->PopModule - + ApiActionbarComponent ApiActionbarComponent - + ApiActionbarComponent->ResourceModule - + ResourceActionbarComponent ResourceActionbarComponent - + ResourceActionbarComponent->ResourceModule - + ResourceCrudComponent ResourceCrudComponent - + ResourceCrudComponent->ResourceModule - + ResourceDeletePopComponent ResourceDeletePopComponent - + ResourceDeletePopComponent->ResourceModule - + ResourceFormComponent ResourceFormComponent - + ResourceFormComponent->ResourceModule - + ResourceListComponent ResourceListComponent - + ResourceListComponent->ResourceModule - + ResourceListPopComponent ResourceListPopComponent - + ResourceListPopComponent->ResourceModule - + ResourcePopComponent ResourcePopComponent - + ResourcePopComponent->ResourceModule - + ResourceSelectComponent ResourceSelectComponent - + ResourceSelectComponent->ResourceModule - + ResourceConfig ResourceConfig - + ResourceConfig->ResourceModule - + ResourceService ResourceService - + ResourceService->ResourceModule - + SdkService SdkService - + SdkService->SdkModule - + ActionbarComponent ActionbarComponent - + ActionbarComponent->SelectModule - + SelectComponent SelectComponent - + SelectComponent->SelectModule - + SelectModule->UiModule - + ActionbarComponent ActionbarComponent - + SelectModule->ActionbarComponent - + SelectModule->ListModule - + SelectComponent SelectComponent - + SelectModule->SelectComponent @@ -2914,7 +2940,7 @@ - + {    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true } @@ -2926,7 +2952,7 @@ - + {    provide: NG_VALUE_ACCESSOR, useExisting: forwardRef(() => SelectComponent), multi: true }->SelectComponent @@ -2934,127 +2960,127 @@ - + SymbolPipe SymbolPipe - + SymbolPipe->SymbolModule - + SymbolService SymbolService - + SymbolService->SymbolModule - + TinymceComponent TinymceComponent - + TinymceModule TinymceModule - + TinymceComponent->TinymceModule - + TinymceComponent TinymceComponent - + TinymceModule->TinymceComponent - + FocusDirective FocusDirective - + FocusDirective->UtilityModule - + LoginFormComponent LoginFormComponent - + LoginFormComponent->UtilityModule - + MenuComponent MenuComponent - + MenuComponent->UtilityModule - + SignupFormComponent SignupFormComponent - + SignupFormComponent->UtilityModule - + TabComponent TabComponent - + TabComponent->UtilityModule - + TabsComponent TabsComponent - + TabsComponent->UtilityModule