1.4.0 • Published 12 days ago

aurelia-entityinspector v1.4.0

Weekly downloads
2
License
MIT
Repository
github
Last release
12 days ago

aurelia-entityinspector

An Aurelia ui component for viewing JavaScript values (plugin)

Enabling the plugin:

In your Aurelia bootstrapper module:

export function configure(aurelia) {
    aurelia.use
        .plugin("aurelia-entityinspector")
}

When using webpack with current Aurelia version, you need to use this syntax:

import { PLATFORM } from "aurelia-framework";

export function configure(aurelia) {
    aurelia.use
        .plugin(PLATFORM.moduleName("aurelia-entityinspector"))
}

Using the entityinspector ui component (custom element):

<jux-entityinspector value.bind="data"
                     accordionmode.bind="isAccordionMode"
                     theme="dark">

Bindable properties:

  • value (any type: Object, Array, Date, string, boolean, number etc.)
    -the entity to inspect

  • accordionmode (Optional; boolean)
    -when true, only one array or object can be expanded at the same level in the inspector.

  • theme (Optional; "dark" | "light")
    -the entityinspector theme

1.4.0

12 days ago

1.3.0

1 year ago

1.2.4

2 years ago

1.2.3

2 years ago

1.2.1

3 years ago

1.2.0

3 years ago

1.1.2

4 years ago

1.1.1

4 years ago

1.1.0

4 years ago

1.0.6

5 years ago

1.0.5

5 years ago

1.0.4

5 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago