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

@semantic-ui/query

v0.1.5

Published

Query is a tiny (3kb!) library for chaining interactions with DOM elements, similar to jQuery. It is designed to work with the Shadow DOM tree, correctly matching on nested shadow DOMs in pages that use web components.

Downloads

361

Readme

@semantic-ui/query

Query is a tiny (3kb!) library for chaining interactions with DOM elements, similar to jQuery. It is designed to work with the Shadow DOM tree, correctly matching on nested shadow DOMs in pages that use web components.

Features

  • Fast and lightweight, using only modern DOM APIs
  • Built to work with the Shadow DOM
  • Simplifies imperative DOM mutations
  • Provides a familiar API for developers experienced with jQuery

Installation

You can install Query using npm:

npm install @semantic-ui/query

Usage

Standard

import { $ } from '@semantic-ui/query';

CommonJS

const { $ } = require('@semantic-ui/query');

Browser

In a browser environment you may want to use exportGlobals to export $ and $$ for use

  import { exportGlobals } from '@semantic-ui/query';

  exportGlobals();


#### Restoring Globals
If you need to restore the previous values before calling export globals.
```javascript
  import { restoreGlobals } from '@semantic-ui/query';
  restoreGlobals();

Custom Alias

If you prefer to use a custom alias

  import { useAlias } from '@semantic-ui/query';

  const myQuery = useAlias();

  // myQuery('div')

API

Querying DOM

  • filter(selector) - Filter current node list to match selector.
  • children(selector) - Return only child nodes matching a selector.
  • parent(selector) - Find the parent elements matching a selector.
  • find(selector) - Find child elements matching a selector.
  • not(selector) - Return only elements not matching a selector.
  • closest(selector) - Find the closest parent element matching a selector.
  • is(selector) - Returns true if the current elements all match a selector.
  • siblings(selector) - Return sibling elements matching a selector.
  • index(indexFilter) - Return the index of the element among its siblings or within the collection.

Attributes

  • hasClass(className) - Returns true if class name is present on some elements.
  • addClass(classNames) - Add class names to elements.
  • removeClass(classNames) - Remove class names from elements.
  • toggleClass(classNames) - Toggles class names on elements.
  • css(property, value, settings) - Gets or sets CSS properties on an element. Accepts either two parameters or an object of properties to change. Will not return computed styles by default.
  • cssVar(variable, value) - Get/set a CSS variable.
  • computedStyle(property) - Gets the computed CSS for an element.
  • attr(attribute, value) - Get/Set an attribute to a value. Accepts either two parameters or an object of attributes to change.
  • removeAttr(attributeName) - Remove a specified attribute from each element in the set of matched elements.
  • prop(name, value) - Get/Set a property on an element.

Content

  • html(newHTML) - Get or set HTML for the current node list.
  • outerHTML(newHTML) - Get or set outer HTML for the current node list. Outer HTML includes the current tag contents in the returned HTML.
  • text(newText) - Get or set text for the current node list. This is recursive, getting all child text nodes and works with slotted content.
  • textNode() - Gets the current text node of the matched elements. This is not recursive.

Sizing

  • width(value) - Get or set the width of an element.
  • height(value) - Get or set the height of an element.
  • scrollHeight(value) - Get or set the scroll height of an element.
  • scrollWidth(value) - Get or set the scroll width of an element.
  • scrollLeft(value) - Get or set the scrollLeft position of an element.
  • scrollTop(value) - Get or set the scrollTop position of an element.
  • offsetParent(options) - Get the offset parent of an element for positioning.
  • naturalWidth() - Get the natural width of an element.
  • naturalHeight() - Get the natural height of an element.

Events

  • on(event, targetSelectorOrHandler, handlerOrOptions, options) - Attach an event using either event delegation or regular event binding.
  • one(event, targetSelectorOrHandler, handlerOrOptions, options) - Attach an event handler that fires only once.
  • off(event, handler) - Removes an event either by event type or handler.
  • dispatchEvent(eventName, eventData, eventSettings) - Dispatch an event from an element with data.

DOM Manipulation

  • remove() - Remove current elements from the DOM.
  • clone() - Create a deep clone of the elements in the Query instance.
  • insertAfter(selector) - Insert elements after each target element.

Utilities

  • each(callback) - Run a function across a series of DOM nodes.
  • get(index) - Returns the real DOM element from the node list at the matching index (no longer chainable).
  • eq(index) - Filters node list to only include the element at the index (still chainable).
  • initialize(settings) - Adds the settings to given element after DOM content has loaded.
  • map(callback) - Apply a function to every element and return the results as an array.
  • count() - Get the number of elements in the Query instance.
  • exists() - Check if the Query instance contains any elements.

Form

  • value(newValue) - Get the current value of the first element in the set of matched elements or set the value of every matched element. This method is an alias for val().

Event Handling

  • focus() - Sets focus on the first element in the set of matched elements.
  • blur() - Removes focus from the first element in the set of matched elements.

Internal

  • chain(elements) - Create a new Query instance with the provided elements.

Global Export

Query allows you to opt-in to exporting globals in a browser environment. You can use the exportGlobals function to attach $, $$, and Query to the global scope.


  import { exportGlobals } from 'https://unpkg.com/@semantic-ui/query';

  exportGlobals({
    $: true,
    $$: true,
    Query: false
  });

  // Use $ and $$ globally
  $('selector');
  $$('selector');

You can also use $.noConflict() to restore the original values of $ and $$ and assign Query to a different variable:


  import { exportGlobals } from 'https://unpkg.com/@semantic-ui/query';

  exportGlobals();

  const myQuery = $.noConflict();

  // Use myQuery instead of $
  myQuery('div').addClass('active');

License

Query is licensed under the MIT License. See LICENSE for more information.