1.4.3 • Published 1 year ago

aurelia-entityinspector v1.4.3

Weekly downloads
2
License
MIT
Repository
github
Last release
1 year 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.3

1 year ago

1.4.2

1 year ago

1.4.1

1 year ago

1.4.0

1 year ago

1.3.0

2 years ago

1.2.4

3 years ago

1.2.3

3 years ago

1.2.1

4 years ago

1.2.0

4 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.6

6 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

8 years ago

1.0.2

8 years ago

1.0.1

8 years ago

1.0.0

8 years ago