Socket
Book a DemoInstallSign in
Socket

ozone-iron-list

Package Overview
Dependencies
Maintainers
0
Versions
163
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ozone-iron-list

[![NPM version][npm-image]][npm-url]

latest
npmnpm
Version
6.4.3
Version published
Weekly downloads
275
82.12%
Maintainers
0
Weekly downloads
 
Created
Source

NPM version

ozone-iron-list

Implementation of an iron-list to display an ozone search result with lazy loading.

documentation

ozone-iron-list extend polymer iron-list composed with an ozone-connection.

        <div >
          <ozone-iron-list
            id="ironList"
            items="{{searchResults}}"
            grid
            selection-enabled
            scroll-target="scrollTheshold">
            <template>
                <div class="item">
                    <ozone-item-preview class="photoContent"
                     item-id="[[item.id]]"
                     item-data="[[item]]"
                     class="resultListItem"
                     selected="[[selected]]"
                    ></ozone-item-preview>
                    <ozone-item-action
                     class="actionPanel"
                     selected="[[selected]]" item-data="[[item]]">npo</ozone-item-action>
                    </div>
            </template>
          </ozone-iron-list>
        </div>
const myQuery = new SearchQuery()
// configure search query
this.$.ironList.search(myQuery)

expose $.mosaicCollection for operation on the collection

Implements

Inherit from from iron-list

Mixin

Custom propertyDescriptionDefault
--ozone-list-loadercss mixin for loader element{ background-color: #585185; color: white; position:relative; bottom:0; left:0; right:0; text-align: center; height: 44px; font-family:'Roboto', sans-serif; font-size: 13px; line-height: 44px; margin:0 -10px -10px;}

install

$ npm install --save ozone-iron-list

development command

npm install: install project dependency.

npm run tsc: run typeScript compiler.

npm run build build application.

npm run test bundle test files with webpack and run test with webComponent tester.

npm run build:watch bundle test files with webpack and watch on changes.

npm run test:persist bundle test files with webpack and watch on changes.

npm run doc generate project documentation with typedoc.

FAQs

Package last updated on 21 Mar 2025

Did you know?

Socket

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