Socket
Socket
Sign inDemoInstall

@ewc-lib/ewc-dialog

Package Overview
Dependencies
0
Maintainers
2
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @ewc-lib/ewc-dialog

![Screenshot](./screenshot.png)


Version published
Weekly downloads
1
decreased by-87.5%
Maintainers
2
Install size
66.9 kB
Created
Weekly downloads
 

Readme

Source

Screenshot

Screenshot

API

There are the following setters:

  • visible - true to show modally, false to hide
  • title - sets the header text
  • bodyHtml - sets the body html

And one optional attribute:

  • assetBaseURL - location to the icons which this element needs. If omitted, "./assets" is assumed. User of this element has to make sure the assets exist in the specified location (please see also webpack.config.js below).

Usage with WebPack

package.json

"dependencies": {
  "@ecl/preset-eu": "4.1.1",
  "@ewc-lib/ewc-dialog": "^0.1.0"
},

webpack.config.js

const CopyPlugin = require("copy-webpack-plugin")

...

plugins: [
  new CopyPlugin({
    patterns: [
      { from: "./node_modules/@ecl/resources-eu-icons/dist/svg/all/close-filled.svg", to: "./assets" }
    ],
  }),
]

index.html

<body>

  <script src="bundle.js"></script>

  <ewc-dialog></ewc-dialog>

  <script>
    document.addEventListener("DOMContentLoaded", function(event) {
      const el = document.getElementsByTagName("ewc-dialog")[0]
      el.title = "Information"
      el.bodyHtml = "<ul> <li>This</li> <li>That</li> </ul> And some more."
      el.visible = true
    })
  </script>

</body>

main.js

import "@ecl/preset-eu/dist/styles/ecl-eu.css"
import "@ewc-lib/ewc-dialog"
import * as Styling from "@ewc-lib/ewc-dialog/src/externalStyling.mjs"
Styling.applyEclClasses()

Note that alternative external styling is supported - see also externalStyling.mjs.

FAQs

Last updated on 18 Apr 2024

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc