0.1.40 • Published 2 months ago

@ngxhub/ngx-dynamic v0.1.40

Weekly downloads
-
License
-
Repository
-
Last release
2 months ago

@ngxhub/ngx-dynamic

Description

Inject components according to configuration and dynamically create components

English | 简体中文

Software Architecture

Tool library created based on Angular16

Installation

$ npm install @ngxhub/ngx-dynamic

Instructions

  1. Create Component

    $ ng g c components/is-button
    $ ng g m components/is-button
  2. Modify Component moduleis-button.module.ts

    export class IsButtonModule {
      static entry = IsButtonComponent;
    }
  3. Injection ComponentAppModule

    import { NgModule } from "@angular/core";
    import { DynamicModule, IS_BIZ_COMPONENT } from "@ngxhub/ngx-dynamic";
    const widgets = {
      "is-button": import("./components/is-button/is-button.module").then((r) => r.IsButtonModule),
    };
    @NgModule({
      imports: [DynamicModule],
      providers: [{ provide: IS_BIZ_COMPONENT, useValue: widgets }],
    })
    export class AppModule {}
  4. Using Component

    <div x-dynamic [item]="{type:'is-button'}" (eventManage)="onEventManage($event)"></div>
0.1.40

2 months ago

0.1.38

2 months ago

0.1.39

2 months ago

0.1.37

8 months ago

0.1.36

9 months ago

0.1.35

9 months ago

0.1.34

9 months ago

0.1.33

9 months ago

0.1.32

9 months ago

0.1.31

9 months ago

0.1.30

9 months ago

0.1.29

9 months ago

0.1.28

9 months ago

0.1.27

9 months ago

0.1.26

9 months ago

0.1.25

9 months ago

0.1.24

9 months ago

0.1.23

9 months ago

0.1.22

9 months ago

0.1.21

9 months ago

0.1.20

9 months ago

0.1.19

9 months ago

0.1.18

9 months ago

0.1.17

9 months ago

0.1.16

9 months ago

0.1.15

9 months ago

0.1.14

9 months ago

0.1.13

9 months ago

0.1.12

9 months ago

0.1.11

9 months ago

0.1.10

9 months ago

0.1.9

9 months ago

0.1.8

9 months ago

0.1.7

9 months ago

0.1.6

9 months ago

0.1.5

9 months ago

0.1.4

9 months ago

0.1.3

9 months ago

0.1.2

9 months ago

0.1.1

9 months ago

0.0.10

9 months ago

0.0.8

9 months ago

0.0.9

9 months ago

0.0.7

9 months ago

0.0.6

9 months ago

0.0.5

9 months ago

0.0.4

9 months ago

0.0.3

9 months ago

0.0.2

9 months ago

0.0.1

9 months ago