npm

@ewc-lib/ewc-icon-button

0.2.0-alpha • Public • Published

Screenshot

Screenshot

A button providing several icons for use in a variety of situations.

API

NOTE: this component is not fully implemented yet - only info and share are available atm.

The following attributes are available and can be modified at runtime:

  • icon - one of: [close, lineChart, barChart, dotPlot, star, share, info, download]. no default, is mandatory.
    • TODO
  • background - on which kind of background the button is used. one of: [light, dark]. default is light.
  • state - tristate, one of [true,false,disabled]. default is true.
    • within a button-group, only buttons w/ state false/off can be focussed
    • NOTE: this is TODO
  • size - the width and height. default is 40.

Note that the temporary state when mouse is being clicked but not yet released, is not considered.

Events:

  • action - keyborad-Enter and mouse-click are captured, prevented and instead one event "action" is dispatched.

Details

There are 96 possibilities (8 * 2 * 3 * 2), 24 for each icon to consider. In order to reduce this complexity, the implementation of this component makes a assumptions (due to lack of specification) - while at the same time staying open to overruling assumptions for any specific combination.

Usage with WebPack

package.json

"dependencies": {
  "@ewc-lib/ewc-icon-button": "latest"
},

webpack.config.js

index.html

<body>

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

  <div style="display:flex; gap:3px; margin-bottom: 5px;">
    <ewc-icon-button icon="info" id="infobutton"></ewc-icon-button>
    <ewc-icon-button icon="share"></ewc-icon-button>
  </div>

  <div style="display:flex; gap:3px; padding:2px; align-items: center; background-color: var(--c-p-140);">
    <ewc-icon-button background="dark" icon="info"></ewc-icon-button>
    <ewc-icon-button background="dark" icon="share"></ewc-icon-button>
  </div>

  <script>
    window.addEventListener('DOMContentLoaded',function () {
      document.getElementById("infobutton").addEventListener("action",(e)=>{
      alert("Info button on light background clicked or selected w/ kdb.")
    }
  </script>


</body>

main.js

import "@ewc-lib/ewc-icon-button"

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
0.2.0-alpha50latest

Version History

VersionDownloads (Last 7 Days)Published
0.2.0-alpha50
0.1.0-alpha18

Package Sidebar

Install

npm i @ewc-lib/ewc-icon-button

Weekly Downloads

68

Version

0.2.0-alpha

License

EUPL v.1.1

Unpacked Size

16.7 kB

Total Files

7

Last publish

Collaborators

  • mjaurena
  • kuncisv
  • heppa
  • robert-estat-ext