npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@wizco/wco-accept-terms

v14.0.19

Published

O Componente wco-accept-terms foi desenvolvida para simplificar e padronizar a criação de modais interativas em suas aplicações web.

Downloads

84

Readme

Componente wco-accept-terms

O componente de wco-accept-terms é um componente Angular que permite a exibição de termos e condições personalizáveis. Ele é desenvolvido com o uso do Angular e facilita a incorporação de funcionalidades de aceitação de termos em aplicações web.

Instalação

Para utilizar este componente, você precisará adicionar a biblioteca ao seu projeto Angular. Siga os passos abaixo:

  1. Instale a biblioteca via npm:

    npm i @wizco/wco-accept-terms
  2. Importe o módulo WcoAcceptTermsModule no seu módulo principal (app.module.ts ou equivalente):

    import { NgModule } from '@angular/core';
    import { BrowserModule } from '@angular/platform-browser';
    import { WcoAcceptTermsModule } from 'lib-wco-accept-terms';
        
    @NgModule({
      declarations: [
        // ...seus componentes aqui...
      ],
      imports: [
        BrowserModule,
        WcoAcceptTermsModule, // Importe o módulo aqui
        // ...outros módulos...
      ],
      bootstrap: [AppComponent]
    })
    export class AppModule { }

Uso

Após importar o módulo WcoAcceptTermsModule, você pode usar o componente lib-wco-accept-terms no seu template da seguinte forma:

<lib-wco-accept-terms
  [configTerm]="configTerm"
  [dataTerm]="dataTerm"
  (eventTabs)="handleTabEvent(\$event)"
  (eventButton)="handleButtonEvent(\$event)"
  (eventCheckbox)="handleCheckboxEvent(\$event)"
></lib-wco-accept-terms>

Certifique-se de fornecer os valores apropriados para as propriedades configTerm e dataTerm conforme necessário. Os eventos eventTabs, eventButton e eventCheckbox permitem que você manipule interações de guias, botões e caixas de seleção.

  configTerm = [
    {
      customizeCheckbox: false,
      buttons: [ 
        {
          id: 'returnLogin',
          name: 'Voltar para o login',
          buttonSolid: false, 
        },
        {
          id: 'acceptTerm',
          name: 'Aceitar os termos',
          buttonSolid: true, 
        },],
    },
  ]

  dataTerm = [
    {
      id: "4d964f95-3353-400ax-8c7f-835aa1e1b7c3",
      title: "Termo de uso A",
      text: "<h1>Termos de Uso do Site Alpha <h1>Teste Termo</h1><p>Seu texto aqui... </p>",
      acceptanceText: "Aceitar tudo",
      order: 1,
      createdDate: "2023-08-22T10:53:47.3233333",
      modifiedDate: "2023-08-22T10:53:47.3433333",
    },
    {
      id: "4d964f95-3353-400ax-8c7f-835aa1e1b7c3",
      title: "Termo de uso B",
      text: "<h1>Termos de Uso do Site Alpha <h1>Teste Termo</h1><p>Seu texto aqui... </p>",
      acceptanceText: "Aceitar tudo",
      order: 1,
      createdDate: "2023-08-22T10:53:47.3233333",
      modifiedDate: "2023-08-22T10:53:47.3433333",
    },
  ];

Contribuição

Este é um projeto de código aberto e contribuições são bem-vindas! Se você encontrar problemas, tiver sugestões ou desejar adicionar recursos, sinta-se à vontade para abrir uma issue ou enviar um pull request.