11.0.0 • Published 2 years ago

@logo-software/modal v11.0.0

Weekly downloads
-
License
See license in LI...
Repository
-
Last release
2 years ago

Modal Module

Modals focus the user’s attention to a window that sits on top of the page content.

Click here for demo

Installation

All public npm packages of Logo Software is at https://www.npmjs.com/~logofe. To install Modal Module:

$ npm set registry https://registry.npmjs.org/
$ npm install @logo-software/modal -s

Just import it to your project of @NgModule import section.

import { ModalModule } from '@logo-software/modal';

@NgModule({
  imports: [CommonModule, ModalModule],
})
export class AppModule {
}

Modal Component

Modals are a variant of dialog used to present critical information or request user input needed to complete a user’s workflow. Add the below code to your code stack and give initializer parameters.

app.component.html

<logo-modal
 (onToggle)="sampleToggleAction($event)"
 [modalId]="'logoModal'"
 [title]="'My Logo Modal'"
>
  <ng-container body>
    <p class="large">This is my modal content</p>
  </ng-container>
  <ng-container footer>
    <p class="small">This is the footer content of the modal</p>
  </ng-container>
</logo-modal>

For API details, please visit http://design.logo.com.tr/#/docs/components/components-overview

11.0.0

2 years ago

4.0.0

2 years ago

0.3.5

2 years ago

0.3.4

3 years ago

0.3.3

3 years ago

0.3.2

3 years ago

0.3.1

3 years ago

0.3.0

3 years ago

0.2.3

3 years ago

0.2.2

3 years ago

0.2.1

3 years ago

0.2.0

3 years ago

0.1.0

3 years ago

0.1.1

3 years ago

0.0.1

3 years ago